@forge/cli-shared 8.11.1-next.5 → 8.12.0-next.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/out/graphql/graphql-types.d.ts +521 -21
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +102 -32
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +4 -2
- package/out/ui/text.d.ts +8 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +8 -0
- package/package.json +1 -1
|
@@ -1621,6 +1621,10 @@ export declare type AdminAppModuleEdge = {
|
|
|
1621
1621
|
cursor: Scalars['String']['output'];
|
|
1622
1622
|
node: AdminAppModule;
|
|
1623
1623
|
};
|
|
1624
|
+
export declare enum AdminAppType {
|
|
1625
|
+
Atlassian = "ATLASSIAN",
|
|
1626
|
+
MarketplaceApp = "MARKETPLACE_APP"
|
|
1627
|
+
}
|
|
1624
1628
|
export declare type AdminApplicationErrorExtension = AdminErrorExtension & MutationErrorExtension & QueryErrorExtension & {
|
|
1625
1629
|
__typename?: 'AdminApplicationErrorExtension';
|
|
1626
1630
|
code?: Maybe<Scalars['String']['output']>;
|
|
@@ -1981,7 +1985,6 @@ export declare type AdminIcon = {
|
|
|
1981
1985
|
export declare type AdminIdentityProviderDirectoryDetails = {
|
|
1982
1986
|
__typename?: 'AdminIdentityProviderDirectoryDetails';
|
|
1983
1987
|
directoryName: Scalars['String']['output'];
|
|
1984
|
-
externalDirectoryId?: Maybe<Scalars['ID']['output']>;
|
|
1985
1988
|
identityProviderDirectoryId: Scalars['ID']['output'];
|
|
1986
1989
|
identityProviderType?: Maybe<AdminIdentityProviderType>;
|
|
1987
1990
|
isActive: Scalars['Boolean']['output'];
|
|
@@ -2668,7 +2671,7 @@ export declare type AdminVendor = {
|
|
|
2668
2671
|
export declare type AdminWorkspace = {
|
|
2669
2672
|
__typename?: 'AdminWorkspace';
|
|
2670
2673
|
appManifest?: Maybe<AdminAppManifest>;
|
|
2671
|
-
appType
|
|
2674
|
+
appType?: Maybe<AdminAppType>;
|
|
2672
2675
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
2673
2676
|
createdBy?: Maybe<Scalars['String']['output']>;
|
|
2674
2677
|
directoryId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -3122,7 +3125,6 @@ export declare type AgentStudioCreateBatchEvaluationJobInput = {
|
|
|
3122
3125
|
datasetId: Scalars['String']['input'];
|
|
3123
3126
|
judgeConfigId: Scalars['String']['input'];
|
|
3124
3127
|
name: Scalars['String']['input'];
|
|
3125
|
-
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
3126
3128
|
};
|
|
3127
3129
|
export declare type AgentStudioCreateBatchEvaluationJobPayload = Payload & {
|
|
3128
3130
|
__typename?: 'AgentStudioCreateBatchEvaluationJobPayload';
|
|
@@ -8410,6 +8412,7 @@ export declare type CcpEntitlementProvisionedResource = {
|
|
|
8410
8412
|
};
|
|
8411
8413
|
export declare type CcpEntitlementRelationship = CommerceEntitlementRelationship & {
|
|
8412
8414
|
__typename?: 'CcpEntitlementRelationship';
|
|
8415
|
+
entitlement?: Maybe<CcpEntitlement>;
|
|
8413
8416
|
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
8414
8417
|
relationshipId?: Maybe<Scalars['ID']['output']>;
|
|
8415
8418
|
relationshipType?: Maybe<Scalars['String']['output']>;
|
|
@@ -10716,9 +10719,9 @@ export declare type CommerceEntitlementRelationship = {
|
|
|
10716
10719
|
};
|
|
10717
10720
|
export declare type CommerceExpCcpQuery = {
|
|
10718
10721
|
__typename?: 'CommerceExpCcpQuery';
|
|
10719
|
-
|
|
10722
|
+
testField?: Maybe<CommerceExpTestField>;
|
|
10720
10723
|
};
|
|
10721
|
-
export declare type
|
|
10724
|
+
export declare type CommerceExpCcpQueryTestFieldArgs = {
|
|
10722
10725
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
10723
10726
|
};
|
|
10724
10727
|
export declare type CommerceExpTestField = {
|
|
@@ -15103,6 +15106,7 @@ export declare type CompassScorecardMaturityLevelStatisticsHistoryQuery = {
|
|
|
15103
15106
|
filter?: InputMaybe<CompassScorecardMaturityLevelStatisticsHistoryQueryFilter>;
|
|
15104
15107
|
};
|
|
15105
15108
|
export declare type CompassScorecardMaturityLevelStatisticsHistoryQueryFilter = {
|
|
15109
|
+
componentStates?: InputMaybe<CompassScorecardAppliedToComponentsComponentStateFilter>;
|
|
15106
15110
|
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
15107
15111
|
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
15108
15112
|
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
@@ -15229,6 +15233,7 @@ export declare type CompassScorecardScoreStatisticsHistoryQuery = {
|
|
|
15229
15233
|
filter?: InputMaybe<CompassScorecardScoreStatisticsHistoryQueryFilter>;
|
|
15230
15234
|
};
|
|
15231
15235
|
export declare type CompassScorecardScoreStatisticsHistoryQueryFilter = {
|
|
15236
|
+
componentStates?: InputMaybe<CompassScorecardAppliedToComponentsComponentStateFilter>;
|
|
15232
15237
|
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
15233
15238
|
customFields?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
|
|
15234
15239
|
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
@@ -20827,6 +20832,17 @@ export declare type ConfluenceUpdateContentAccessRequestPayload = Payload & {
|
|
|
20827
20832
|
errors: Array<MutationError>;
|
|
20828
20833
|
success: Scalars['Boolean']['output'];
|
|
20829
20834
|
};
|
|
20835
|
+
export declare type ConfluenceUpdateContentAppearanceInput = {
|
|
20836
|
+
contentAppearance: Scalars['String']['input'];
|
|
20837
|
+
contentId: Scalars['ID']['input'];
|
|
20838
|
+
contentStatus?: InputMaybe<ConfluenceMutationContentStatus>;
|
|
20839
|
+
};
|
|
20840
|
+
export declare type ConfluenceUpdateContentAppearancePayload = {
|
|
20841
|
+
__typename?: 'ConfluenceUpdateContentAppearancePayload';
|
|
20842
|
+
content?: Maybe<Content>;
|
|
20843
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20844
|
+
success: Scalars['Boolean']['output'];
|
|
20845
|
+
};
|
|
20830
20846
|
export declare type ConfluenceUpdateContentDirectRestrictionsInput = {
|
|
20831
20847
|
add?: InputMaybe<ConfluenceDirectRestrictionsAddInput>;
|
|
20832
20848
|
contentId: Scalars['ID']['input'];
|
|
@@ -20851,6 +20867,17 @@ export declare type ConfluenceUpdateContentModePayload = {
|
|
|
20851
20867
|
errors?: Maybe<Array<MutationError>>;
|
|
20852
20868
|
success: Scalars['Boolean']['output'];
|
|
20853
20869
|
};
|
|
20870
|
+
export declare type ConfluenceUpdateCoverPictureInput = {
|
|
20871
|
+
contentId: Scalars['ID']['input'];
|
|
20872
|
+
contentStatus?: InputMaybe<ConfluenceMutationContentStatus>;
|
|
20873
|
+
coverPicture: Scalars['String']['input'];
|
|
20874
|
+
};
|
|
20875
|
+
export declare type ConfluenceUpdateCoverPicturePayload = {
|
|
20876
|
+
__typename?: 'ConfluenceUpdateCoverPicturePayload';
|
|
20877
|
+
content?: Maybe<Content>;
|
|
20878
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20879
|
+
success: Scalars['Boolean']['output'];
|
|
20880
|
+
};
|
|
20854
20881
|
export declare type ConfluenceUpdateCurrentBlogPostInput = {
|
|
20855
20882
|
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
20856
20883
|
id: Scalars['ID']['input'];
|
|
@@ -21262,6 +21289,17 @@ export declare type ConfluenceUpdateTeamsSiteConfigurationPayload = Payload & {
|
|
|
21262
21289
|
errors?: Maybe<Array<MutationError>>;
|
|
21263
21290
|
success: Scalars['Boolean']['output'];
|
|
21264
21291
|
};
|
|
21292
|
+
export declare type ConfluenceUpdateTitleEmojiInput = {
|
|
21293
|
+
contentId: Scalars['ID']['input'];
|
|
21294
|
+
contentStatus?: InputMaybe<ConfluenceMutationContentStatus>;
|
|
21295
|
+
titleEmoji: Scalars['String']['input'];
|
|
21296
|
+
};
|
|
21297
|
+
export declare type ConfluenceUpdateTitleEmojiPayload = {
|
|
21298
|
+
__typename?: 'ConfluenceUpdateTitleEmojiPayload';
|
|
21299
|
+
content?: Maybe<Content>;
|
|
21300
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21301
|
+
success: Scalars['Boolean']['output'];
|
|
21302
|
+
};
|
|
21265
21303
|
export declare type ConfluenceUpdateTopicInput = {
|
|
21266
21304
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
21267
21305
|
featured?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -25312,6 +25350,11 @@ export declare type CsmAiDeleteKnowledgeSourcePayload = Payload & {
|
|
|
25312
25350
|
errors?: Maybe<Array<MutationError>>;
|
|
25313
25351
|
success: Scalars['Boolean']['output'];
|
|
25314
25352
|
};
|
|
25353
|
+
export declare type CsmAiDeleteWidgetPayload = Payload & {
|
|
25354
|
+
__typename?: 'CsmAiDeleteWidgetPayload';
|
|
25355
|
+
errors?: Maybe<Array<MutationError>>;
|
|
25356
|
+
success: Scalars['Boolean']['output'];
|
|
25357
|
+
};
|
|
25315
25358
|
export declare type CsmAiGenerateClientKeyPayload = Payload & {
|
|
25316
25359
|
__typename?: 'CsmAiGenerateClientKeyPayload';
|
|
25317
25360
|
clientKey?: Maybe<CsmAiWidgetClientKey>;
|
|
@@ -30237,9 +30280,12 @@ export declare enum DocumentRepresentation {
|
|
|
30237
30280
|
}
|
|
30238
30281
|
export declare type DraftContentProperties = {
|
|
30239
30282
|
__typename?: 'DraftContentProperties';
|
|
30283
|
+
contentAppearance?: Maybe<Scalars['String']['output']>;
|
|
30240
30284
|
contentMode?: Maybe<Scalars['String']['output']>;
|
|
30285
|
+
coverPicture?: Maybe<Scalars['String']['output']>;
|
|
30241
30286
|
coverPictureWidth?: Maybe<Scalars['String']['output']>;
|
|
30242
30287
|
generatedBy?: Maybe<Scalars['String']['output']>;
|
|
30288
|
+
titleEmoji?: Maybe<Scalars['String']['output']>;
|
|
30243
30289
|
};
|
|
30244
30290
|
export declare type DvcsBitbucketWorkspaceConnection = {
|
|
30245
30291
|
__typename?: 'DvcsBitbucketWorkspaceConnection';
|
|
@@ -35143,7 +35189,7 @@ export declare type GraphIntegrationDirectoryFilterDimensionEdge = {
|
|
|
35143
35189
|
cursor: Scalars['String']['output'];
|
|
35144
35190
|
node?: Maybe<GraphIntegrationDirectoryFilterDimension>;
|
|
35145
35191
|
};
|
|
35146
|
-
export declare type GraphIntegrationDirectoryItem = GraphIntegrationActionDirectoryItem | GraphIntegrationMcpServer | GraphIntegrationMcpTool;
|
|
35192
|
+
export declare type GraphIntegrationDirectoryItem = GraphIntegrationActionDirectoryItem | GraphIntegrationMcpServer | GraphIntegrationMcpTool | GraphIntegrationSkillDirectoryItem;
|
|
35147
35193
|
export declare type GraphIntegrationDirectoryItemConnection = {
|
|
35148
35194
|
__typename?: 'GraphIntegrationDirectoryItemConnection';
|
|
35149
35195
|
edges: Array<GraphIntegrationDirectoryItemEdge>;
|
|
@@ -35158,7 +35204,8 @@ export declare type GraphIntegrationDirectoryItemEdge = {
|
|
|
35158
35204
|
export declare enum GraphIntegrationDirectoryItemType {
|
|
35159
35205
|
Action = "ACTION",
|
|
35160
35206
|
McpServer = "MCP_SERVER",
|
|
35161
|
-
McpTool = "MCP_TOOL"
|
|
35207
|
+
McpTool = "MCP_TOOL",
|
|
35208
|
+
Skill = "SKILL"
|
|
35162
35209
|
}
|
|
35163
35210
|
export declare type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateConnection = {
|
|
35164
35211
|
__typename?: 'GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateConnection';
|
|
@@ -35376,6 +35423,17 @@ export declare type GraphIntegrationRemoveTwgCapabilityContainerPayload = Payloa
|
|
|
35376
35423
|
errors?: Maybe<Array<MutationError>>;
|
|
35377
35424
|
success: Scalars['Boolean']['output'];
|
|
35378
35425
|
};
|
|
35426
|
+
export declare type GraphIntegrationSkillDirectoryItem = {
|
|
35427
|
+
__typename?: 'GraphIntegrationSkillDirectoryItem';
|
|
35428
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
35429
|
+
displayName: Scalars['String']['output'];
|
|
35430
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
35431
|
+
id: Scalars['ID']['output'];
|
|
35432
|
+
integrationKey?: Maybe<GraphIntegrationDirectoryFilterDimension>;
|
|
35433
|
+
name: Scalars['String']['output'];
|
|
35434
|
+
slashCommand?: Maybe<Scalars['String']['output']>;
|
|
35435
|
+
tags: Array<GraphIntegrationDirectoryFilterDimension>;
|
|
35436
|
+
};
|
|
35379
35437
|
export declare enum GraphIntegrationStatus {
|
|
35380
35438
|
Disabled = "DISABLED",
|
|
35381
35439
|
Enabled = "ENABLED"
|
|
@@ -38157,6 +38215,14 @@ export declare type GraphStore = {
|
|
|
38157
38215
|
atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
38158
38216
|
atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
|
|
38159
38217
|
atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
|
|
38218
|
+
atlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
38219
|
+
atlassianUserDismissedJiraForYouRecommendationEntityBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
38220
|
+
atlassianUserDismissedJiraForYouRecommendationEntityInverse?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection>;
|
|
38221
|
+
atlassianUserDismissedJiraForYouRecommendationEntityInverseBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
38222
|
+
atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
38223
|
+
atlassianUserInvitedToLoomMeetingBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
|
|
38224
|
+
atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
38225
|
+
atlassianUserInvitedToLoomMeetingInverseBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
|
|
38160
38226
|
boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
|
|
38161
38227
|
boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
|
|
38162
38228
|
branchInRepo?: Maybe<GraphStoreSimplifiedBranchInRepoConnection>;
|
|
@@ -39400,6 +39466,70 @@ export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemInverseArgs = {
|
|
|
39400
39466
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39401
39467
|
sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
|
|
39402
39468
|
};
|
|
39469
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
39470
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39471
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39472
|
+
filter?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityFilterInput>;
|
|
39473
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39474
|
+
id: Scalars['ID']['input'];
|
|
39475
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39476
|
+
sort?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortInput>;
|
|
39477
|
+
};
|
|
39478
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityBatchArgs = {
|
|
39479
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39480
|
+
filter?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityFilterInput>;
|
|
39481
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39482
|
+
ids: Array<Scalars['ID']['input']>;
|
|
39483
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39484
|
+
sort?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortInput>;
|
|
39485
|
+
};
|
|
39486
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityInverseArgs = {
|
|
39487
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39488
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39489
|
+
filter?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityFilterInput>;
|
|
39490
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39491
|
+
id: Scalars['ID']['input'];
|
|
39492
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39493
|
+
sort?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortInput>;
|
|
39494
|
+
};
|
|
39495
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityInverseBatchArgs = {
|
|
39496
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39497
|
+
filter?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityFilterInput>;
|
|
39498
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39499
|
+
ids: Array<Scalars['ID']['input']>;
|
|
39500
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39501
|
+
sort?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortInput>;
|
|
39502
|
+
};
|
|
39503
|
+
export declare type GraphStoreAtlassianUserInvitedToLoomMeetingArgs = {
|
|
39504
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39505
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39506
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39507
|
+
id: Scalars['ID']['input'];
|
|
39508
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39509
|
+
sort?: InputMaybe<GraphStoreAtlassianUserInvitedToLoomMeetingSortInput>;
|
|
39510
|
+
};
|
|
39511
|
+
export declare type GraphStoreAtlassianUserInvitedToLoomMeetingBatchArgs = {
|
|
39512
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39513
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39514
|
+
ids: Array<Scalars['ID']['input']>;
|
|
39515
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39516
|
+
sort?: InputMaybe<GraphStoreAtlassianUserInvitedToLoomMeetingSortInput>;
|
|
39517
|
+
};
|
|
39518
|
+
export declare type GraphStoreAtlassianUserInvitedToLoomMeetingInverseArgs = {
|
|
39519
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39520
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39521
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39522
|
+
id: Scalars['ID']['input'];
|
|
39523
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39524
|
+
sort?: InputMaybe<GraphStoreAtlassianUserInvitedToLoomMeetingSortInput>;
|
|
39525
|
+
};
|
|
39526
|
+
export declare type GraphStoreAtlassianUserInvitedToLoomMeetingInverseBatchArgs = {
|
|
39527
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39528
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39529
|
+
ids: Array<Scalars['ID']['input']>;
|
|
39530
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39531
|
+
sort?: InputMaybe<GraphStoreAtlassianUserInvitedToLoomMeetingSortInput>;
|
|
39532
|
+
};
|
|
39403
39533
|
export declare type GraphStoreBoardBelongsToProjectArgs = {
|
|
39404
39534
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39405
39535
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -45875,6 +46005,56 @@ export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput = {
|
|
|
45875
46005
|
export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput = {
|
|
45876
46006
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45877
46007
|
};
|
|
46008
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput = {
|
|
46009
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>>>;
|
|
46010
|
+
category?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryFilterInput>;
|
|
46011
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>>>;
|
|
46012
|
+
};
|
|
46013
|
+
export declare enum GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategory {
|
|
46014
|
+
CommentAssigned = "COMMENT_ASSIGNED",
|
|
46015
|
+
CommentMention = "COMMENT_MENTION",
|
|
46016
|
+
CommentReply = "COMMENT_REPLY",
|
|
46017
|
+
IssueApproval = "ISSUE_APPROVAL",
|
|
46018
|
+
IssueDueSoon = "ISSUE_DUE_SOON",
|
|
46019
|
+
NotSet = "NOT_SET",
|
|
46020
|
+
ProjectInviterContext = "PROJECT_INVITER_CONTEXT",
|
|
46021
|
+
ProjectPopularity = "PROJECT_POPULARITY",
|
|
46022
|
+
PrReview = "PR_REVIEW",
|
|
46023
|
+
TeamCollaboratorsCreate = "TEAM_COLLABORATORS_CREATE",
|
|
46024
|
+
TeamCollaboratorsJoin = "TEAM_COLLABORATORS_JOIN",
|
|
46025
|
+
TeamInviterContext = "TEAM_INVITER_CONTEXT",
|
|
46026
|
+
TeamPopularity = "TEAM_POPULARITY"
|
|
46027
|
+
}
|
|
46028
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryFilterInput = {
|
|
46029
|
+
is?: InputMaybe<Array<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategory>>;
|
|
46030
|
+
isNot?: InputMaybe<Array<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategory>>;
|
|
46031
|
+
};
|
|
46032
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalSortInput = {
|
|
46033
|
+
category?: InputMaybe<GraphStoreSortInput>;
|
|
46034
|
+
};
|
|
46035
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityConditionalFilterInput = {
|
|
46036
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
46037
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
46038
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
46039
|
+
relationship_dismissedCategories?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>;
|
|
46040
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
46041
|
+
to_dismissedCategories?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>;
|
|
46042
|
+
};
|
|
46043
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityFilterInput = {
|
|
46044
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityConditionalFilterInput>>>;
|
|
46045
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityConditionalFilterInput>>>;
|
|
46046
|
+
};
|
|
46047
|
+
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortInput = {
|
|
46048
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
46049
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
46050
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46051
|
+
relationship_dismissedCategories?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalSortInput>;
|
|
46052
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
46053
|
+
to_dismissedCategories?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalSortInput>;
|
|
46054
|
+
};
|
|
46055
|
+
export declare type GraphStoreAtlassianUserInvitedToLoomMeetingSortInput = {
|
|
46056
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46057
|
+
};
|
|
45878
46058
|
export declare type GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection = HasPageInfo & {
|
|
45879
46059
|
__typename?: 'GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection';
|
|
45880
46060
|
edges: Array<Maybe<GraphStoreBatchAtlasGoalHasJiraAlignProjectEdge>>;
|
|
@@ -45957,6 +46137,88 @@ export declare type GraphStoreBatchAtlasProjectContributesToAtlasGoalStartNode =
|
|
|
45957
46137
|
id: Scalars['ID']['output'];
|
|
45958
46138
|
};
|
|
45959
46139
|
export declare type GraphStoreBatchAtlasProjectContributesToAtlasGoalStartUnion = TownsquareProject;
|
|
46140
|
+
export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection = HasPageInfo & {
|
|
46141
|
+
__typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection';
|
|
46142
|
+
edges: Array<Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEdge>>;
|
|
46143
|
+
nodes: Array<Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityNode>>;
|
|
46144
|
+
pageInfo: PageInfo;
|
|
46145
|
+
};
|
|
46146
|
+
export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEdge = {
|
|
46147
|
+
__typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEdge';
|
|
46148
|
+
node: GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityInnerConnection;
|
|
46149
|
+
};
|
|
46150
|
+
export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEndNode = {
|
|
46151
|
+
__typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEndNode';
|
|
46152
|
+
data?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEndUnion>;
|
|
46153
|
+
id: Scalars['ID']['output'];
|
|
46154
|
+
};
|
|
46155
|
+
export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEndUnion = DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
|
|
46156
|
+
export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityInnerConnection = {
|
|
46157
|
+
__typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityInnerConnection';
|
|
46158
|
+
edges: Array<Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityInnerEdge>>;
|
|
46159
|
+
nodes: Array<Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityNode>>;
|
|
46160
|
+
requestedId: Scalars['ID']['output'];
|
|
46161
|
+
};
|
|
46162
|
+
export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityInnerEdge = {
|
|
46163
|
+
__typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityInnerEdge';
|
|
46164
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46165
|
+
node: GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityNode;
|
|
46166
|
+
};
|
|
46167
|
+
export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityNode = Node & {
|
|
46168
|
+
__typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityNode';
|
|
46169
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46170
|
+
from: GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityStartNode;
|
|
46171
|
+
id: Scalars['ID']['output'];
|
|
46172
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46173
|
+
to: GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityEndNode;
|
|
46174
|
+
};
|
|
46175
|
+
export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityStartNode = {
|
|
46176
|
+
__typename?: 'GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityStartNode';
|
|
46177
|
+
data?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityStartUnion>;
|
|
46178
|
+
id: Scalars['ID']['output'];
|
|
46179
|
+
};
|
|
46180
|
+
export declare type GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityStartUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46181
|
+
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection = HasPageInfo & {
|
|
46182
|
+
__typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection';
|
|
46183
|
+
edges: Array<Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingEdge>>;
|
|
46184
|
+
nodes: Array<Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingNode>>;
|
|
46185
|
+
pageInfo: PageInfo;
|
|
46186
|
+
};
|
|
46187
|
+
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingEdge = {
|
|
46188
|
+
__typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingEdge';
|
|
46189
|
+
node: GraphStoreBatchAtlassianUserInvitedToLoomMeetingInnerConnection;
|
|
46190
|
+
};
|
|
46191
|
+
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingEndNode = {
|
|
46192
|
+
__typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingEndNode';
|
|
46193
|
+
data?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingEndUnion>;
|
|
46194
|
+
id: Scalars['ID']['output'];
|
|
46195
|
+
};
|
|
46196
|
+
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingEndUnion = LoomMeeting;
|
|
46197
|
+
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingInnerConnection = {
|
|
46198
|
+
__typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingInnerConnection';
|
|
46199
|
+
edges: Array<Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingInnerEdge>>;
|
|
46200
|
+
nodes: Array<Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingNode>>;
|
|
46201
|
+
requestedId: Scalars['ID']['output'];
|
|
46202
|
+
};
|
|
46203
|
+
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingInnerEdge = {
|
|
46204
|
+
__typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingInnerEdge';
|
|
46205
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46206
|
+
node: GraphStoreBatchAtlassianUserInvitedToLoomMeetingNode;
|
|
46207
|
+
};
|
|
46208
|
+
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingNode = Node & {
|
|
46209
|
+
__typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingNode';
|
|
46210
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46211
|
+
from: GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartNode;
|
|
46212
|
+
id: Scalars['ID']['output'];
|
|
46213
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46214
|
+
to: GraphStoreBatchAtlassianUserInvitedToLoomMeetingEndNode;
|
|
46215
|
+
};
|
|
46216
|
+
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartNode = {
|
|
46217
|
+
__typename?: 'GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartNode';
|
|
46218
|
+
data?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartUnion>;
|
|
46219
|
+
id: Scalars['ID']['output'];
|
|
46220
|
+
};
|
|
46221
|
+
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45960
46222
|
export declare type GraphStoreBatchChangeProposalHasAtlasGoalConnection = HasPageInfo & {
|
|
45961
46223
|
__typename?: 'GraphStoreBatchChangeProposalHasAtlasGoalConnection';
|
|
45962
46224
|
edges: Array<Maybe<GraphStoreBatchChangeProposalHasAtlasGoalEdge>>;
|
|
@@ -47184,6 +47446,47 @@ export declare type GraphStoreContentReferencedEntitySortInput = {
|
|
|
47184
47446
|
export declare type GraphStoreConversationHasMessageSortInput = {
|
|
47185
47447
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47186
47448
|
};
|
|
47449
|
+
export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalInput = {
|
|
47450
|
+
category?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryInput>;
|
|
47451
|
+
};
|
|
47452
|
+
export declare enum GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryInput {
|
|
47453
|
+
CommentAssigned = "COMMENT_ASSIGNED",
|
|
47454
|
+
CommentMention = "COMMENT_MENTION",
|
|
47455
|
+
CommentReply = "COMMENT_REPLY",
|
|
47456
|
+
IssueApproval = "ISSUE_APPROVAL",
|
|
47457
|
+
IssueDueSoon = "ISSUE_DUE_SOON",
|
|
47458
|
+
NotSet = "NOT_SET",
|
|
47459
|
+
ProjectInviterContext = "PROJECT_INVITER_CONTEXT",
|
|
47460
|
+
ProjectPopularity = "PROJECT_POPULARITY",
|
|
47461
|
+
PrReview = "PR_REVIEW",
|
|
47462
|
+
TeamCollaboratorsCreate = "TEAM_COLLABORATORS_CREATE",
|
|
47463
|
+
TeamCollaboratorsJoin = "TEAM_COLLABORATORS_JOIN",
|
|
47464
|
+
TeamInviterContext = "TEAM_INVITER_CONTEXT",
|
|
47465
|
+
TeamPopularity = "TEAM_POPULARITY"
|
|
47466
|
+
}
|
|
47467
|
+
export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityInput = {
|
|
47468
|
+
relationships: Array<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipInput>;
|
|
47469
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
47470
|
+
};
|
|
47471
|
+
export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityPayload = Payload & {
|
|
47472
|
+
__typename?: 'GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityPayload';
|
|
47473
|
+
errors?: Maybe<Array<MutationError>>;
|
|
47474
|
+
success: Scalars['Boolean']['output'];
|
|
47475
|
+
};
|
|
47476
|
+
export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipInput = {
|
|
47477
|
+
from: Scalars['ID']['input'];
|
|
47478
|
+
objectMetadata?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipObjectMetadataInput>;
|
|
47479
|
+
relationshipMetadata?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipMetadataInput>;
|
|
47480
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
47481
|
+
to: Scalars['ID']['input'];
|
|
47482
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
47483
|
+
};
|
|
47484
|
+
export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipMetadataInput = {
|
|
47485
|
+
dismissedCategories?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalInput>;
|
|
47486
|
+
};
|
|
47487
|
+
export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipObjectMetadataInput = {
|
|
47488
|
+
dismissedCategories?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalInput>;
|
|
47489
|
+
};
|
|
47187
47490
|
export declare type GraphStoreCreateComponentImpactedByIncidentInput = {
|
|
47188
47491
|
relationships: Array<GraphStoreCreateComponentImpactedByIncidentRelationshipInput>;
|
|
47189
47492
|
};
|
|
@@ -47909,6 +48212,19 @@ export declare type GraphStoreDateFilterInput = {
|
|
|
47909
48212
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
47910
48213
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
47911
48214
|
};
|
|
48215
|
+
export declare type GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityInput = {
|
|
48216
|
+
relationships: Array<GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipInput>;
|
|
48217
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48218
|
+
};
|
|
48219
|
+
export declare type GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityPayload = Payload & {
|
|
48220
|
+
__typename?: 'GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityPayload';
|
|
48221
|
+
errors?: Maybe<Array<MutationError>>;
|
|
48222
|
+
success: Scalars['Boolean']['output'];
|
|
48223
|
+
};
|
|
48224
|
+
export declare type GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipInput = {
|
|
48225
|
+
from: Scalars['ID']['input'];
|
|
48226
|
+
to: Scalars['ID']['input'];
|
|
48227
|
+
};
|
|
47912
48228
|
export declare type GraphStoreDeleteComponentImpactedByIncidentInput = {
|
|
47913
48229
|
relationships: Array<GraphStoreDeleteComponentImpactedByIncidentRelationshipInput>;
|
|
47914
48230
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52255,6 +52571,7 @@ export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSort
|
|
|
52255
52571
|
};
|
|
52256
52572
|
export declare type GraphStoreMutation = {
|
|
52257
52573
|
__typename?: 'GraphStoreMutation';
|
|
52574
|
+
createAtlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityPayload>;
|
|
52258
52575
|
createComponentImpactedByIncident?: Maybe<GraphStoreCreateComponentImpactedByIncidentPayload>;
|
|
52259
52576
|
createIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
52260
52577
|
createIncidentHasActionItem?: Maybe<GraphStoreCreateIncidentHasActionItemPayload>;
|
|
@@ -52287,6 +52604,7 @@ export declare type GraphStoreMutation = {
|
|
|
52287
52604
|
createUserHasRelevantProject?: Maybe<GraphStoreCreateUserHasRelevantProjectPayload>;
|
|
52288
52605
|
createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
|
|
52289
52606
|
createVulnerabilityAssociatedIssue?: Maybe<GraphStoreCreateVulnerabilityAssociatedIssuePayload>;
|
|
52607
|
+
deleteAtlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityPayload>;
|
|
52290
52608
|
deleteComponentImpactedByIncident?: Maybe<GraphStoreDeleteComponentImpactedByIncidentPayload>;
|
|
52291
52609
|
deleteIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
52292
52610
|
deleteIncidentHasActionItem?: Maybe<GraphStoreDeleteIncidentHasActionItemPayload>;
|
|
@@ -52320,6 +52638,9 @@ export declare type GraphStoreMutation = {
|
|
|
52320
52638
|
deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
|
|
52321
52639
|
deleteVulnerabilityAssociatedIssue?: Maybe<GraphStoreDeleteVulnerabilityAssociatedIssuePayload>;
|
|
52322
52640
|
};
|
|
52641
|
+
export declare type GraphStoreMutationCreateAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
52642
|
+
input?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityInput>;
|
|
52643
|
+
};
|
|
52323
52644
|
export declare type GraphStoreMutationCreateComponentImpactedByIncidentArgs = {
|
|
52324
52645
|
input?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentInput>;
|
|
52325
52646
|
};
|
|
@@ -52416,6 +52737,9 @@ export declare type GraphStoreMutationCreateVersionUserAssociatedFeatureFlagArgs
|
|
|
52416
52737
|
export declare type GraphStoreMutationCreateVulnerabilityAssociatedIssueArgs = {
|
|
52417
52738
|
input?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueInput>;
|
|
52418
52739
|
};
|
|
52740
|
+
export declare type GraphStoreMutationDeleteAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
52741
|
+
input?: InputMaybe<GraphStoreDeleteAtlassianUserDismissedJiraForYouRecommendationEntityInput>;
|
|
52742
|
+
};
|
|
52419
52743
|
export declare type GraphStoreMutationDeleteComponentImpactedByIncidentArgs = {
|
|
52420
52744
|
input?: InputMaybe<GraphStoreDeleteComponentImpactedByIncidentInput>;
|
|
52421
52745
|
};
|
|
@@ -53760,6 +54084,66 @@ export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverse
|
|
|
53760
54084
|
};
|
|
53761
54085
|
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseUnion = TownsquareProject;
|
|
53762
54086
|
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemUnion = JiraIssue;
|
|
54087
|
+
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection = HasPageInfo & HasTotal & {
|
|
54088
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection';
|
|
54089
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge>>>;
|
|
54090
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
54091
|
+
pageInfo: PageInfo;
|
|
54092
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
54093
|
+
};
|
|
54094
|
+
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge = {
|
|
54095
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge';
|
|
54096
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54097
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54098
|
+
id: Scalars['ID']['output'];
|
|
54099
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54100
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityUnion>;
|
|
54101
|
+
};
|
|
54102
|
+
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection = HasPageInfo & HasTotal & {
|
|
54103
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection';
|
|
54104
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseEdge>>>;
|
|
54105
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
54106
|
+
pageInfo: PageInfo;
|
|
54107
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
54108
|
+
};
|
|
54109
|
+
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseEdge = {
|
|
54110
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseEdge';
|
|
54111
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54112
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54113
|
+
id: Scalars['ID']['output'];
|
|
54114
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54115
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseUnion>;
|
|
54116
|
+
};
|
|
54117
|
+
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
54118
|
+
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityUnion = DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
|
|
54119
|
+
export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection = HasPageInfo & {
|
|
54120
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection';
|
|
54121
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingEdge>>>;
|
|
54122
|
+
pageInfo: PageInfo;
|
|
54123
|
+
};
|
|
54124
|
+
export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingEdge = {
|
|
54125
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingEdge';
|
|
54126
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54127
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54128
|
+
id: Scalars['ID']['output'];
|
|
54129
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54130
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingUnion>;
|
|
54131
|
+
};
|
|
54132
|
+
export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection = HasPageInfo & {
|
|
54133
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection';
|
|
54134
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseEdge>>>;
|
|
54135
|
+
pageInfo: PageInfo;
|
|
54136
|
+
};
|
|
54137
|
+
export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseEdge = {
|
|
54138
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseEdge';
|
|
54139
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54140
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54141
|
+
id: Scalars['ID']['output'];
|
|
54142
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54143
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseUnion>;
|
|
54144
|
+
};
|
|
54145
|
+
export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
54146
|
+
export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingUnion = LoomMeeting;
|
|
53763
54147
|
export declare type GraphStoreSimplifiedBoardBelongsToProjectConnection = HasPageInfo & {
|
|
53764
54148
|
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectConnection';
|
|
53765
54149
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectEdge>>>;
|
|
@@ -67784,6 +68168,11 @@ export declare type JiraAiAgentSessionEdge = {
|
|
|
67784
68168
|
cursor: Scalars['String']['output'];
|
|
67785
68169
|
node?: Maybe<JiraAiAgentSession>;
|
|
67786
68170
|
};
|
|
68171
|
+
export declare type JiraAiAgentSessionEnrichmentInput = {
|
|
68172
|
+
agentIdentityAccountId: Scalars['String']['input'];
|
|
68173
|
+
cloudId: Scalars['ID']['input'];
|
|
68174
|
+
conversationId: Scalars['String']['input'];
|
|
68175
|
+
};
|
|
67787
68176
|
export declare type JiraAiEnablementIssueInput = {
|
|
67788
68177
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
67789
68178
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -79116,6 +79505,7 @@ export declare type JiraMutationReplaceSpreadsheetViewFieldSetsArgs = {
|
|
|
79116
79505
|
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
79117
79506
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
79118
79507
|
id: Scalars['ID']['input'];
|
|
79508
|
+
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
79119
79509
|
};
|
|
79120
79510
|
export declare type JiraMutationRequestCancelIssueExportTaskArgs = {
|
|
79121
79511
|
cloudId: Scalars['ID']['input'];
|
|
@@ -82070,6 +82460,7 @@ export declare type JiraQuery = {
|
|
|
82070
82460
|
__typename?: 'JiraQuery';
|
|
82071
82461
|
activeBackgroundDetails?: Maybe<JiraActiveBackgroundDetailsResult>;
|
|
82072
82462
|
advancedRoadmapsNavigation?: Maybe<JiraAdvancedRoadmapsNavigation>;
|
|
82463
|
+
aiAgentSessionEnrichment?: Maybe<JiraAiAgentSession>;
|
|
82073
82464
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
82074
82465
|
allJiraJourneyConfigurations?: Maybe<JiraJourneyConfigurationConnection>;
|
|
82075
82466
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
@@ -82299,6 +82690,9 @@ export declare type JiraQueryActiveBackgroundDetailsArgs = {
|
|
|
82299
82690
|
export declare type JiraQueryAdvancedRoadmapsNavigationArgs = {
|
|
82300
82691
|
cloudId: Scalars['ID']['input'];
|
|
82301
82692
|
};
|
|
82693
|
+
export declare type JiraQueryAiAgentSessionEnrichmentArgs = {
|
|
82694
|
+
input: JiraAiAgentSessionEnrichmentInput;
|
|
82695
|
+
};
|
|
82302
82696
|
export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
82303
82697
|
cloudId: Scalars['ID']['input'];
|
|
82304
82698
|
};
|
|
@@ -83478,6 +83872,7 @@ export declare type JiraRecommendedActionCategory = {
|
|
|
83478
83872
|
descriptionLinkLabel?: Maybe<Scalars['String']['output']>;
|
|
83479
83873
|
id: Scalars['ID']['output'];
|
|
83480
83874
|
title?: Maybe<Scalars['String']['output']>;
|
|
83875
|
+
type?: Maybe<JiraRecommendedActionCategoryType>;
|
|
83481
83876
|
};
|
|
83482
83877
|
export declare type JiraRecommendedActionCategoryConnection = {
|
|
83483
83878
|
__typename?: 'JiraRecommendedActionCategoryConnection';
|
|
@@ -83490,6 +83885,21 @@ export declare type JiraRecommendedActionCategoryEdge = {
|
|
|
83490
83885
|
cursor: Scalars['String']['output'];
|
|
83491
83886
|
node?: Maybe<JiraRecommendedActionCategory>;
|
|
83492
83887
|
};
|
|
83888
|
+
export declare enum JiraRecommendedActionCategoryType {
|
|
83889
|
+
CommentAssigned = "COMMENT_ASSIGNED",
|
|
83890
|
+
CommentMention = "COMMENT_MENTION",
|
|
83891
|
+
CommentReply = "COMMENT_REPLY",
|
|
83892
|
+
IssueApproval = "ISSUE_APPROVAL",
|
|
83893
|
+
IssueDueSoon = "ISSUE_DUE_SOON",
|
|
83894
|
+
NotSet = "NOT_SET",
|
|
83895
|
+
ProjectInviterContext = "PROJECT_INVITER_CONTEXT",
|
|
83896
|
+
ProjectPopularity = "PROJECT_POPULARITY",
|
|
83897
|
+
PrReview = "PR_REVIEW",
|
|
83898
|
+
TeamCollaboratorsCreate = "TEAM_COLLABORATORS_CREATE",
|
|
83899
|
+
TeamCollaboratorsJoin = "TEAM_COLLABORATORS_JOIN",
|
|
83900
|
+
TeamInviterContext = "TEAM_INVITER_CONTEXT",
|
|
83901
|
+
TeamPopularity = "TEAM_POPULARITY"
|
|
83902
|
+
}
|
|
83493
83903
|
export declare type JiraRecommendedActionConnection = {
|
|
83494
83904
|
__typename?: 'JiraRecommendedActionConnection';
|
|
83495
83905
|
edges?: Maybe<Array<Maybe<JiraRecommendedActionEdge>>>;
|
|
@@ -83501,7 +83911,7 @@ export declare type JiraRecommendedActionEdge = {
|
|
|
83501
83911
|
cursor: Scalars['String']['output'];
|
|
83502
83912
|
node?: Maybe<JiraRecommendedAction>;
|
|
83503
83913
|
};
|
|
83504
|
-
export declare type JiraRecommendedActionEntity = JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment;
|
|
83914
|
+
export declare type JiraRecommendedActionEntity = ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
|
|
83505
83915
|
export declare type JiraRedaction = {
|
|
83506
83916
|
__typename?: 'JiraRedaction';
|
|
83507
83917
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -86800,6 +87210,7 @@ export declare type JiraSubmitBulkOperationProgress = Node & {
|
|
|
86800
87210
|
export declare type JiraSubscription = {
|
|
86801
87211
|
__typename?: 'JiraSubscription';
|
|
86802
87212
|
bulkOperationProgressSubscription?: Maybe<JiraIssueBulkOperationProgress>;
|
|
87213
|
+
onAiAgentSessionCreate?: Maybe<JiraAiAgentSession>;
|
|
86803
87214
|
onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
|
|
86804
87215
|
onAttachmentCreatedByProjectsV2?: Maybe<JiraAttachmentByAriResult>;
|
|
86805
87216
|
onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
|
|
@@ -86836,6 +87247,10 @@ export declare type JiraSubscriptionBulkOperationProgressSubscriptionArgs = {
|
|
|
86836
87247
|
cloudId: Scalars['ID']['input'];
|
|
86837
87248
|
subscriptionId: Scalars['ID']['input'];
|
|
86838
87249
|
};
|
|
87250
|
+
export declare type JiraSubscriptionOnAiAgentSessionCreateArgs = {
|
|
87251
|
+
cloudId: Scalars['ID']['input'];
|
|
87252
|
+
issueId: Scalars['String']['input'];
|
|
87253
|
+
};
|
|
86839
87254
|
export declare type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
|
|
86840
87255
|
cloudId: Scalars['ID']['input'];
|
|
86841
87256
|
projectIds: Array<Scalars['String']['input']>;
|
|
@@ -90727,8 +91142,8 @@ export declare type JsmConversationClaimConversationPayload = Payload & {
|
|
|
90727
91142
|
success: Scalars['Boolean']['output'];
|
|
90728
91143
|
};
|
|
90729
91144
|
export declare type JsmConversationCloseConversationInput = {
|
|
91145
|
+
channelId: Scalars['ID']['input'];
|
|
90730
91146
|
cloudId: Scalars['ID']['input'];
|
|
90731
|
-
conversationId: Scalars['ID']['input'];
|
|
90732
91147
|
};
|
|
90733
91148
|
export declare type JsmConversationCloseConversationPayload = Payload & {
|
|
90734
91149
|
__typename?: 'JsmConversationCloseConversationPayload';
|
|
@@ -91949,7 +92364,10 @@ export declare type KnowledgeDiscoveryPopularSearchQuery = {
|
|
|
91949
92364
|
export declare type KnowledgeDiscoveryPopularSearchQueryResult = KnowledgeDiscoveryPopularSearchQuery | QueryError;
|
|
91950
92365
|
export declare enum KnowledgeDiscoveryProduct {
|
|
91951
92366
|
Confluence = "CONFLUENCE",
|
|
91952
|
-
|
|
92367
|
+
Google = "GOOGLE",
|
|
92368
|
+
Jira = "JIRA",
|
|
92369
|
+
Sharepoint = "SHAREPOINT",
|
|
92370
|
+
Slack = "SLACK"
|
|
91953
92371
|
}
|
|
91954
92372
|
export declare type KnowledgeDiscoveryQueryApi = {
|
|
91955
92373
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
@@ -92315,11 +92733,22 @@ export declare enum KnowledgeDiscoveryZeroQueryDateRange {
|
|
|
92315
92733
|
Yesterday = "YESTERDAY"
|
|
92316
92734
|
}
|
|
92317
92735
|
export declare enum KnowledgeDiscoveryZeroQueryType {
|
|
92736
|
+
CollaboratorProfile = "COLLABORATOR_PROFILE",
|
|
92737
|
+
ConfluencePagesCreated = "CONFLUENCE_PAGES_CREATED",
|
|
92318
92738
|
ConfluencePagesCreated_7Days = "CONFLUENCE_PAGES_CREATED_7_DAYS",
|
|
92739
|
+
ConfluencePagesCreated_30Days = "CONFLUENCE_PAGES_CREATED_30_DAYS",
|
|
92740
|
+
ConfluencePagesCreatedCollaborator = "CONFLUENCE_PAGES_CREATED_COLLABORATOR",
|
|
92741
|
+
ConfluencePagesCreatedCollaborator_7Days = "CONFLUENCE_PAGES_CREATED_COLLABORATOR_7_DAYS",
|
|
92319
92742
|
ConfluencePagesCreatedCollaborator_30Days = "CONFLUENCE_PAGES_CREATED_COLLABORATOR_30_DAYS",
|
|
92320
92743
|
JiraNlq = "JIRA_NLQ",
|
|
92321
92744
|
JiraNlqCollaborator = "JIRA_NLQ_COLLABORATOR",
|
|
92322
92745
|
RelatedQuestion = "RELATED_QUESTION",
|
|
92746
|
+
ThirdPartyGoogleCollaboratorDocs = "THIRD_PARTY_GOOGLE_COLLABORATOR_DOCS",
|
|
92747
|
+
ThirdPartyGoogleMyDocs = "THIRD_PARTY_GOOGLE_MY_DOCS",
|
|
92748
|
+
ThirdPartySharepointCollaboratorDocs = "THIRD_PARTY_SHAREPOINT_COLLABORATOR_DOCS",
|
|
92749
|
+
ThirdPartySharepointMyDocs = "THIRD_PARTY_SHAREPOINT_MY_DOCS",
|
|
92750
|
+
ThirdPartySlackCollaboratorMessages = "THIRD_PARTY_SLACK_COLLABORATOR_MESSAGES",
|
|
92751
|
+
ThirdPartySlackMyMessages = "THIRD_PARTY_SLACK_MY_MESSAGES",
|
|
92323
92752
|
WhoIs = "WHO_IS"
|
|
92324
92753
|
}
|
|
92325
92754
|
export declare enum KnowledgeGraphContentType {
|
|
@@ -93638,7 +94067,7 @@ export declare type MarketplaceConsoleBankDetailsInput = {
|
|
|
93638
94067
|
bankAccountType?: InputMaybe<MarketplaceConsoleBankAccountType>;
|
|
93639
94068
|
bankAddress?: InputMaybe<Scalars['String']['input']>;
|
|
93640
94069
|
bankCity: Scalars['String']['input'];
|
|
93641
|
-
|
|
94070
|
+
bankCountryCode: Scalars['String']['input'];
|
|
93642
94071
|
bankName: Scalars['String']['input'];
|
|
93643
94072
|
bankPostCode?: InputMaybe<Scalars['String']['input']>;
|
|
93644
94073
|
bankState?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -94332,6 +94761,7 @@ export declare type MarketplaceConsoleMakerResponse = MarketplaceConsoleKnownErr
|
|
|
94332
94761
|
export declare type MarketplaceConsoleMutationApi = {
|
|
94333
94762
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
94334
94763
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
94764
|
+
archiveMaker?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
94335
94765
|
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
94336
94766
|
createAppSoftwareVersion?: Maybe<MarketplaceConsoleCreateAppSoftwareVersionMutationOutput>;
|
|
94337
94767
|
createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
|
|
@@ -94357,6 +94787,9 @@ export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
|
94357
94787
|
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
94358
94788
|
product: MarketplaceConsoleEditionsInput;
|
|
94359
94789
|
};
|
|
94790
|
+
export declare type MarketplaceConsoleMutationApiArchiveMakerArgs = {
|
|
94791
|
+
developerId: Scalars['ID']['input'];
|
|
94792
|
+
};
|
|
94360
94793
|
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
94361
94794
|
appSoftwareId: Scalars['String']['input'];
|
|
94362
94795
|
};
|
|
@@ -97823,7 +98256,6 @@ export declare type MercuryInsightsQueryApiFocusAreaInsightsArgs = {
|
|
|
97823
98256
|
export declare type MercuryInsightsQueryApiFocusAreaWorkSuggestionsArgs = {
|
|
97824
98257
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97825
98258
|
focusAreaId: Scalars['ID']['input'];
|
|
97826
|
-
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
97827
98259
|
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
97828
98260
|
};
|
|
97829
98261
|
export declare type MercuryInvestmentCategory = Node & {
|
|
@@ -100313,8 +100745,10 @@ export declare type Mutation = {
|
|
|
100313
100745
|
confluence_updateCalendarSandboxEventTypeReminder?: Maybe<ConfluenceUpdateCalendarSandboxEventTypeReminderPayload>;
|
|
100314
100746
|
confluence_updateCalendarView?: Maybe<ConfluenceUpdateCalendarViewPayload>;
|
|
100315
100747
|
confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
|
|
100748
|
+
confluence_updateContentAppearance?: Maybe<ConfluenceUpdateContentAppearancePayload>;
|
|
100316
100749
|
confluence_updateContentDirectRestrictions?: Maybe<ConfluenceUpdateContentDirectRestrictionsPayload>;
|
|
100317
100750
|
confluence_updateContentMode?: Maybe<ConfluenceUpdateContentModePayload>;
|
|
100751
|
+
confluence_updateCoverPicture?: Maybe<ConfluenceUpdateCoverPicturePayload>;
|
|
100318
100752
|
confluence_updateCustomContentPermissions?: Maybe<ConfluenceUpdateCustomContentPermissionsPayload>;
|
|
100319
100753
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
100320
100754
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
@@ -100325,6 +100759,7 @@ export declare type Mutation = {
|
|
|
100325
100759
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
100326
100760
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
100327
100761
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
100762
|
+
confluence_updateTitleEmoji?: Maybe<ConfluenceUpdateTitleEmojiPayload>;
|
|
100328
100763
|
confluence_updateTopic?: Maybe<ConfluenceUpdateTopicPayload>;
|
|
100329
100764
|
confluence_updateVote?: Maybe<ConfluenceUpdateVotePayload>;
|
|
100330
100765
|
confluence_updateWatermarkConfig?: Maybe<ConfluenceUpdateWatermarkConfigPayload>;
|
|
@@ -100406,6 +100841,7 @@ export declare type Mutation = {
|
|
|
100406
100841
|
csmAi_deleteAction?: Maybe<CsmAiDeleteActionPayload>;
|
|
100407
100842
|
csmAi_deleteCoachingContent?: Maybe<CsmAiDeleteCoachingContentPayload>;
|
|
100408
100843
|
csmAi_deleteKnowledgeSource?: Maybe<CsmAiDeleteKnowledgeSourcePayload>;
|
|
100844
|
+
csmAi_deleteWidget?: Maybe<CsmAiDeleteWidgetPayload>;
|
|
100409
100845
|
csmAi_generateWidgetClientKey?: Maybe<CsmAiGenerateClientKeyPayload>;
|
|
100410
100846
|
csmAi_publishAgent?: Maybe<CsmAiAgentVersionPayload>;
|
|
100411
100847
|
csmAi_restoreAgentVersionAsDraft?: Maybe<CsmAiAgentVersionPayload>;
|
|
@@ -100864,6 +101300,7 @@ export declare type Mutation = {
|
|
|
100864
101300
|
spf_createAsk?: Maybe<SpfUpsertAskPayload>;
|
|
100865
101301
|
spf_createAskComment?: Maybe<SpfUpsertAskCommentPayload>;
|
|
100866
101302
|
spf_createAskUpdate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
101303
|
+
spf_createPlan?: Maybe<SpfUpsertPlanPayload>;
|
|
100867
101304
|
spf_createPlanScenario?: Maybe<SpfUpsertPlanScenarioPayload>;
|
|
100868
101305
|
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
100869
101306
|
spf_deleteAskComment?: Maybe<SpfDeleteAskCommentPayload>;
|
|
@@ -101838,6 +102275,10 @@ export declare type MutationConfluence_UpdateContentAccessRequestArgs = {
|
|
|
101838
102275
|
cloudId: Scalars['ID']['input'];
|
|
101839
102276
|
updateContentAccessRequestInput: ConfluenceUpdateContentAccessRequestInput;
|
|
101840
102277
|
};
|
|
102278
|
+
export declare type MutationConfluence_UpdateContentAppearanceArgs = {
|
|
102279
|
+
cloudId: Scalars['ID']['input'];
|
|
102280
|
+
input: ConfluenceUpdateContentAppearanceInput;
|
|
102281
|
+
};
|
|
101841
102282
|
export declare type MutationConfluence_UpdateContentDirectRestrictionsArgs = {
|
|
101842
102283
|
cloudId: Scalars['ID']['input'];
|
|
101843
102284
|
input: ConfluenceUpdateContentDirectRestrictionsInput;
|
|
@@ -101846,6 +102287,10 @@ export declare type MutationConfluence_UpdateContentModeArgs = {
|
|
|
101846
102287
|
cloudId: Scalars['ID']['input'];
|
|
101847
102288
|
input: ConfluenceUpdateContentModeInput;
|
|
101848
102289
|
};
|
|
102290
|
+
export declare type MutationConfluence_UpdateCoverPictureArgs = {
|
|
102291
|
+
cloudId: Scalars['ID']['input'];
|
|
102292
|
+
input: ConfluenceUpdateCoverPictureInput;
|
|
102293
|
+
};
|
|
101849
102294
|
export declare type MutationConfluence_UpdateCustomContentPermissionsArgs = {
|
|
101850
102295
|
cloudId: Scalars['ID']['input'];
|
|
101851
102296
|
input: ConfluenceUpdateCustomContentPermissionsInput;
|
|
@@ -101888,6 +102333,10 @@ export declare type MutationConfluence_UpdateTeamPresenceSpaceSettingsArgs = {
|
|
|
101888
102333
|
cloudId: Scalars['ID']['input'];
|
|
101889
102334
|
input: ConfluenceUpdateTeamPresenceSpaceSettingsInput;
|
|
101890
102335
|
};
|
|
102336
|
+
export declare type MutationConfluence_UpdateTitleEmojiArgs = {
|
|
102337
|
+
cloudId: Scalars['ID']['input'];
|
|
102338
|
+
input: ConfluenceUpdateTitleEmojiInput;
|
|
102339
|
+
};
|
|
101891
102340
|
export declare type MutationConfluence_UpdateTopicArgs = {
|
|
101892
102341
|
cloudId: Scalars['ID']['input'];
|
|
101893
102342
|
input: ConfluenceUpdateTopicInput;
|
|
@@ -102180,6 +102629,11 @@ export declare type MutationCsmAi_DeleteKnowledgeSourceArgs = {
|
|
|
102180
102629
|
csmAiKnowledgeSourceId: Scalars['ID']['input'];
|
|
102181
102630
|
helpCenterAri: Scalars['ID']['input'];
|
|
102182
102631
|
};
|
|
102632
|
+
export declare type MutationCsmAi_DeleteWidgetArgs = {
|
|
102633
|
+
csmAiHubId: Scalars['ID']['input'];
|
|
102634
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
102635
|
+
widgetId: Scalars['ID']['input'];
|
|
102636
|
+
};
|
|
102183
102637
|
export declare type MutationCsmAi_GenerateWidgetClientKeyArgs = {
|
|
102184
102638
|
helpCenterAri: Scalars['ID']['input'];
|
|
102185
102639
|
widgetId: Scalars['ID']['input'];
|
|
@@ -103619,6 +104073,9 @@ export declare type MutationSpf_CreateAskCommentArgs = {
|
|
|
103619
104073
|
export declare type MutationSpf_CreateAskUpdateArgs = {
|
|
103620
104074
|
input: SpfCreateAskUpdateInput;
|
|
103621
104075
|
};
|
|
104076
|
+
export declare type MutationSpf_CreatePlanArgs = {
|
|
104077
|
+
input: SpfCreatePlanInput;
|
|
104078
|
+
};
|
|
103622
104079
|
export declare type MutationSpf_CreatePlanScenarioArgs = {
|
|
103623
104080
|
input: SpfCreatePlanScenarioInput;
|
|
103624
104081
|
};
|
|
@@ -106831,11 +107288,14 @@ export declare type PublishConditionsDialog = {
|
|
|
106831
107288
|
};
|
|
106832
107289
|
export declare type PublishedContentProperties = {
|
|
106833
107290
|
__typename?: 'PublishedContentProperties';
|
|
107291
|
+
contentAppearance?: Maybe<Scalars['String']['output']>;
|
|
106834
107292
|
contentMode?: Maybe<Scalars['String']['output']>;
|
|
107293
|
+
coverPicture?: Maybe<Scalars['String']['output']>;
|
|
106835
107294
|
coverPictureWidth?: Maybe<Scalars['String']['output']>;
|
|
106836
107295
|
defaultTitleEmoji?: Maybe<Scalars['String']['output']>;
|
|
106837
107296
|
externalVersionId?: Maybe<Scalars['String']['output']>;
|
|
106838
107297
|
generatedBy?: Maybe<Scalars['String']['output']>;
|
|
107298
|
+
titleEmoji?: Maybe<Scalars['String']['output']>;
|
|
106839
107299
|
versionContainsAIContent?: Maybe<Scalars['Boolean']['output']>;
|
|
106840
107300
|
};
|
|
106841
107301
|
export declare type PullRequestStatusInTimeRangeQueryFilter = {
|
|
@@ -107276,7 +107736,6 @@ export declare type Query = {
|
|
|
107276
107736
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
107277
107737
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
107278
107738
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
107279
|
-
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
107280
107739
|
cpls_customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
|
|
107281
107740
|
cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
|
|
107282
107741
|
cpls_filters?: Maybe<CplsFilterConfigurationType>;
|
|
@@ -108182,7 +108641,6 @@ export declare type QueryAgentStudio_DatasetListArgs = {
|
|
|
108182
108641
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108183
108642
|
productType: AgentStudioProductType;
|
|
108184
108643
|
projectContainerAri: Scalars['ID']['input'];
|
|
108185
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
108186
108644
|
};
|
|
108187
108645
|
export declare type QueryAgentStudio_DatasetsArgs = {
|
|
108188
108646
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -108190,7 +108648,6 @@ export declare type QueryAgentStudio_DatasetsArgs = {
|
|
|
108190
108648
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108191
108649
|
productType: AgentStudioProductType;
|
|
108192
108650
|
projectContainerAri: Scalars['ID']['input'];
|
|
108193
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
108194
108651
|
};
|
|
108195
108652
|
export declare type QueryAgentStudio_EvaluationProjectArgs = {
|
|
108196
108653
|
cloudId: Scalars['String']['input'];
|
|
@@ -109733,9 +110190,6 @@ export declare type QueryCountUsersGroupByPageArgs = {
|
|
|
109733
110190
|
sortOrder?: InputMaybe<Scalars['String']['input']>;
|
|
109734
110191
|
startTime: Scalars['String']['input'];
|
|
109735
110192
|
};
|
|
109736
|
-
export declare type QueryCpls_CapacityPlanningPeopleViewArgs = {
|
|
109737
|
-
id: Scalars['ID']['input'];
|
|
109738
|
-
};
|
|
109739
110193
|
export declare type QueryCpls_CustomContributionTargetsArgs = {
|
|
109740
110194
|
input: CplsSearchCustomContributionTargetsInput;
|
|
109741
110195
|
};
|
|
@@ -112595,10 +113049,11 @@ export declare enum RadarUserFieldPermission {
|
|
|
112595
113049
|
}
|
|
112596
113050
|
export declare type RadarView = Node & {
|
|
112597
113051
|
__typename?: 'RadarView';
|
|
113052
|
+
creator?: Maybe<User>;
|
|
113053
|
+
creatorAaid: Scalars['ID']['output'];
|
|
112598
113054
|
groupingField?: Maybe<Scalars['String']['output']>;
|
|
112599
113055
|
id: Scalars['ID']['output'];
|
|
112600
113056
|
orderedColumns?: Maybe<Array<Scalars['String']['output']>>;
|
|
112601
|
-
ownerAaid: Scalars['ID']['output'];
|
|
112602
113057
|
pageName: RadarViewPageName;
|
|
112603
113058
|
rql?: Maybe<Scalars['String']['output']>;
|
|
112604
113059
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -135964,6 +136419,16 @@ export declare type SpfCreateAskUpdateInput = {
|
|
|
135964
136419
|
status?: InputMaybe<SpfAskStatus>;
|
|
135965
136420
|
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
135966
136421
|
};
|
|
136422
|
+
export declare type SpfCreatePlanInput = {
|
|
136423
|
+
approverIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
136424
|
+
cloudId: Scalars['ID']['input'];
|
|
136425
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
136426
|
+
name: Scalars['String']['input'];
|
|
136427
|
+
ownerIds: Array<Scalars['String']['input']>;
|
|
136428
|
+
portfolioId: Scalars['String']['input'];
|
|
136429
|
+
status: SpfPlanStatus;
|
|
136430
|
+
timeframe: SpfPlanTimeframeInput;
|
|
136431
|
+
};
|
|
135967
136432
|
export declare type SpfCreatePlanScenarioInput = {
|
|
135968
136433
|
name: Scalars['String']['input'];
|
|
135969
136434
|
planId: Scalars['ID']['input'];
|
|
@@ -136044,6 +136509,7 @@ export declare type SpfPlan = Node & {
|
|
|
136044
136509
|
scenarios?: Maybe<SpfPlanScenarioConnection>;
|
|
136045
136510
|
status: SpfPlanStatus;
|
|
136046
136511
|
timeframe: SpfPlanTimeframe;
|
|
136512
|
+
transitions?: Maybe<Array<Maybe<SpfPlanTransition>>>;
|
|
136047
136513
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
136048
136514
|
updatedBy?: Maybe<User>;
|
|
136049
136515
|
};
|
|
@@ -136091,7 +136557,9 @@ export declare enum SpfPlanScenarioStatus {
|
|
|
136091
136557
|
Draft = "DRAFT"
|
|
136092
136558
|
}
|
|
136093
136559
|
export declare enum SpfPlanStatus {
|
|
136094
|
-
|
|
136560
|
+
Canceled = "CANCELED",
|
|
136561
|
+
Draft = "DRAFT",
|
|
136562
|
+
Final = "FINAL"
|
|
136095
136563
|
}
|
|
136096
136564
|
export declare type SpfPlanTimeframe = {
|
|
136097
136565
|
__typename?: 'SpfPlanTimeframe';
|
|
@@ -136109,6 +136577,12 @@ export declare type SpfPlanTimeframeInput = {
|
|
|
136109
136577
|
startDate: Scalars['String']['input'];
|
|
136110
136578
|
timeframeGranularity: SpfPlanTimeframeGranularity;
|
|
136111
136579
|
};
|
|
136580
|
+
export declare type SpfPlanTransition = {
|
|
136581
|
+
__typename?: 'SpfPlanTransition';
|
|
136582
|
+
planId: Scalars['String']['output'];
|
|
136583
|
+
status?: Maybe<SpfPlanStatus>;
|
|
136584
|
+
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
136585
|
+
};
|
|
136112
136586
|
export declare type SpfResolveImpactedWorkUrlPayload = {
|
|
136113
136587
|
__typename?: 'SpfResolveImpactedWorkUrlPayload';
|
|
136114
136588
|
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
@@ -137646,8 +138120,10 @@ export declare type Subscription = {
|
|
|
137646
138120
|
jira?: Maybe<JiraSubscription>;
|
|
137647
138121
|
jiraProductDiscovery?: Maybe<JpdSubscriptions>;
|
|
137648
138122
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
138123
|
+
jsmChannels_getResolutionPlanGraphUpdate: JsmChannelsResolutionPlanGraphResult;
|
|
137649
138124
|
jsmChannels_onServiceAgentResolutionStateByTicketIdUpdate: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
137650
138125
|
jsmChat?: Maybe<JsmChatSubscription>;
|
|
138126
|
+
jsmConversation_dummy?: Maybe<Scalars['String']['output']>;
|
|
137651
138127
|
liveChat_updates?: Maybe<LiveChatUpdate>;
|
|
137652
138128
|
mercury?: Maybe<MercurySubscriptionApi>;
|
|
137653
138129
|
migration: MigrationSubscription;
|
|
@@ -137707,6 +138183,10 @@ export declare type SubscriptionJpdViewsService_EchoArgs = {
|
|
|
137707
138183
|
cloudId: Scalars['ID']['input'];
|
|
137708
138184
|
message: Scalars['String']['input'];
|
|
137709
138185
|
};
|
|
138186
|
+
export declare type SubscriptionJsmChannels_GetResolutionPlanGraphUpdateArgs = {
|
|
138187
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
138188
|
+
planID: Scalars['ID']['input'];
|
|
138189
|
+
};
|
|
137710
138190
|
export declare type SubscriptionJsmChannels_OnServiceAgentResolutionStateByTicketIdUpdateArgs = {
|
|
137711
138191
|
jiraProjectAri: Scalars['ID']['input'];
|
|
137712
138192
|
workItemId: Scalars['ID']['input'];
|
|
@@ -142430,6 +142910,7 @@ export declare type TrelloApplication = {
|
|
|
142430
142910
|
id: Scalars['ID']['output'];
|
|
142431
142911
|
iframeConnectorUrl?: Maybe<Scalars['URL']['output']>;
|
|
142432
142912
|
key?: Maybe<Scalars['String']['output']>;
|
|
142913
|
+
legacyName?: Maybe<Scalars['String']['output']>;
|
|
142433
142914
|
listings?: Maybe<Array<TrelloApplicationListing>>;
|
|
142434
142915
|
moderatedState?: Maybe<Scalars['String']['output']>;
|
|
142435
142916
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -142600,6 +143081,8 @@ export declare type TrelloBaseBoardUpdated = {
|
|
|
142600
143081
|
labels?: Maybe<TrelloLabelConnectionUpdated>;
|
|
142601
143082
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
142602
143083
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
143084
|
+
onPlannerEventCardsDeleted?: Maybe<Array<TrelloPlannerEventCardDeleted>>;
|
|
143085
|
+
plannerEventCards?: Maybe<TrelloCardUpdatedConnection>;
|
|
142603
143086
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
142604
143087
|
};
|
|
142605
143088
|
export declare type TrelloBaseCard = {
|
|
@@ -142676,6 +143159,7 @@ export declare type TrelloBaseCardUpdated = {
|
|
|
142676
143159
|
onActionDeleted?: Maybe<Array<TrelloActionDeleted>>;
|
|
142677
143160
|
onChecklistDeleted?: Maybe<Array<TrelloChecklistDeleted>>;
|
|
142678
143161
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
143162
|
+
plannerEvents?: Maybe<TrelloCardPlannerEventConnectionUpdated>;
|
|
142679
143163
|
position?: Maybe<Scalars['Float']['output']>;
|
|
142680
143164
|
role?: Maybe<TrelloCardRole>;
|
|
142681
143165
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
@@ -143413,6 +143897,14 @@ export declare type TrelloCardPlannerEvent = {
|
|
|
143413
143897
|
id: Scalars['ID']['output'];
|
|
143414
143898
|
objectId: Scalars['ID']['output'];
|
|
143415
143899
|
};
|
|
143900
|
+
export declare type TrelloCardPlannerEventConnectionUpdated = {
|
|
143901
|
+
__typename?: 'TrelloCardPlannerEventConnectionUpdated';
|
|
143902
|
+
edges?: Maybe<Array<TrelloCardPlannerEventEdgeUpdated>>;
|
|
143903
|
+
};
|
|
143904
|
+
export declare type TrelloCardPlannerEventEdgeUpdated = {
|
|
143905
|
+
__typename?: 'TrelloCardPlannerEventEdgeUpdated';
|
|
143906
|
+
node: TrelloCardPlannerEvent;
|
|
143907
|
+
};
|
|
143416
143908
|
export declare enum TrelloCardRole {
|
|
143417
143909
|
Board = "BOARD",
|
|
143418
143910
|
Link = "LINK",
|
|
@@ -143452,6 +143944,7 @@ export declare type TrelloCardUpdated = TrelloBaseCardUpdated & {
|
|
|
143452
143944
|
onChecklistDeleted?: Maybe<Array<TrelloChecklistDeleted>>;
|
|
143453
143945
|
onPowerUpDataDeleted?: Maybe<Array<TrelloPowerUpDataDeleted>>;
|
|
143454
143946
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
143947
|
+
plannerEvents?: Maybe<TrelloCardPlannerEventConnectionUpdated>;
|
|
143455
143948
|
position?: Maybe<Scalars['Float']['output']>;
|
|
143456
143949
|
powerUpData?: Maybe<TrelloPowerUpDataConnectionUpdated>;
|
|
143457
143950
|
role?: Maybe<TrelloCardRole>;
|
|
@@ -144197,6 +144690,7 @@ export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
|
|
|
144197
144690
|
onActionDeleted?: Maybe<Array<TrelloActionDeleted>>;
|
|
144198
144691
|
onChecklistDeleted?: Maybe<Array<TrelloChecklistDeleted>>;
|
|
144199
144692
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
144693
|
+
plannerEvents?: Maybe<TrelloCardPlannerEventConnectionUpdated>;
|
|
144200
144694
|
position?: Maybe<Scalars['Float']['output']>;
|
|
144201
144695
|
role?: Maybe<TrelloCardRole>;
|
|
144202
144696
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
@@ -144231,6 +144725,8 @@ export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
|
144231
144725
|
labels?: Maybe<TrelloLabelConnectionUpdated>;
|
|
144232
144726
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
144233
144727
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
144728
|
+
onPlannerEventCardsDeleted?: Maybe<Array<TrelloPlannerEventCardDeleted>>;
|
|
144729
|
+
plannerEventCards?: Maybe<TrelloCardUpdatedConnection>;
|
|
144234
144730
|
prefs?: Maybe<TrelloInboxPrefs>;
|
|
144235
144731
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
144236
144732
|
};
|
|
@@ -144500,6 +144996,10 @@ export declare type TrelloMemberNonPublicData = {
|
|
|
144500
144996
|
initials?: Maybe<Scalars['String']['output']>;
|
|
144501
144997
|
};
|
|
144502
144998
|
export declare type TrelloMemberNotificationsUpdated = TrelloInboxNotificationsUpdated;
|
|
144999
|
+
export declare type TrelloMemberPlannerEventCardsUpdated = {
|
|
145000
|
+
__typename?: 'TrelloMemberPlannerEventCardsUpdated';
|
|
145001
|
+
boardOrInboxUpdated?: Maybe<TrelloBaseBoardUpdated>;
|
|
145002
|
+
};
|
|
144503
145003
|
export declare type TrelloMemberPrefs = {
|
|
144504
145004
|
__typename?: 'TrelloMemberPrefs';
|
|
144505
145005
|
colorBlind?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -145960,7 +146460,7 @@ export declare type TrelloSubscriptionApi = {
|
|
|
145960
146460
|
onBoardUpdated?: Maybe<TrelloBoardUpdated>;
|
|
145961
146461
|
onCardBatchUpdated?: Maybe<TrelloCardBatch>;
|
|
145962
146462
|
onInboxUpdated?: Maybe<TrelloInboxUpdated>;
|
|
145963
|
-
|
|
146463
|
+
onMemberPlannerEventCardsUpdated?: Maybe<TrelloMemberPlannerEventCardsUpdated>;
|
|
145964
146464
|
onMemberUpdated?: Maybe<TrelloMemberUpdated>;
|
|
145965
146465
|
onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
|
|
145966
146466
|
};
|