@forge/cli-shared 8.18.0-next.5 → 8.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/out/graphql/graphql-types.d.ts +1689 -112
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +161 -43
- package/package.json +2 -2
|
@@ -182,6 +182,10 @@ export declare type AvpAnalyticsColumnInput = {
|
|
|
182
182
|
formula?: InputMaybe<AvpAnalyticsFormulaColumnInput>;
|
|
183
183
|
simple?: InputMaybe<AvpAnalyticsSimpleColumnInput>;
|
|
184
184
|
};
|
|
185
|
+
export declare type AvpAnalyticsColumnReferenceInput = {
|
|
186
|
+
columnId?: InputMaybe<Scalars['ID']['input']>;
|
|
187
|
+
columnName?: InputMaybe<Scalars['String']['input']>;
|
|
188
|
+
};
|
|
185
189
|
export declare enum AvpAnalyticsColumnType {
|
|
186
190
|
Boolean = "BOOLEAN",
|
|
187
191
|
Date = "DATE",
|
|
@@ -208,7 +212,7 @@ export declare type AvpAnalyticsDataSource = {
|
|
|
208
212
|
hasSubDataSources: Scalars['Boolean']['output'];
|
|
209
213
|
id: Scalars['ID']['output'];
|
|
210
214
|
metadata?: Maybe<AvpAnalyticsDataSourceMetadata>;
|
|
211
|
-
models?: Maybe<
|
|
215
|
+
models?: Maybe<AvpAnalyticsDataSourceModelsConnection>;
|
|
212
216
|
name: Scalars['String']['output'];
|
|
213
217
|
subDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
|
|
214
218
|
};
|
|
@@ -223,6 +227,22 @@ export declare type AvpAnalyticsDataSourceMetadata = {
|
|
|
223
227
|
__typename?: 'AVPAnalyticsDataSourceMetadata';
|
|
224
228
|
icon: Scalars['String']['output'];
|
|
225
229
|
};
|
|
230
|
+
export declare type AvpAnalyticsDataSourceModel = {
|
|
231
|
+
__typename?: 'AVPAnalyticsDataSourceModel';
|
|
232
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
233
|
+
id: Scalars['ID']['output'];
|
|
234
|
+
name: Scalars['String']['output'];
|
|
235
|
+
};
|
|
236
|
+
export declare type AvpAnalyticsDataSourceModelEdge = {
|
|
237
|
+
__typename?: 'AVPAnalyticsDataSourceModelEdge';
|
|
238
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
239
|
+
node: AvpAnalyticsDataSourceModel;
|
|
240
|
+
};
|
|
241
|
+
export declare type AvpAnalyticsDataSourceModelsConnection = {
|
|
242
|
+
__typename?: 'AVPAnalyticsDataSourceModelsConnection';
|
|
243
|
+
edges?: Maybe<Array<AvpAnalyticsDataSourceModelEdge>>;
|
|
244
|
+
pageInfo: PageInfo;
|
|
245
|
+
};
|
|
226
246
|
export declare type AvpAnalyticsDeleteModelInput = {
|
|
227
247
|
forceDelete: Scalars['Boolean']['input'];
|
|
228
248
|
modelId: Scalars['ID']['input'];
|
|
@@ -384,8 +404,9 @@ export declare type AvpAnalyticsModel = {
|
|
|
384
404
|
version: Scalars['String']['output'];
|
|
385
405
|
};
|
|
386
406
|
export declare type AvpAnalyticsModelDataArgs = {
|
|
407
|
+
columnsInput?: InputMaybe<Array<AvpAnalyticsColumnReferenceInput>>;
|
|
387
408
|
paginationInput: AvpAnalyticsPaginationInput;
|
|
388
|
-
sortInput
|
|
409
|
+
sortInput?: InputMaybe<AvpAnalyticsModelDataSortInput>;
|
|
389
410
|
};
|
|
390
411
|
export declare type AvpAnalyticsModelConnection = {
|
|
391
412
|
__typename?: 'AVPAnalyticsModelConnection';
|
|
@@ -408,11 +429,12 @@ export declare type AvpAnalyticsModelDataRow = {
|
|
|
408
429
|
};
|
|
409
430
|
export declare type AvpAnalyticsModelDataRowValue = {
|
|
410
431
|
__typename?: 'AVPAnalyticsModelDataRowValue';
|
|
411
|
-
|
|
412
|
-
|
|
432
|
+
columnId?: Maybe<Scalars['ID']['output']>;
|
|
433
|
+
columnName?: Maybe<Scalars['String']['output']>;
|
|
434
|
+
columnValue?: Maybe<Scalars['String']['output']>;
|
|
413
435
|
};
|
|
414
436
|
export declare type AvpAnalyticsModelDataSort = {
|
|
415
|
-
|
|
437
|
+
columnRef: AvpAnalyticsColumnReferenceInput;
|
|
416
438
|
sortType: AvpAnalyticsSortType;
|
|
417
439
|
};
|
|
418
440
|
export declare type AvpAnalyticsModelDataSortInput = {
|
|
@@ -453,11 +475,13 @@ export declare type AvpAnalyticsModelFilter = {
|
|
|
453
475
|
__typename?: 'AVPAnalyticsModelFilter';
|
|
454
476
|
columnName: Scalars['String']['output'];
|
|
455
477
|
errors?: Maybe<Array<AvpAnalyticsError>>;
|
|
478
|
+
name: Scalars['String']['output'];
|
|
456
479
|
operator: AvpAnalyticsFilterOperator;
|
|
457
480
|
value?: Maybe<AvpAnalyticsFilterValue>;
|
|
458
481
|
};
|
|
459
482
|
export declare type AvpAnalyticsModelFilterInput = {
|
|
460
483
|
columnName: Scalars['String']['input'];
|
|
484
|
+
name: Scalars['String']['input'];
|
|
461
485
|
operator: AvpAnalyticsFilterOperator;
|
|
462
486
|
value?: InputMaybe<AvpAnalyticsFilterValueInput>;
|
|
463
487
|
};
|
|
@@ -2140,7 +2164,7 @@ export declare type ActivityObject = {
|
|
|
2140
2164
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
2141
2165
|
type: Scalars['String']['output'];
|
|
2142
2166
|
};
|
|
2143
|
-
export declare type ActivityObjectData = AssetsObject | AssetsObjectType | AssetsSchema | BitbucketPullRequest | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalRemoteLink | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | LoomVideo | MercuryFocusArea | MercuryPortfolio | RadarPosition | RadarView | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
2167
|
+
export declare type ActivityObjectData = AssetsObject | AssetsObjectType | AssetsSchema | BitbucketPullRequest | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalRemoteLink | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | LoomVideo | MercuryFocusArea | MercuryPortfolio | RadarPosition | RadarView | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
2144
2168
|
export declare enum ActivityObjectType {
|
|
2145
2169
|
Blogpost = "BLOGPOST",
|
|
2146
2170
|
Comment = "COMMENT",
|
|
@@ -2189,14 +2213,6 @@ export declare type AddAppContributorResponsePayload = Payload & {
|
|
|
2189
2213
|
errors?: Maybe<Array<MutationError>>;
|
|
2190
2214
|
success: Scalars['Boolean']['output'];
|
|
2191
2215
|
};
|
|
2192
|
-
export declare type AddBetaUserAsSiteCreatorInput = {
|
|
2193
|
-
cloudID: Scalars['String']['input'];
|
|
2194
|
-
};
|
|
2195
|
-
export declare type AddBetaUserAsSiteCreatorPayload = Payload & {
|
|
2196
|
-
__typename?: 'AddBetaUserAsSiteCreatorPayload';
|
|
2197
|
-
errors?: Maybe<Array<MutationError>>;
|
|
2198
|
-
success: Scalars['Boolean']['output'];
|
|
2199
|
-
};
|
|
2200
2216
|
export declare type AddCompassComponentLabelsInput = {
|
|
2201
2217
|
componentId: Scalars['ID']['input'];
|
|
2202
2218
|
labelNames: Array<Scalars['String']['input']>;
|
|
@@ -2374,6 +2390,10 @@ export declare type AdminAppModuleEdge = {
|
|
|
2374
2390
|
cursor: Scalars['String']['output'];
|
|
2375
2391
|
node: AdminAppModule;
|
|
2376
2392
|
};
|
|
2393
|
+
export declare type AdminAppModulesKey = {
|
|
2394
|
+
ari?: InputMaybe<Scalars['ID']['input']>;
|
|
2395
|
+
resourceOwner?: InputMaybe<Scalars['String']['input']>;
|
|
2396
|
+
};
|
|
2377
2397
|
export declare enum AdminAppParentType {
|
|
2378
2398
|
Site = "SITE",
|
|
2379
2399
|
Unit = "UNIT"
|
|
@@ -2422,6 +2442,7 @@ export declare type AdminAuditLogDetailedEventLocation = {
|
|
|
2422
2442
|
export declare type AdminAuditLogEvent = {
|
|
2423
2443
|
__typename?: 'AdminAuditLogEvent';
|
|
2424
2444
|
action: Scalars['String']['output'];
|
|
2445
|
+
actor?: Maybe<AdminAuditLogEventActor>;
|
|
2425
2446
|
containers?: Maybe<Array<Maybe<AdminAuditLogEventContainer>>>;
|
|
2426
2447
|
context?: Maybe<Array<Maybe<AdminAuditLogEventContext>>>;
|
|
2427
2448
|
correlationId?: Maybe<Scalars['String']['output']>;
|
|
@@ -2434,6 +2455,28 @@ export declare type AdminAuditLogEventAction = {
|
|
|
2434
2455
|
id: Scalars['String']['output'];
|
|
2435
2456
|
name: Scalars['String']['output'];
|
|
2436
2457
|
};
|
|
2458
|
+
export declare type AdminAuditLogEventActor = {
|
|
2459
|
+
__typename?: 'AdminAuditLogEventActor';
|
|
2460
|
+
app?: Maybe<AdminAuditLogEventApp>;
|
|
2461
|
+
auth?: Maybe<AdminAuditLogEventAuthentication>;
|
|
2462
|
+
avatar?: Maybe<Scalars['String']['output']>;
|
|
2463
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
2464
|
+
id: Scalars['ID']['output'];
|
|
2465
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2466
|
+
onBehalfOf?: Maybe<AdminAuditLogEventOnBehalfOf>;
|
|
2467
|
+
};
|
|
2468
|
+
export declare type AdminAuditLogEventApp = {
|
|
2469
|
+
__typename?: 'AdminAuditLogEventApp';
|
|
2470
|
+
attributes: Array<Maybe<AdminStringKeyValuePair>>;
|
|
2471
|
+
id: Scalars['ID']['output'];
|
|
2472
|
+
type: Scalars['String']['output'];
|
|
2473
|
+
};
|
|
2474
|
+
export declare type AdminAuditLogEventAuthentication = {
|
|
2475
|
+
__typename?: 'AdminAuditLogEventAuthentication';
|
|
2476
|
+
authenticationType: Scalars['String']['output'];
|
|
2477
|
+
tokenId?: Maybe<Scalars['String']['output']>;
|
|
2478
|
+
tokenName?: Maybe<Scalars['String']['output']>;
|
|
2479
|
+
};
|
|
2437
2480
|
export declare type AdminAuditLogEventConnection = {
|
|
2438
2481
|
__typename?: 'AdminAuditLogEventConnection';
|
|
2439
2482
|
edges?: Maybe<Array<AdminAuditLogEventEdge>>;
|
|
@@ -2512,6 +2555,12 @@ export declare enum AdminAuditLogEventMessageFormat {
|
|
|
2512
2555
|
Adf = "ADF",
|
|
2513
2556
|
Simple = "SIMPLE"
|
|
2514
2557
|
}
|
|
2558
|
+
export declare type AdminAuditLogEventOnBehalfOf = {
|
|
2559
|
+
__typename?: 'AdminAuditLogEventOnBehalfOf';
|
|
2560
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
2561
|
+
id: Scalars['ID']['output'];
|
|
2562
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2563
|
+
};
|
|
2515
2564
|
export declare type AdminAuditLogFeature = {
|
|
2516
2565
|
__typename?: 'AdminAuditLogFeature';
|
|
2517
2566
|
allInclusive?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2537,6 +2586,13 @@ export declare type AdminAuditLogProductMapping = {
|
|
|
2537
2586
|
app: Scalars['String']['output'];
|
|
2538
2587
|
prefixes: Array<Scalars['String']['output']>;
|
|
2539
2588
|
};
|
|
2589
|
+
export declare type AdminAuditLogSearchUsersInput = {
|
|
2590
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
2591
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2592
|
+
scimFilter?: InputMaybe<Scalars['String']['input']>;
|
|
2593
|
+
scope: Scalars['String']['input'];
|
|
2594
|
+
viewerId: Scalars['String']['input'];
|
|
2595
|
+
};
|
|
2540
2596
|
export declare type AdminAuthPolicyConfig = {
|
|
2541
2597
|
__typename?: 'AdminAuthPolicyConfig';
|
|
2542
2598
|
apiToken?: Maybe<AdminApiTokenConfig>;
|
|
@@ -3069,6 +3125,11 @@ export declare type AdminOrgPolicyEdge = {
|
|
|
3069
3125
|
cursor: Scalars['String']['output'];
|
|
3070
3126
|
node: AdminOrgPolicy;
|
|
3071
3127
|
};
|
|
3128
|
+
export declare type AdminOrgUnitsSettings = {
|
|
3129
|
+
__typename?: 'AdminOrgUnitsSettings';
|
|
3130
|
+
unitsCreateAvailable: Scalars['Boolean']['output'];
|
|
3131
|
+
unitsEligibilityState: AdminUnitsEligibilityState;
|
|
3132
|
+
};
|
|
3072
3133
|
export declare type AdminOrganization = {
|
|
3073
3134
|
__typename?: 'AdminOrganization';
|
|
3074
3135
|
id: Scalars['ID']['output'];
|
|
@@ -3498,6 +3559,11 @@ export declare enum AdminUnitValidateNameErrorEnum {
|
|
|
3498
3559
|
NameConflict = "NAME_CONFLICT",
|
|
3499
3560
|
NameInvalid = "NAME_INVALID"
|
|
3500
3561
|
}
|
|
3562
|
+
export declare enum AdminUnitsEligibilityState {
|
|
3563
|
+
UnitsActivated = "UNITS_ACTIVATED",
|
|
3564
|
+
UnitsEligible = "UNITS_ELIGIBLE",
|
|
3565
|
+
UnitsNotEligible = "UNITS_NOT_ELIGIBLE"
|
|
3566
|
+
}
|
|
3501
3567
|
export declare type AdminUnitsForOrgSearchInput = {
|
|
3502
3568
|
name: Scalars['String']['input'];
|
|
3503
3569
|
};
|
|
@@ -3756,7 +3822,9 @@ export declare type AgentAiPanelChangesFromLastVisitArgs = {
|
|
|
3756
3822
|
export declare type AgentAiPanelRefreshPayload = {
|
|
3757
3823
|
__typename?: 'AgentAIPanelRefreshPayload';
|
|
3758
3824
|
changesFromLastVisit?: Maybe<Scalars['String']['output']>;
|
|
3825
|
+
nextActions?: Maybe<AgentAiContextPanelResponse>;
|
|
3759
3826
|
shortSummary?: Maybe<Scalars['String']['output']>;
|
|
3827
|
+
tldrGenerationTime?: Maybe<Scalars['Long']['output']>;
|
|
3760
3828
|
};
|
|
3761
3829
|
export declare type AgentAiPanelRefreshPayloadChangesFromLastVisitArgs = {
|
|
3762
3830
|
lastActivityTime?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -3800,6 +3868,10 @@ export declare type AgentStudio3pKnowledgeFilter = {
|
|
|
3800
3868
|
export declare type AgentStudio3pKnowledgeFilterInput = {
|
|
3801
3869
|
rawFilter?: InputMaybe<Scalars['String']['input']>;
|
|
3802
3870
|
};
|
|
3871
|
+
export declare enum AgentStudioAccessIdentityMode {
|
|
3872
|
+
Agent = "AGENT",
|
|
3873
|
+
User = "USER"
|
|
3874
|
+
}
|
|
3803
3875
|
export declare type AgentStudioAction = {
|
|
3804
3876
|
__typename?: 'AgentStudioAction';
|
|
3805
3877
|
actionKey: Scalars['String']['output'];
|
|
@@ -3869,6 +3941,7 @@ export declare type AgentStudioAgent = {
|
|
|
3869
3941
|
permissions?: Maybe<AgentStudioAgentPermissions>;
|
|
3870
3942
|
scenarioList?: Maybe<AgentStudioScenariosResult>;
|
|
3871
3943
|
scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
|
|
3944
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
3872
3945
|
version?: Maybe<AgentStudioAgentVersion>;
|
|
3873
3946
|
};
|
|
3874
3947
|
export declare type AgentStudioAgentScenarioListArgs = {
|
|
@@ -3911,6 +3984,7 @@ export declare type AgentStudioAgentQueryInput = {
|
|
|
3911
3984
|
onlyEditableAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3912
3985
|
onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3913
3986
|
onlyMyAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3987
|
+
onlyPublishedEditableAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3914
3988
|
onlyTemplateAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3915
3989
|
onlyUnpublishedAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3916
3990
|
onlyVerifiedAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -3963,8 +4037,9 @@ export declare type AgentStudioAgentsConnection = {
|
|
|
3963
4037
|
edges: Array<AgentStudioAgentEdge>;
|
|
3964
4038
|
pageInfo: PageInfo;
|
|
3965
4039
|
};
|
|
3966
|
-
export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
4040
|
+
export declare type AgentStudioAssistant = AgentStudioAgent & AgentStudioBaseConfiguration & Node & {
|
|
3967
4041
|
__typename?: 'AgentStudioAssistant';
|
|
4042
|
+
accessIdentityMode?: Maybe<AgentStudioAccessIdentityMode>;
|
|
3968
4043
|
actions?: Maybe<AgentStudioActionConfiguration>;
|
|
3969
4044
|
agentSchemaNumber?: Maybe<Scalars['Int']['output']>;
|
|
3970
4045
|
authoringTeam?: Maybe<TeamV2>;
|
|
@@ -3989,12 +4064,18 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
3989
4064
|
isPublished: Scalars['Boolean']['output'];
|
|
3990
4065
|
isVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
3991
4066
|
isWebSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
4067
|
+
isWebSearchEnabledForOrganization?: Maybe<Scalars['Boolean']['output']>;
|
|
3992
4068
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
4069
|
+
mcpServerIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4070
|
+
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
4071
|
+
mcpToolIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4072
|
+
mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
3993
4073
|
name?: Maybe<Scalars['String']['output']>;
|
|
3994
4074
|
permissions?: Maybe<AgentStudioAgentPermissions>;
|
|
3995
4075
|
scenarioList?: Maybe<AgentStudioScenariosResult>;
|
|
3996
4076
|
scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
|
|
3997
4077
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
4078
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
3998
4079
|
version?: Maybe<AgentStudioAgentVersion>;
|
|
3999
4080
|
};
|
|
4000
4081
|
export declare type AgentStudioAssistantScenarioListArgs = {
|
|
@@ -4030,9 +4111,10 @@ export declare type AgentStudioAssistantMessageEdge = {
|
|
|
4030
4111
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
4031
4112
|
node?: Maybe<AgentStudioAssistantMessage>;
|
|
4032
4113
|
};
|
|
4033
|
-
export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node & {
|
|
4114
|
+
export declare type AgentStudioAssistantScenario = AgentStudioBaseConfiguration & AgentStudioScenario & Node & {
|
|
4034
4115
|
__typename?: 'AgentStudioAssistantScenario';
|
|
4035
4116
|
actions?: Maybe<Array<AgentStudioAction>>;
|
|
4117
|
+
agenticSkillIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4036
4118
|
creator?: Maybe<User>;
|
|
4037
4119
|
creatorId: Scalars['ID']['output'];
|
|
4038
4120
|
id: Scalars['ID']['output'];
|
|
@@ -4057,6 +4139,17 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
4057
4139
|
export declare type AgentStudioAuthoringTeamInput = {
|
|
4058
4140
|
authoringTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
4059
4141
|
};
|
|
4142
|
+
export declare type AgentStudioBaseConfiguration = {
|
|
4143
|
+
isDeepResearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
4144
|
+
isWebSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
4145
|
+
isWebSearchEnabledForOrganization?: Maybe<Scalars['Boolean']['output']>;
|
|
4146
|
+
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
4147
|
+
mcpServerIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4148
|
+
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
4149
|
+
mcpToolIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4150
|
+
mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
4151
|
+
tools?: Maybe<Array<AgentStudioTool>>;
|
|
4152
|
+
};
|
|
4060
4153
|
export declare type AgentStudioBatchEvalConversationFilterInput = {
|
|
4061
4154
|
jobRunId?: InputMaybe<Scalars['ID']['input']>;
|
|
4062
4155
|
};
|
|
@@ -4215,10 +4308,12 @@ export declare type AgentStudioCreateAgentInput = {
|
|
|
4215
4308
|
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
4216
4309
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4217
4310
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
4311
|
+
isWebSearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4218
4312
|
jiraProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
4219
4313
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
4220
4314
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4221
4315
|
scenarios?: InputMaybe<Array<InputMaybe<AgentStudioScenarioInput>>>;
|
|
4316
|
+
tools?: InputMaybe<Array<AgentStudioToolInput>>;
|
|
4222
4317
|
widgets?: InputMaybe<Array<InputMaybe<AgentStudioWidgetInput>>>;
|
|
4223
4318
|
};
|
|
4224
4319
|
export declare type AgentStudioCreateAgentPayload = Payload & {
|
|
@@ -4248,6 +4343,7 @@ export declare type AgentStudioCreateBatchEvaluationJobPayload = Payload & {
|
|
|
4248
4343
|
};
|
|
4249
4344
|
export declare type AgentStudioCreateScenarioInput = {
|
|
4250
4345
|
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
4346
|
+
agenticSkills?: InputMaybe<Array<AgentStudioSkillInput>>;
|
|
4251
4347
|
containerId: Scalars['ID']['input'];
|
|
4252
4348
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
4253
4349
|
invocationDescription?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4674,6 +4770,7 @@ export declare enum AgentStudioResolutionStatus {
|
|
|
4674
4770
|
}
|
|
4675
4771
|
export declare type AgentStudioScenario = {
|
|
4676
4772
|
actions?: Maybe<Array<AgentStudioAction>>;
|
|
4773
|
+
agenticSkillIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4677
4774
|
creatorId: Scalars['ID']['output'];
|
|
4678
4775
|
id: Scalars['ID']['output'];
|
|
4679
4776
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
@@ -4696,6 +4793,7 @@ export declare type AgentStudioScenario = {
|
|
|
4696
4793
|
};
|
|
4697
4794
|
export declare type AgentStudioScenarioInput = {
|
|
4698
4795
|
actions?: InputMaybe<Array<InputMaybe<AgentStudioActionInput>>>;
|
|
4796
|
+
agenticSkills?: InputMaybe<Array<AgentStudioSkillInput>>;
|
|
4699
4797
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
4700
4798
|
invocationDescription?: InputMaybe<Scalars['String']['input']>;
|
|
4701
4799
|
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -4778,6 +4876,7 @@ export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
|
|
|
4778
4876
|
permissions?: Maybe<AgentStudioAgentPermissions>;
|
|
4779
4877
|
scenarioList?: Maybe<AgentStudioScenariosResult>;
|
|
4780
4878
|
scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
|
|
4879
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
4781
4880
|
version?: Maybe<AgentStudioAgentVersion>;
|
|
4782
4881
|
};
|
|
4783
4882
|
export declare type AgentStudioServiceAgentScenarioListArgs = {
|
|
@@ -4797,6 +4896,9 @@ export declare type AgentStudioSetWidgetByContainerAriPayload = Payload & {
|
|
|
4797
4896
|
errors?: Maybe<Array<MutationError>>;
|
|
4798
4897
|
success: Scalars['Boolean']['output'];
|
|
4799
4898
|
};
|
|
4899
|
+
export declare type AgentStudioSkillInput = {
|
|
4900
|
+
skillAri: Scalars['ID']['input'];
|
|
4901
|
+
};
|
|
4800
4902
|
export declare type AgentStudioSlackChannel = AgentStudioChannel & {
|
|
4801
4903
|
__typename?: 'AgentStudioSlackChannel';
|
|
4802
4904
|
channels?: Maybe<Array<AgentStudioSlackChannelDetails>>;
|
|
@@ -5132,6 +5234,7 @@ export declare type AgentStudioUpdateKnowledgeGapSuggestionArticleStatusPayload
|
|
|
5132
5234
|
};
|
|
5133
5235
|
export declare type AgentStudioUpdateScenarioInput = {
|
|
5134
5236
|
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
5237
|
+
agenticSkills?: InputMaybe<Array<AgentStudioSkillInput>>;
|
|
5135
5238
|
containerId: Scalars['ID']['input'];
|
|
5136
5239
|
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
5137
5240
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -8287,7 +8390,7 @@ export declare type AssetsAriAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
8287
8390
|
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
8288
8391
|
value?: Maybe<Array<AssetsAriAttributeValue>>;
|
|
8289
8392
|
};
|
|
8290
|
-
export declare type AssetsAriAttributeValue = AppUser | AtlassianAccountUser | CompassComponent | CustomerUser | IdentityGroup | JiraProject | TeamV2;
|
|
8393
|
+
export declare type AssetsAriAttributeValue = AppUser | AtlassianAccountUser | CompassComponent | CustomerUser | IdentityGroup | JiraProject | OpsgenieTeam | TeamV2;
|
|
8291
8394
|
export declare type AssetsAttributeOnObject = {
|
|
8292
8395
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8293
8396
|
id: Scalars['ID']['output'];
|
|
@@ -8593,6 +8696,18 @@ export declare type AssetsDmCreateDefaultCleansingRuleResponse = {
|
|
|
8593
8696
|
isSuccessful: Scalars['Boolean']['output'];
|
|
8594
8697
|
message?: Maybe<Scalars['String']['output']>;
|
|
8595
8698
|
};
|
|
8699
|
+
export declare type AssetsDmCreateObjectAttributeInput = {
|
|
8700
|
+
dataSourceId: Scalars['ID']['input'];
|
|
8701
|
+
dataType: Scalars['Float']['input'];
|
|
8702
|
+
name: Scalars['String']['input'];
|
|
8703
|
+
};
|
|
8704
|
+
export declare type AssetsDmCreateObjectAttributeResponse = {
|
|
8705
|
+
__typename?: 'AssetsDMCreateObjectAttributeResponse';
|
|
8706
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
8707
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
8708
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8709
|
+
objectAttributeId?: Maybe<Scalars['ID']['output']>;
|
|
8710
|
+
};
|
|
8596
8711
|
export declare enum AssetsDmDataDictionaryColumnName {
|
|
8597
8712
|
ComputeDictionaryId = "computeDictionaryId",
|
|
8598
8713
|
DestinationObjectAttributeId = "destinationObjectAttributeId",
|
|
@@ -10877,6 +10992,10 @@ export declare type AssetsVerticalAsyncBundleActionErrorResponse = {
|
|
|
10877
10992
|
errors?: Maybe<Array<AssetsVerticalAsyncBundleActionError>>;
|
|
10878
10993
|
};
|
|
10879
10994
|
export declare type AssetsVerticalAsyncBundleActionResult = AssetsVerticalAsyncBundleActionErrorResponse | AssetsVerticalAsyncTaskPayload;
|
|
10995
|
+
export declare type AssetsVerticalAsyncTaskInfo = {
|
|
10996
|
+
__typename?: 'AssetsVerticalAsyncTaskInfo';
|
|
10997
|
+
id: Scalars['ID']['output'];
|
|
10998
|
+
};
|
|
10880
10999
|
export declare type AssetsVerticalAsyncTaskPayload = Payload & {
|
|
10881
11000
|
__typename?: 'AssetsVerticalAsyncTaskPayload';
|
|
10882
11001
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -10903,6 +11022,19 @@ export declare type AssetsVerticalAttributeValuesSuccess = {
|
|
|
10903
11022
|
__typename?: 'AssetsVerticalAttributeValuesSuccess';
|
|
10904
11023
|
attributeValues?: Maybe<Array<Maybe<AssetsVerticalObjectAttributeValue>>>;
|
|
10905
11024
|
};
|
|
11025
|
+
export declare type AssetsVerticalAttributesInput = {
|
|
11026
|
+
category: AssetsVerticalObjectTypeCategory;
|
|
11027
|
+
verticalInstantiationId: Scalars['ID']['input'];
|
|
11028
|
+
workspaceId: Scalars['ID']['input'];
|
|
11029
|
+
};
|
|
11030
|
+
export declare type AssetsVerticalAttributesResult = QueryError;
|
|
11031
|
+
export declare type AssetsVerticalAuditInfo = {
|
|
11032
|
+
__typename?: 'AssetsVerticalAuditInfo';
|
|
11033
|
+
createdAt: Scalars['DateTime']['output'];
|
|
11034
|
+
createdBy?: Maybe<User>;
|
|
11035
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
11036
|
+
updatedBy?: Maybe<User>;
|
|
11037
|
+
};
|
|
10906
11038
|
export declare type AssetsVerticalAvatar = {
|
|
10907
11039
|
__typename?: 'AssetsVerticalAvatar';
|
|
10908
11040
|
objectId?: Maybe<Scalars['String']['output']>;
|
|
@@ -10927,6 +11059,12 @@ export declare type AssetsVerticalBundleActionErrorExtension = MutationErrorExte
|
|
|
10927
11059
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
10928
11060
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
10929
11061
|
};
|
|
11062
|
+
export declare type AssetsVerticalBundleInstantiation = {
|
|
11063
|
+
__typename?: 'AssetsVerticalBundleInstantiation';
|
|
11064
|
+
bundle: AssetsVerticalBundle;
|
|
11065
|
+
id: Scalars['String']['output'];
|
|
11066
|
+
};
|
|
11067
|
+
export declare type AssetsVerticalBundleInstantiationResult = AssetsVerticalBundleInstantiation | QueryError;
|
|
10930
11068
|
export declare type AssetsVerticalBundleResult = AssetsVerticalBundle | QueryError;
|
|
10931
11069
|
export declare enum AssetsVerticalBundleType {
|
|
10932
11070
|
Cdm = "CDM",
|
|
@@ -10945,6 +11083,10 @@ export declare type AssetsVerticalCountByStatusInput = {
|
|
|
10945
11083
|
workspaceId: Scalars['ID']['input'];
|
|
10946
11084
|
};
|
|
10947
11085
|
export declare type AssetsVerticalCountByStatusResult = AssetsVerticalCountByStatus | QueryError;
|
|
11086
|
+
export declare type AssetsVerticalCreateVerticalInstantiationInput = {
|
|
11087
|
+
cloudId: Scalars['ID']['input'];
|
|
11088
|
+
type: AssetsVerticalVerticalType;
|
|
11089
|
+
};
|
|
10948
11090
|
export declare type AssetsVerticalGenerateInsightsInput = {
|
|
10949
11091
|
cloudId: Scalars['ID']['input'];
|
|
10950
11092
|
};
|
|
@@ -11091,6 +11233,68 @@ export declare type AssetsVerticalStatusType = {
|
|
|
11091
11233
|
description?: Maybe<Scalars['String']['output']>;
|
|
11092
11234
|
name?: Maybe<Scalars['String']['output']>;
|
|
11093
11235
|
};
|
|
11236
|
+
export declare type AssetsVerticalUpdateVerticalInstantiationInput = {
|
|
11237
|
+
cloudId: Scalars['ID']['input'];
|
|
11238
|
+
id: Scalars['ID']['input'];
|
|
11239
|
+
status?: InputMaybe<AssetsVerticalVerticalInstantiationStatus>;
|
|
11240
|
+
};
|
|
11241
|
+
export declare type AssetsVerticalVerticalInstantiation = {
|
|
11242
|
+
__typename?: 'AssetsVerticalVerticalInstantiation';
|
|
11243
|
+
auditInfo: AssetsVerticalAuditInfo;
|
|
11244
|
+
cloudId: Scalars['ID']['output'];
|
|
11245
|
+
id: Scalars['ID']['output'];
|
|
11246
|
+
status: AssetsVerticalVerticalInstantiationStatus;
|
|
11247
|
+
type: AssetsVerticalVerticalType;
|
|
11248
|
+
version: Scalars['String']['output'];
|
|
11249
|
+
workspaceId: Scalars['ID']['output'];
|
|
11250
|
+
};
|
|
11251
|
+
export declare type AssetsVerticalVerticalInstantiationConnection = {
|
|
11252
|
+
__typename?: 'AssetsVerticalVerticalInstantiationConnection';
|
|
11253
|
+
edges: Array<AssetsVerticalVerticalInstantiationEdge>;
|
|
11254
|
+
pageInfo: PageInfo;
|
|
11255
|
+
};
|
|
11256
|
+
export declare type AssetsVerticalVerticalInstantiationEdge = {
|
|
11257
|
+
__typename?: 'AssetsVerticalVerticalInstantiationEdge';
|
|
11258
|
+
cursor: Scalars['String']['output'];
|
|
11259
|
+
node: AssetsVerticalVerticalInstantiation;
|
|
11260
|
+
};
|
|
11261
|
+
export declare enum AssetsVerticalVerticalInstantiationErrorCode {
|
|
11262
|
+
Conflict = "CONFLICT",
|
|
11263
|
+
NotFound = "NOT_FOUND",
|
|
11264
|
+
ValidationFailed = "VALIDATION_FAILED"
|
|
11265
|
+
}
|
|
11266
|
+
export declare type AssetsVerticalVerticalInstantiationMutationErrorExtension = MutationErrorExtension & {
|
|
11267
|
+
__typename?: 'AssetsVerticalVerticalInstantiationMutationErrorExtension';
|
|
11268
|
+
code?: Maybe<AssetsVerticalVerticalInstantiationErrorCode>;
|
|
11269
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
11270
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
11271
|
+
};
|
|
11272
|
+
export declare type AssetsVerticalVerticalInstantiationPayload = Payload & {
|
|
11273
|
+
__typename?: 'AssetsVerticalVerticalInstantiationPayload';
|
|
11274
|
+
asyncTask?: Maybe<AssetsVerticalAsyncTaskInfo>;
|
|
11275
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11276
|
+
success: Scalars['Boolean']['output'];
|
|
11277
|
+
verticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiation>;
|
|
11278
|
+
};
|
|
11279
|
+
export declare enum AssetsVerticalVerticalInstantiationQueryErrorCode {
|
|
11280
|
+
NotFound = "NOT_FOUND",
|
|
11281
|
+
ValidationFailed = "VALIDATION_FAILED"
|
|
11282
|
+
}
|
|
11283
|
+
export declare type AssetsVerticalVerticalInstantiationQueryErrorExtension = QueryErrorExtension & {
|
|
11284
|
+
__typename?: 'AssetsVerticalVerticalInstantiationQueryErrorExtension';
|
|
11285
|
+
code?: Maybe<AssetsVerticalVerticalInstantiationQueryErrorCode>;
|
|
11286
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
11287
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
11288
|
+
};
|
|
11289
|
+
export declare type AssetsVerticalVerticalInstantiationResult = AssetsVerticalVerticalInstantiation | QueryError;
|
|
11290
|
+
export declare enum AssetsVerticalVerticalInstantiationStatus {
|
|
11291
|
+
Completed = "COMPLETED",
|
|
11292
|
+
Failed = "FAILED",
|
|
11293
|
+
InProgress = "IN_PROGRESS"
|
|
11294
|
+
}
|
|
11295
|
+
export declare enum AssetsVerticalVerticalType {
|
|
11296
|
+
Ham = "HAM"
|
|
11297
|
+
}
|
|
11094
11298
|
export declare type AssignIssueParentInput = {
|
|
11095
11299
|
boardId: Scalars['ID']['input'];
|
|
11096
11300
|
issueIds: Array<Scalars['ID']['input']>;
|
|
@@ -14448,8 +14652,14 @@ export declare type ChannelPlatformChatClosureResponse = {
|
|
|
14448
14652
|
export declare type ChannelPlatformChatRequestDetailsRequest = {
|
|
14449
14653
|
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
14450
14654
|
};
|
|
14655
|
+
export declare type ChannelPlatformCheckOtpVerifiedResponse = {
|
|
14656
|
+
__typename?: 'ChannelPlatformCheckOtpVerifiedResponse';
|
|
14657
|
+
success: Scalars['Boolean']['output'];
|
|
14658
|
+
verified?: Maybe<Scalars['Boolean']['output']>;
|
|
14659
|
+
};
|
|
14451
14660
|
export declare type ChannelPlatformClientConfigDetailsResponse = {
|
|
14452
14661
|
__typename?: 'ChannelPlatformClientConfigDetailsResponse';
|
|
14662
|
+
showCustomerLocalTimeToAgent?: Maybe<Scalars['Boolean']['output']>;
|
|
14453
14663
|
ticketPlatformType?: Maybe<Scalars['String']['output']>;
|
|
14454
14664
|
};
|
|
14455
14665
|
export declare type ChannelPlatformConnectDetails = {
|
|
@@ -14666,6 +14876,11 @@ export declare type ChannelPlatformSampleQueueConfig = {
|
|
|
14666
14876
|
maxItems?: Maybe<Scalars['Int']['output']>;
|
|
14667
14877
|
queueId?: Maybe<Scalars['ID']['output']>;
|
|
14668
14878
|
};
|
|
14879
|
+
export declare type ChannelPlatformSendOtpResponse = {
|
|
14880
|
+
__typename?: 'ChannelPlatformSendOtpResponse';
|
|
14881
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
14882
|
+
success: Scalars['Boolean']['output'];
|
|
14883
|
+
};
|
|
14669
14884
|
export declare type ChannelPlatformSubmitRequestInput = {
|
|
14670
14885
|
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
14671
14886
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14723,6 +14938,12 @@ export declare type ChannelPlatformTranscriptResponse = {
|
|
|
14723
14938
|
__typename?: 'ChannelPlatformTranscriptResponse';
|
|
14724
14939
|
chatTranscript?: Maybe<Array<Maybe<ChannelPlatformTranscriptEntry>>>;
|
|
14725
14940
|
};
|
|
14941
|
+
export declare type ChannelPlatformVerifyOtpResponse = {
|
|
14942
|
+
__typename?: 'ChannelPlatformVerifyOtpResponse';
|
|
14943
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
14944
|
+
success: Scalars['Boolean']['output'];
|
|
14945
|
+
verified?: Maybe<Scalars['Boolean']['output']>;
|
|
14946
|
+
};
|
|
14726
14947
|
export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
14727
14948
|
cloudId: Scalars['ID']['input'];
|
|
14728
14949
|
oauthClientId: Scalars['ID']['input'];
|
|
@@ -14972,6 +15193,7 @@ export declare type CollabDraft = {
|
|
|
14972
15193
|
};
|
|
14973
15194
|
export declare type CollabDraftMetadata = {
|
|
14974
15195
|
__typename?: 'CollabDraftMetadata';
|
|
15196
|
+
relevance?: Maybe<ConfluenceCollabDraftRelevance>;
|
|
14975
15197
|
title?: Maybe<Scalars['String']['output']>;
|
|
14976
15198
|
};
|
|
14977
15199
|
export declare enum CollabFormat {
|
|
@@ -15752,6 +15974,7 @@ export declare type CommerceExpCcpEntitlement = CommerceExpNode & {
|
|
|
15752
15974
|
transitionsForBac?: Maybe<Array<Maybe<CommerceExpEntitlementTransitionForBac>>>;
|
|
15753
15975
|
type?: Maybe<CommerceExpEntitlementType>;
|
|
15754
15976
|
usageAggregations?: Maybe<CommerceExpUsageAggregationResponse>;
|
|
15977
|
+
usageForMeteredChargeElements?: Maybe<Array<Maybe<CommerceExpUsageForMeteredChargeElement>>>;
|
|
15755
15978
|
usageForUserBasedMeteredChargeElements?: Maybe<Array<Maybe<CommerceExpUsageForUserBasedMeteredChargeElements>>>;
|
|
15756
15979
|
usageHistory?: Maybe<CommerceExpUsageHistoryConnection>;
|
|
15757
15980
|
version?: Maybe<Scalars['Int']['output']>;
|
|
@@ -19041,6 +19264,12 @@ export declare enum CommerceExpUsageAggregationsResolution {
|
|
|
19041
19264
|
OneMonth = "ONE_MONTH",
|
|
19042
19265
|
Period = "PERIOD"
|
|
19043
19266
|
}
|
|
19267
|
+
export declare type CommerceExpUsageForMeteredChargeElement = {
|
|
19268
|
+
__typename?: 'CommerceExpUsageForMeteredChargeElement';
|
|
19269
|
+
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
19270
|
+
usage?: Maybe<Scalars['Float']['output']>;
|
|
19271
|
+
usersWithOverages?: Maybe<Scalars['Int']['output']>;
|
|
19272
|
+
};
|
|
19044
19273
|
export declare type CommerceExpUsageForUserBasedMeteredChargeElements = {
|
|
19045
19274
|
__typename?: 'CommerceExpUsageForUserBasedMeteredChargeElements';
|
|
19046
19275
|
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
@@ -24404,6 +24633,11 @@ export declare type ConfluenceAddCustomApplicationLinkPayload = Payload & {
|
|
|
24404
24633
|
errors?: Maybe<Array<MutationError>>;
|
|
24405
24634
|
success: Scalars['Boolean']['output'];
|
|
24406
24635
|
};
|
|
24636
|
+
export declare type ConfluenceAddTopLinkInput = {
|
|
24637
|
+
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
24638
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
24639
|
+
url: Scalars['String']['input'];
|
|
24640
|
+
};
|
|
24407
24641
|
export declare type ConfluenceAddTrackInput = {
|
|
24408
24642
|
top?: InputMaybe<Scalars['Boolean']['input']>;
|
|
24409
24643
|
track: ConfluenceTrackInput;
|
|
@@ -24631,6 +24865,21 @@ export declare type ConfluenceApplicationLink = {
|
|
|
24631
24865
|
rpcUrl?: Maybe<Scalars['String']['output']>;
|
|
24632
24866
|
typeId: Scalars['String']['output'];
|
|
24633
24867
|
};
|
|
24868
|
+
export declare type ConfluenceApprovalAgent = {
|
|
24869
|
+
__typename?: 'ConfluenceApprovalAgent';
|
|
24870
|
+
deactivated: Scalars['Boolean']['output'];
|
|
24871
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
24872
|
+
id: Scalars['ID']['output'];
|
|
24873
|
+
identityAccountId?: Maybe<Scalars['ID']['output']>;
|
|
24874
|
+
name: Scalars['String']['output'];
|
|
24875
|
+
namedId?: Maybe<Scalars['String']['output']>;
|
|
24876
|
+
};
|
|
24877
|
+
export declare type ConfluenceApprovalAgentPayload = Payload & {
|
|
24878
|
+
__typename?: 'ConfluenceApprovalAgentPayload';
|
|
24879
|
+
agent?: Maybe<ConfluenceApprovalAgent>;
|
|
24880
|
+
errors: Array<MutationError>;
|
|
24881
|
+
success: Scalars['Boolean']['output'];
|
|
24882
|
+
};
|
|
24634
24883
|
export declare enum ConfluenceApprovalTransitionType {
|
|
24635
24884
|
Directed = "DIRECTED",
|
|
24636
24885
|
Initial = "INITIAL"
|
|
@@ -25062,6 +25311,10 @@ export declare type ConfluenceCloudArchitectureShapesFeature = {
|
|
|
25062
25311
|
__typename?: 'ConfluenceCloudArchitectureShapesFeature';
|
|
25063
25312
|
isEntitled: Scalars['Boolean']['output'];
|
|
25064
25313
|
};
|
|
25314
|
+
export declare enum ConfluenceCollabDraftRelevance {
|
|
25315
|
+
Latest = "LATEST",
|
|
25316
|
+
Stale = "STALE"
|
|
25317
|
+
}
|
|
25065
25318
|
export declare enum ConfluenceCollaborativeEditingService {
|
|
25066
25319
|
Ncs = "NCS",
|
|
25067
25320
|
Synchrony = "SYNCHRONY"
|
|
@@ -25141,6 +25394,10 @@ export declare type ConfluenceCommentUpdated = {
|
|
|
25141
25394
|
__typename?: 'ConfluenceCommentUpdated';
|
|
25142
25395
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
25143
25396
|
};
|
|
25397
|
+
export declare enum ConfluenceCommentsPanelSorting {
|
|
25398
|
+
MostRecent = "MOST_RECENT",
|
|
25399
|
+
PageOrder = "PAGE_ORDER"
|
|
25400
|
+
}
|
|
25144
25401
|
export declare type ConfluenceConflictedPerson = Person & {
|
|
25145
25402
|
__typename?: 'ConfluenceConflictedPerson';
|
|
25146
25403
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -26273,6 +26530,10 @@ export declare type ConfluenceDraftContentNativeProperties = {
|
|
|
26273
26530
|
__typename?: 'ConfluenceDraftContentNativeProperties';
|
|
26274
26531
|
contentState?: Maybe<ConfluenceContentState>;
|
|
26275
26532
|
};
|
|
26533
|
+
export declare type ConfluenceEditTopLinkInput = {
|
|
26534
|
+
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26535
|
+
url: Scalars['String']['input'];
|
|
26536
|
+
};
|
|
26276
26537
|
export declare enum ConfluenceEdition {
|
|
26277
26538
|
Free = "FREE",
|
|
26278
26539
|
Premium = "PREMIUM",
|
|
@@ -26523,8 +26784,10 @@ export declare type ConfluenceForgeExtensionData = {
|
|
|
26523
26784
|
};
|
|
26524
26785
|
export declare type ConfluenceForgeExtensionDataContent = {
|
|
26525
26786
|
id: Scalars['ID']['input'];
|
|
26787
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
26526
26788
|
subtype?: InputMaybe<Scalars['String']['input']>;
|
|
26527
26789
|
type?: InputMaybe<Scalars['String']['input']>;
|
|
26790
|
+
version?: InputMaybe<Scalars['Int']['input']>;
|
|
26528
26791
|
};
|
|
26529
26792
|
export declare type ConfluenceForgeExtensionDataMacro = {
|
|
26530
26793
|
body?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26538,12 +26801,20 @@ export declare type ConfluenceForgeExtensionDataTemplate = {
|
|
|
26538
26801
|
};
|
|
26539
26802
|
export declare type ConfluenceForgePayloadContext = {
|
|
26540
26803
|
appVersion?: InputMaybe<Scalars['String']['input']>;
|
|
26804
|
+
config?: InputMaybe<Scalars['String']['input']>;
|
|
26805
|
+
content?: InputMaybe<ConfluenceForgeExtensionDataContent>;
|
|
26806
|
+
contentId?: InputMaybe<Scalars['String']['input']>;
|
|
26541
26807
|
environmentId?: InputMaybe<Scalars['String']['input']>;
|
|
26542
26808
|
environmentType?: InputMaybe<Scalars['String']['input']>;
|
|
26543
26809
|
extension: ConfluenceForgeExtensionData;
|
|
26810
|
+
isConfig?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26544
26811
|
localId?: InputMaybe<Scalars['String']['input']>;
|
|
26812
|
+
macro?: InputMaybe<ConfluenceForgeExtensionDataMacro>;
|
|
26545
26813
|
moduleKey?: InputMaybe<Scalars['String']['input']>;
|
|
26546
26814
|
siteUrl?: InputMaybe<Scalars['String']['input']>;
|
|
26815
|
+
space?: InputMaybe<ConfluenceForgeExtensionDataSpace>;
|
|
26816
|
+
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
26817
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
26547
26818
|
};
|
|
26548
26819
|
export declare type ConfluenceFormattingSettings = {
|
|
26549
26820
|
__typename?: 'ConfluenceFormattingSettings';
|
|
@@ -28876,6 +29147,9 @@ export declare type ConfluenceRemoveContentApprovalReviewerInput = {
|
|
|
28876
29147
|
principalType: ConfluencePrincipalType;
|
|
28877
29148
|
workflowApplicationId: Scalars['ID']['input'];
|
|
28878
29149
|
};
|
|
29150
|
+
export declare type ConfluenceRemoveTopLinkInput = {
|
|
29151
|
+
url: Scalars['String']['input'];
|
|
29152
|
+
};
|
|
28879
29153
|
export declare type ConfluenceRemoveTrackPayload = {
|
|
28880
29154
|
__typename?: 'ConfluenceRemoveTrackPayload';
|
|
28881
29155
|
errors?: Maybe<Array<ConfluenceRemoveTrackPayloadError>>;
|
|
@@ -29532,6 +29806,7 @@ export declare type ConfluenceSpaceRoleAppPrincipal = SpaceRolePrincipal & {
|
|
|
29532
29806
|
__typename?: 'ConfluenceSpaceRoleAppPrincipal';
|
|
29533
29807
|
displayName: Scalars['String']['output'];
|
|
29534
29808
|
principalId: Scalars['ID']['output'];
|
|
29809
|
+
profilePicture?: Maybe<Icon>;
|
|
29535
29810
|
};
|
|
29536
29811
|
export declare type ConfluenceSpaceRoleAssigned = {
|
|
29537
29812
|
__typename?: 'ConfluenceSpaceRoleAssigned';
|
|
@@ -30477,6 +30752,7 @@ export declare type ConfluenceUpdateSlackSiteConfigurationPayload = Payload & {
|
|
|
30477
30752
|
export declare type ConfluenceUpdateSmartSpaceOverviewInput = {
|
|
30478
30753
|
spaceKey: Scalars['String']['input'];
|
|
30479
30754
|
summary?: InputMaybe<ConfluenceUpdateSmartSpaceOverviewSummaryInput>;
|
|
30755
|
+
topLinks?: InputMaybe<ConfluenceUpdateSmartSpaceOverviewTopLinksInput>;
|
|
30480
30756
|
};
|
|
30481
30757
|
export declare type ConfluenceUpdateSmartSpaceOverviewPayload = Payload & {
|
|
30482
30758
|
__typename?: 'ConfluenceUpdateSmartSpaceOverviewPayload';
|
|
@@ -30487,6 +30763,11 @@ export declare type ConfluenceUpdateSmartSpaceOverviewPayload = Payload & {
|
|
|
30487
30763
|
export declare type ConfluenceUpdateSmartSpaceOverviewSummaryInput = {
|
|
30488
30764
|
body?: InputMaybe<Scalars['String']['input']>;
|
|
30489
30765
|
};
|
|
30766
|
+
export declare type ConfluenceUpdateSmartSpaceOverviewTopLinksInput = {
|
|
30767
|
+
add?: InputMaybe<ConfluenceAddTopLinkInput>;
|
|
30768
|
+
edit?: InputMaybe<ConfluenceEditTopLinkInput>;
|
|
30769
|
+
remove?: InputMaybe<ConfluenceRemoveTopLinkInput>;
|
|
30770
|
+
};
|
|
30490
30771
|
export declare type ConfluenceUpdateSpaceInput = {
|
|
30491
30772
|
id: Scalars['ID']['input'];
|
|
30492
30773
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -30771,6 +31052,7 @@ export declare type ConfluenceWatermarkConfig = {
|
|
|
30771
31052
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
30772
31053
|
data?: Maybe<Scalars['String']['output']>;
|
|
30773
31054
|
entityAri: Scalars['String']['output'];
|
|
31055
|
+
hasAccess: Scalars['Boolean']['output'];
|
|
30774
31056
|
ownerAri?: Maybe<Scalars['String']['output']>;
|
|
30775
31057
|
settingKey: Scalars['String']['output'];
|
|
30776
31058
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -34553,6 +34835,7 @@ export declare type CreateInvitationUrlPayload = {
|
|
|
34553
34835
|
export declare type CreateJiraPlaybookInput = {
|
|
34554
34836
|
cloudId: Scalars['ID']['input'];
|
|
34555
34837
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
34838
|
+
isAiCreated?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34556
34839
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
34557
34840
|
name: Scalars['String']['input'];
|
|
34558
34841
|
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -38479,6 +38762,46 @@ export declare type DevConsoleAppResourceUsageGroupedResponse = {
|
|
|
38479
38762
|
resourceUsage: Array<DevConsoleResourceUsagePeriod>;
|
|
38480
38763
|
};
|
|
38481
38764
|
export declare type DevConsoleAppResourceUsageResponse = DevConsoleAppResourceUsageFlatResponse | DevConsoleAppResourceUsageGroupedResponse;
|
|
38765
|
+
export declare type DevConsoleAppTransferDestination = {
|
|
38766
|
+
__typename?: 'DevConsoleAppTransferDestination';
|
|
38767
|
+
approvedByUser: Scalars['String']['output'];
|
|
38768
|
+
developerSpaceId: Scalars['String']['output'];
|
|
38769
|
+
};
|
|
38770
|
+
export declare type DevConsoleAppTransferRecord = {
|
|
38771
|
+
__typename?: 'DevConsoleAppTransferRecord';
|
|
38772
|
+
appId: Scalars['String']['output'];
|
|
38773
|
+
ccpOrderId: Scalars['String']['output'];
|
|
38774
|
+
destination: DevConsoleAppTransferDestination;
|
|
38775
|
+
source: DevConsoleAppTransferSource;
|
|
38776
|
+
state: DevConsoleAppTransferStateInfo;
|
|
38777
|
+
};
|
|
38778
|
+
export declare type DevConsoleAppTransferSource = {
|
|
38779
|
+
__typename?: 'DevConsoleAppTransferSource';
|
|
38780
|
+
developerSpaceId: Scalars['String']['output'];
|
|
38781
|
+
initiatedBy: Scalars['String']['output'];
|
|
38782
|
+
};
|
|
38783
|
+
export declare enum DevConsoleAppTransferState {
|
|
38784
|
+
Completed = "COMPLETED",
|
|
38785
|
+
DestinationApproved = "DESTINATION_APPROVED",
|
|
38786
|
+
Failed = "FAILED",
|
|
38787
|
+
Initiated = "INITIATED"
|
|
38788
|
+
}
|
|
38789
|
+
export declare type DevConsoleAppTransferStateInfo = {
|
|
38790
|
+
__typename?: 'DevConsoleAppTransferStateInfo';
|
|
38791
|
+
attempt: Scalars['Int']['output'];
|
|
38792
|
+
current: DevConsoleAppTransferState;
|
|
38793
|
+
lastUpdatedAt: Scalars['String']['output'];
|
|
38794
|
+
};
|
|
38795
|
+
export declare type DevConsoleAppTransferStatusResponse = {
|
|
38796
|
+
__typename?: 'DevConsoleAppTransferStatusResponse';
|
|
38797
|
+
error?: Maybe<QueryError>;
|
|
38798
|
+
transfer?: Maybe<DevConsoleAppTransferRecord>;
|
|
38799
|
+
};
|
|
38800
|
+
export declare type DevConsoleAppTransfersResponse = {
|
|
38801
|
+
__typename?: 'DevConsoleAppTransfersResponse';
|
|
38802
|
+
error?: Maybe<QueryError>;
|
|
38803
|
+
transfers?: Maybe<Array<DevConsoleAppTransferRecord>>;
|
|
38804
|
+
};
|
|
38482
38805
|
export declare type DevConsoleAppUsageFiltersInput = {
|
|
38483
38806
|
interval: DevConsoleDateIntervalInput;
|
|
38484
38807
|
resource: Array<DevConsoleResource>;
|
|
@@ -38546,6 +38869,17 @@ export declare enum DevConsoleComputeType {
|
|
|
38546
38869
|
Async = "async",
|
|
38547
38870
|
Sync = "sync"
|
|
38548
38871
|
}
|
|
38872
|
+
export declare type DevConsoleCreateAppTransferInput = {
|
|
38873
|
+
appId: Scalars['String']['input'];
|
|
38874
|
+
destinationDeveloperSpaceId: Scalars['String']['input'];
|
|
38875
|
+
sourceDeveloperSpaceId: Scalars['String']['input'];
|
|
38876
|
+
};
|
|
38877
|
+
export declare type DevConsoleCreateAppTransferPayload = Payload & {
|
|
38878
|
+
__typename?: 'DevConsoleCreateAppTransferPayload';
|
|
38879
|
+
ccpOrderId?: Maybe<Scalars['String']['output']>;
|
|
38880
|
+
errors?: Maybe<Array<MutationError>>;
|
|
38881
|
+
success: Scalars['Boolean']['output'];
|
|
38882
|
+
};
|
|
38549
38883
|
export declare type DevConsoleCreateDeveloperSpaceInput = {
|
|
38550
38884
|
name: Scalars['String']['input'];
|
|
38551
38885
|
};
|
|
@@ -38703,6 +39037,7 @@ export declare type DevConsoleMutation = {
|
|
|
38703
39037
|
acceptAppBillingConsent?: Maybe<DevConsoleResponsePayload>;
|
|
38704
39038
|
archiveDeveloperSpace?: Maybe<DevConsoleResponsePayload>;
|
|
38705
39039
|
assignDeveloperSpace?: Maybe<DevConsoleAssignDeveloperSpacePayload>;
|
|
39040
|
+
createAppTransfer?: Maybe<DevConsoleCreateAppTransferPayload>;
|
|
38706
39041
|
createDeveloperSpace?: Maybe<DevConsoleDeveloperSpacePayload>;
|
|
38707
39042
|
publishDeveloperSpace?: Maybe<DevConsoleResponsePayload>;
|
|
38708
39043
|
updateDeveloperSpaceMemberRoles?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
@@ -38718,6 +39053,9 @@ export declare type DevConsoleMutationArchiveDeveloperSpaceArgs = {
|
|
|
38718
39053
|
export declare type DevConsoleMutationAssignDeveloperSpaceArgs = {
|
|
38719
39054
|
input: DevConsoleAssignDeveloperSpaceInput;
|
|
38720
39055
|
};
|
|
39056
|
+
export declare type DevConsoleMutationCreateAppTransferArgs = {
|
|
39057
|
+
input: DevConsoleCreateAppTransferInput;
|
|
39058
|
+
};
|
|
38721
39059
|
export declare type DevConsoleMutationCreateDeveloperSpaceArgs = {
|
|
38722
39060
|
input: DevConsoleCreateDeveloperSpaceInput;
|
|
38723
39061
|
};
|
|
@@ -38749,6 +39087,7 @@ export declare type DevConsoleQuery = {
|
|
|
38749
39087
|
downloadAppInstallations?: Maybe<DevConsoleDownloadAppInstallationsResponse>;
|
|
38750
39088
|
fetchDownloadAppInstallationsStatus?: Maybe<DevConsoleFetchDownloadAppInstallationsStatusResponse>;
|
|
38751
39089
|
getAppEnforcementMetadata?: Maybe<DevConsoleAppEnforcementMetadataResponse>;
|
|
39090
|
+
getAppTransferStatus?: Maybe<DevConsoleAppTransferStatusResponse>;
|
|
38752
39091
|
getAppsWithoutConsent?: Maybe<DevConsoleAppsWithoutConsentResponse>;
|
|
38753
39092
|
getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
|
|
38754
39093
|
getDeveloperSpaceEnforcementMetadata?: Maybe<DevConsoleDeveloperSpaceEnforcementMetadataResponse>;
|
|
@@ -38757,6 +39096,7 @@ export declare type DevConsoleQuery = {
|
|
|
38757
39096
|
getDeveloperSpaceUserPermissions?: Maybe<DevConsoleDeveloperSpaceUserPermissionsResponse>;
|
|
38758
39097
|
getDeveloperSpaceWithLinkingAccess?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
38759
39098
|
getDeveloperSpaceWithRoles?: Maybe<Array<DevConsoleDeveloperSpaceWithRole>>;
|
|
39099
|
+
getTransfersByAppId?: Maybe<DevConsoleAppTransfersResponse>;
|
|
38760
39100
|
hasAnyConsoleAdmin?: Maybe<DevConsoleHasConsoleAdminResponse>;
|
|
38761
39101
|
tenantContexts?: Maybe<Array<Maybe<DevConsoleTenantContext>>>;
|
|
38762
39102
|
};
|
|
@@ -38790,6 +39130,9 @@ export declare type DevConsoleQueryFetchDownloadAppInstallationsStatusArgs = {
|
|
|
38790
39130
|
export declare type DevConsoleQueryGetAppEnforcementMetadataArgs = {
|
|
38791
39131
|
appId: Scalars['ID']['input'];
|
|
38792
39132
|
};
|
|
39133
|
+
export declare type DevConsoleQueryGetAppTransferStatusArgs = {
|
|
39134
|
+
ccpOrderId: Scalars['String']['input'];
|
|
39135
|
+
};
|
|
38793
39136
|
export declare type DevConsoleQueryGetAppsWithoutConsentArgs = {
|
|
38794
39137
|
developerSpaceId: Scalars['String']['input'];
|
|
38795
39138
|
};
|
|
@@ -38808,6 +39151,10 @@ export declare type DevConsoleQueryGetDeveloperSpaceTransactionAccountArgs = {
|
|
|
38808
39151
|
export declare type DevConsoleQueryGetDeveloperSpaceUserPermissionsArgs = {
|
|
38809
39152
|
developerSpaceId: Scalars['String']['input'];
|
|
38810
39153
|
};
|
|
39154
|
+
export declare type DevConsoleQueryGetTransfersByAppIdArgs = {
|
|
39155
|
+
appId: Scalars['String']['input'];
|
|
39156
|
+
status: Array<InputMaybe<DevConsoleAppTransferState>>;
|
|
39157
|
+
};
|
|
38811
39158
|
export declare type DevConsoleQueryHasAnyConsoleAdminArgs = {
|
|
38812
39159
|
developerSpaceId: Scalars['String']['input'];
|
|
38813
39160
|
};
|
|
@@ -41723,6 +42070,10 @@ export declare type ExternalCommit = Node & {
|
|
|
41723
42070
|
export declare enum ExternalCommitFlags {
|
|
41724
42071
|
MergeCommit = "MERGE_COMMIT"
|
|
41725
42072
|
}
|
|
42073
|
+
export declare enum ExternalContentRepresentation {
|
|
42074
|
+
Base64 = "BASE64",
|
|
42075
|
+
Plaintext = "PLAINTEXT"
|
|
42076
|
+
}
|
|
41726
42077
|
export declare type ExternalContributor = {
|
|
41727
42078
|
__typename?: 'ExternalContributor';
|
|
41728
42079
|
interactionCount?: Maybe<Scalars['Long']['output']>;
|
|
@@ -41953,6 +42304,8 @@ export declare type ExternalCustomerOrgLifeTimeValue = {
|
|
|
41953
42304
|
export declare type ExternalDashboard = Node & {
|
|
41954
42305
|
__typename?: 'ExternalDashboard';
|
|
41955
42306
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
42307
|
+
container?: Maybe<ExternalEntity>;
|
|
42308
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
41956
42309
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
41957
42310
|
createdBy?: Maybe<ExternalUser>;
|
|
41958
42311
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -41964,6 +42317,8 @@ export declare type ExternalDashboard = Node & {
|
|
|
41964
42317
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
41965
42318
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
41966
42319
|
pages?: Maybe<Array<Maybe<ExternalDashboardPage>>>;
|
|
42320
|
+
parent?: Maybe<ExternalEntity>;
|
|
42321
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
41967
42322
|
provider?: Maybe<ExternalProvider>;
|
|
41968
42323
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
41969
42324
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
@@ -42364,6 +42719,7 @@ export declare type ExternalLargeContent = {
|
|
|
42364
42719
|
mediaTextUrl?: Maybe<Scalars['String']['output']>;
|
|
42365
42720
|
mediaThumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
42366
42721
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
42722
|
+
representation?: Maybe<ExternalContentRepresentation>;
|
|
42367
42723
|
};
|
|
42368
42724
|
export declare type ExternalLocation = {
|
|
42369
42725
|
__typename?: 'ExternalLocation';
|
|
@@ -44604,6 +44960,7 @@ export declare type GlobalSpaceIdentifier = {
|
|
|
44604
44960
|
spaceIdentifier?: Maybe<Scalars['String']['output']>;
|
|
44605
44961
|
};
|
|
44606
44962
|
export declare enum GrantCheckProduct {
|
|
44963
|
+
Assets = "ASSETS",
|
|
44607
44964
|
Compass = "COMPASS",
|
|
44608
44965
|
Confluence = "CONFLUENCE",
|
|
44609
44966
|
Feedback = "FEEDBACK",
|
|
@@ -45780,6 +46137,7 @@ export declare type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNo
|
|
|
45780
46137
|
description?: Maybe<Scalars['String']['output']>;
|
|
45781
46138
|
displayName: Scalars['String']['output'];
|
|
45782
46139
|
documentationUrl?: Maybe<Scalars['String']['output']>;
|
|
46140
|
+
extraInputs: Array<GraphIntegrationMcpAdminManagementMcpServerExtraInput>;
|
|
45783
46141
|
iconKey?: Maybe<Scalars['String']['output']>;
|
|
45784
46142
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
45785
46143
|
isInstalled: Scalars['Boolean']['output'];
|
|
@@ -45798,6 +46156,14 @@ export declare type GraphIntegrationMcpAdminManagementMcpServerEdge = {
|
|
|
45798
46156
|
cursor: Scalars['String']['output'];
|
|
45799
46157
|
node?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
|
|
45800
46158
|
};
|
|
46159
|
+
export declare type GraphIntegrationMcpAdminManagementMcpServerExtraInput = {
|
|
46160
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerExtraInput';
|
|
46161
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
46162
|
+
displayName: Scalars['String']['output'];
|
|
46163
|
+
key: Scalars['String']['output'];
|
|
46164
|
+
required: Scalars['Boolean']['output'];
|
|
46165
|
+
validationPattern?: Maybe<Scalars['String']['output']>;
|
|
46166
|
+
};
|
|
45801
46167
|
export declare type GraphIntegrationMcpAdminManagementMcpServerMetaData = {
|
|
45802
46168
|
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerMetaData';
|
|
45803
46169
|
iconKey: Scalars['String']['output'];
|
|
@@ -48899,6 +49265,8 @@ export declare type GraphStore = {
|
|
|
48899
49265
|
atlassianUserDismissedJiraForYouRecommendationEntityBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
48900
49266
|
atlassianUserDismissedJiraForYouRecommendationEntityInverse?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection>;
|
|
48901
49267
|
atlassianUserDismissedJiraForYouRecommendationEntityInverseBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
49268
|
+
atlassianUserFollowsAtlassianHomeTag?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagConnection>;
|
|
49269
|
+
atlassianUserFollowsAtlassianHomeTagInverse?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection>;
|
|
48902
49270
|
atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
48903
49271
|
atlassianUserInvitedToLoomMeetingBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
|
|
48904
49272
|
atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
@@ -48921,6 +49289,7 @@ export declare type GraphStore = {
|
|
|
48921
49289
|
atlassianUserOwnsExternalTestRunInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunInverseConnection>;
|
|
48922
49290
|
atlassianUserOwnsExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusConnection>;
|
|
48923
49291
|
atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
|
|
49292
|
+
atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
|
|
48924
49293
|
atlassianUserUpdatedExternalCustomerContact?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection>;
|
|
48925
49294
|
atlassianUserUpdatedExternalCustomerContactInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseConnection>;
|
|
48926
49295
|
atlassianUserUpdatedExternalCustomerOrgCategory?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryConnection>;
|
|
@@ -49131,6 +49500,7 @@ export declare type GraphStore = {
|
|
|
49131
49500
|
incidentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullIncidentLinkedJswIssueConnection>;
|
|
49132
49501
|
incidentLinkedJswIssueRelationship?: Maybe<GraphStoreFullIncidentLinkedJswIssueConnection>;
|
|
49133
49502
|
inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
|
|
49503
|
+
inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
49134
49504
|
issueAssociatedBranch?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchConnection>;
|
|
49135
49505
|
issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
|
|
49136
49506
|
issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
@@ -49430,6 +49800,12 @@ export declare type GraphStore = {
|
|
|
49430
49800
|
riskHasProjectInverseBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
|
|
49431
49801
|
scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
|
|
49432
49802
|
scorecardHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection>;
|
|
49803
|
+
secodaDownstreamLineageBatch?: Maybe<GraphStoreBatchSecodaDownstreamLineageConnection>;
|
|
49804
|
+
secodaDownstreamLineageInverseBatch?: Maybe<GraphStoreBatchSecodaDownstreamLineageConnection>;
|
|
49805
|
+
secodaSourceLineageBatch?: Maybe<GraphStoreBatchSecodaSourceLineageConnection>;
|
|
49806
|
+
secodaSourceLineageInverseBatch?: Maybe<GraphStoreBatchSecodaSourceLineageConnection>;
|
|
49807
|
+
secodaTargetLineageBatch?: Maybe<GraphStoreBatchSecodaTargetLineageConnection>;
|
|
49808
|
+
secodaTargetLineageInverseBatch?: Maybe<GraphStoreBatchSecodaTargetLineageConnection>;
|
|
49433
49809
|
securityContainerAssociatedToVulnerability?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
49434
49810
|
securityContainerAssociatedToVulnerabilityBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
49435
49811
|
securityContainerAssociatedToVulnerabilityInverse?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityInverseConnection>;
|
|
@@ -50519,6 +50895,22 @@ export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEnti
|
|
|
50519
50895
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50520
50896
|
sort?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortInput>;
|
|
50521
50897
|
};
|
|
50898
|
+
export declare type GraphStoreAtlassianUserFollowsAtlassianHomeTagArgs = {
|
|
50899
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
50900
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50901
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50902
|
+
id: Scalars['ID']['input'];
|
|
50903
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50904
|
+
sort?: InputMaybe<GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
50905
|
+
};
|
|
50906
|
+
export declare type GraphStoreAtlassianUserFollowsAtlassianHomeTagInverseArgs = {
|
|
50907
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
50908
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50909
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50910
|
+
id: Scalars['ID']['input'];
|
|
50911
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50912
|
+
sort?: InputMaybe<GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
50913
|
+
};
|
|
50522
50914
|
export declare type GraphStoreAtlassianUserInvitedToLoomMeetingArgs = {
|
|
50523
50915
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
50524
50916
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -50693,6 +51085,14 @@ export declare type GraphStoreAtlassianUserOwnsExternalTestStatusInverseArgs = {
|
|
|
50693
51085
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50694
51086
|
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTestStatusSortInput>;
|
|
50695
51087
|
};
|
|
51088
|
+
export declare type GraphStoreAtlassianUserOwnsInferredProjectInverseArgs = {
|
|
51089
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51090
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51091
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51092
|
+
id: Scalars['ID']['input'];
|
|
51093
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51094
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsInferredProjectSortInput>;
|
|
51095
|
+
};
|
|
50696
51096
|
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerContactArgs = {
|
|
50697
51097
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
50698
51098
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52309,6 +52709,14 @@ export declare type GraphStoreInferredProjectLinksEntityArgs = {
|
|
|
52309
52709
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52310
52710
|
sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
|
|
52311
52711
|
};
|
|
52712
|
+
export declare type GraphStoreInferredTeamCollaboratesOnInferredProjectInverseArgs = {
|
|
52713
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52714
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52715
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52716
|
+
id: Scalars['ID']['input'];
|
|
52717
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52718
|
+
sort?: InputMaybe<GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput>;
|
|
52719
|
+
};
|
|
52312
52720
|
export declare type GraphStoreIssueAssociatedBranchArgs = {
|
|
52313
52721
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52314
52722
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -54557,6 +54965,48 @@ export declare type GraphStoreScorecardHasAtlasGoalInverseArgs = {
|
|
|
54557
54965
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54558
54966
|
sort?: InputMaybe<GraphStoreScorecardHasAtlasGoalSortInput>;
|
|
54559
54967
|
};
|
|
54968
|
+
export declare type GraphStoreSecodaDownstreamLineageBatchArgs = {
|
|
54969
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54970
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54971
|
+
ids: Array<Scalars['ID']['input']>;
|
|
54972
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54973
|
+
sort?: InputMaybe<GraphStoreSecodaDownstreamLineageSortInput>;
|
|
54974
|
+
};
|
|
54975
|
+
export declare type GraphStoreSecodaDownstreamLineageInverseBatchArgs = {
|
|
54976
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54977
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54978
|
+
ids: Array<Scalars['ID']['input']>;
|
|
54979
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54980
|
+
sort?: InputMaybe<GraphStoreSecodaDownstreamLineageSortInput>;
|
|
54981
|
+
};
|
|
54982
|
+
export declare type GraphStoreSecodaSourceLineageBatchArgs = {
|
|
54983
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54984
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54985
|
+
ids: Array<Scalars['ID']['input']>;
|
|
54986
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54987
|
+
sort?: InputMaybe<GraphStoreSecodaSourceLineageSortInput>;
|
|
54988
|
+
};
|
|
54989
|
+
export declare type GraphStoreSecodaSourceLineageInverseBatchArgs = {
|
|
54990
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54991
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54992
|
+
ids: Array<Scalars['ID']['input']>;
|
|
54993
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54994
|
+
sort?: InputMaybe<GraphStoreSecodaSourceLineageSortInput>;
|
|
54995
|
+
};
|
|
54996
|
+
export declare type GraphStoreSecodaTargetLineageBatchArgs = {
|
|
54997
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54998
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54999
|
+
ids: Array<Scalars['ID']['input']>;
|
|
55000
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55001
|
+
sort?: InputMaybe<GraphStoreSecodaTargetLineageSortInput>;
|
|
55002
|
+
};
|
|
55003
|
+
export declare type GraphStoreSecodaTargetLineageInverseBatchArgs = {
|
|
55004
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55005
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55006
|
+
ids: Array<Scalars['ID']['input']>;
|
|
55007
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55008
|
+
sort?: InputMaybe<GraphStoreSecodaTargetLineageSortInput>;
|
|
55009
|
+
};
|
|
54560
55010
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityArgs = {
|
|
54561
55011
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54562
55012
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -58147,6 +58597,9 @@ export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEnti
|
|
|
58147
58597
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
58148
58598
|
to_dismissedCategories?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalSortInput>;
|
|
58149
58599
|
};
|
|
58600
|
+
export declare type GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput = {
|
|
58601
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58602
|
+
};
|
|
58150
58603
|
export declare type GraphStoreAtlassianUserInvitedToLoomMeetingSortInput = {
|
|
58151
58604
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58152
58605
|
};
|
|
@@ -58177,6 +58630,9 @@ export declare type GraphStoreAtlassianUserOwnsExternalTestRunSortInput = {
|
|
|
58177
58630
|
export declare type GraphStoreAtlassianUserOwnsExternalTestStatusSortInput = {
|
|
58178
58631
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58179
58632
|
};
|
|
58633
|
+
export declare type GraphStoreAtlassianUserOwnsInferredProjectSortInput = {
|
|
58634
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58635
|
+
};
|
|
58180
58636
|
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerContactSortInput = {
|
|
58181
58637
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58182
58638
|
};
|
|
@@ -59362,7 +59818,7 @@ export declare type GraphStoreBatchProjectLinksToEntityEndNode = {
|
|
|
59362
59818
|
data?: Maybe<GraphStoreBatchProjectLinksToEntityEndUnion>;
|
|
59363
59819
|
id: Scalars['ID']['output'];
|
|
59364
59820
|
};
|
|
59365
|
-
export declare type GraphStoreBatchProjectLinksToEntityEndUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomSpace | LoomVideo;
|
|
59821
|
+
export declare type GraphStoreBatchProjectLinksToEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
59366
59822
|
export declare type GraphStoreBatchProjectLinksToEntityInnerConnection = {
|
|
59367
59823
|
__typename?: 'GraphStoreBatchProjectLinksToEntityInnerConnection';
|
|
59368
59824
|
edges: Array<Maybe<GraphStoreBatchProjectLinksToEntityInnerEdge>>;
|
|
@@ -59429,6 +59885,117 @@ export declare type GraphStoreBatchRiskHasProjectStartNode = {
|
|
|
59429
59885
|
id: Scalars['ID']['output'];
|
|
59430
59886
|
};
|
|
59431
59887
|
export declare type GraphStoreBatchRiskHasProjectStartUnion = MercuryRisk;
|
|
59888
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageConnection = HasPageInfo & {
|
|
59889
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageConnection';
|
|
59890
|
+
edges: Array<Maybe<GraphStoreBatchSecodaDownstreamLineageEdge>>;
|
|
59891
|
+
nodes: Array<Maybe<GraphStoreBatchSecodaDownstreamLineageNode>>;
|
|
59892
|
+
pageInfo: PageInfo;
|
|
59893
|
+
};
|
|
59894
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageEdge = {
|
|
59895
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageEdge';
|
|
59896
|
+
node: GraphStoreBatchSecodaDownstreamLineageInnerConnection;
|
|
59897
|
+
};
|
|
59898
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageEndNode = {
|
|
59899
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageEndNode';
|
|
59900
|
+
id: Scalars['ID']['output'];
|
|
59901
|
+
};
|
|
59902
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageInnerConnection = {
|
|
59903
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageInnerConnection';
|
|
59904
|
+
edges: Array<Maybe<GraphStoreBatchSecodaDownstreamLineageInnerEdge>>;
|
|
59905
|
+
nodes: Array<Maybe<GraphStoreBatchSecodaDownstreamLineageNode>>;
|
|
59906
|
+
requestedId: Scalars['ID']['output'];
|
|
59907
|
+
};
|
|
59908
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageInnerEdge = {
|
|
59909
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageInnerEdge';
|
|
59910
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
59911
|
+
node: GraphStoreBatchSecodaDownstreamLineageNode;
|
|
59912
|
+
};
|
|
59913
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageNode = Node & {
|
|
59914
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageNode';
|
|
59915
|
+
createdAt: Scalars['DateTime']['output'];
|
|
59916
|
+
from: GraphStoreBatchSecodaDownstreamLineageStartNode;
|
|
59917
|
+
id: Scalars['ID']['output'];
|
|
59918
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
59919
|
+
to: GraphStoreBatchSecodaDownstreamLineageEndNode;
|
|
59920
|
+
};
|
|
59921
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageStartNode = {
|
|
59922
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageStartNode';
|
|
59923
|
+
id: Scalars['ID']['output'];
|
|
59924
|
+
};
|
|
59925
|
+
export declare type GraphStoreBatchSecodaSourceLineageConnection = HasPageInfo & {
|
|
59926
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageConnection';
|
|
59927
|
+
edges: Array<Maybe<GraphStoreBatchSecodaSourceLineageEdge>>;
|
|
59928
|
+
nodes: Array<Maybe<GraphStoreBatchSecodaSourceLineageNode>>;
|
|
59929
|
+
pageInfo: PageInfo;
|
|
59930
|
+
};
|
|
59931
|
+
export declare type GraphStoreBatchSecodaSourceLineageEdge = {
|
|
59932
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageEdge';
|
|
59933
|
+
node: GraphStoreBatchSecodaSourceLineageInnerConnection;
|
|
59934
|
+
};
|
|
59935
|
+
export declare type GraphStoreBatchSecodaSourceLineageEndNode = {
|
|
59936
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageEndNode';
|
|
59937
|
+
id: Scalars['ID']['output'];
|
|
59938
|
+
};
|
|
59939
|
+
export declare type GraphStoreBatchSecodaSourceLineageInnerConnection = {
|
|
59940
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageInnerConnection';
|
|
59941
|
+
edges: Array<Maybe<GraphStoreBatchSecodaSourceLineageInnerEdge>>;
|
|
59942
|
+
nodes: Array<Maybe<GraphStoreBatchSecodaSourceLineageNode>>;
|
|
59943
|
+
requestedId: Scalars['ID']['output'];
|
|
59944
|
+
};
|
|
59945
|
+
export declare type GraphStoreBatchSecodaSourceLineageInnerEdge = {
|
|
59946
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageInnerEdge';
|
|
59947
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
59948
|
+
node: GraphStoreBatchSecodaSourceLineageNode;
|
|
59949
|
+
};
|
|
59950
|
+
export declare type GraphStoreBatchSecodaSourceLineageNode = Node & {
|
|
59951
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageNode';
|
|
59952
|
+
createdAt: Scalars['DateTime']['output'];
|
|
59953
|
+
from: GraphStoreBatchSecodaSourceLineageStartNode;
|
|
59954
|
+
id: Scalars['ID']['output'];
|
|
59955
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
59956
|
+
to: GraphStoreBatchSecodaSourceLineageEndNode;
|
|
59957
|
+
};
|
|
59958
|
+
export declare type GraphStoreBatchSecodaSourceLineageStartNode = {
|
|
59959
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageStartNode';
|
|
59960
|
+
id: Scalars['ID']['output'];
|
|
59961
|
+
};
|
|
59962
|
+
export declare type GraphStoreBatchSecodaTargetLineageConnection = HasPageInfo & {
|
|
59963
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageConnection';
|
|
59964
|
+
edges: Array<Maybe<GraphStoreBatchSecodaTargetLineageEdge>>;
|
|
59965
|
+
nodes: Array<Maybe<GraphStoreBatchSecodaTargetLineageNode>>;
|
|
59966
|
+
pageInfo: PageInfo;
|
|
59967
|
+
};
|
|
59968
|
+
export declare type GraphStoreBatchSecodaTargetLineageEdge = {
|
|
59969
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageEdge';
|
|
59970
|
+
node: GraphStoreBatchSecodaTargetLineageInnerConnection;
|
|
59971
|
+
};
|
|
59972
|
+
export declare type GraphStoreBatchSecodaTargetLineageEndNode = {
|
|
59973
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageEndNode';
|
|
59974
|
+
id: Scalars['ID']['output'];
|
|
59975
|
+
};
|
|
59976
|
+
export declare type GraphStoreBatchSecodaTargetLineageInnerConnection = {
|
|
59977
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageInnerConnection';
|
|
59978
|
+
edges: Array<Maybe<GraphStoreBatchSecodaTargetLineageInnerEdge>>;
|
|
59979
|
+
nodes: Array<Maybe<GraphStoreBatchSecodaTargetLineageNode>>;
|
|
59980
|
+
requestedId: Scalars['ID']['output'];
|
|
59981
|
+
};
|
|
59982
|
+
export declare type GraphStoreBatchSecodaTargetLineageInnerEdge = {
|
|
59983
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageInnerEdge';
|
|
59984
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
59985
|
+
node: GraphStoreBatchSecodaTargetLineageNode;
|
|
59986
|
+
};
|
|
59987
|
+
export declare type GraphStoreBatchSecodaTargetLineageNode = Node & {
|
|
59988
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageNode';
|
|
59989
|
+
createdAt: Scalars['DateTime']['output'];
|
|
59990
|
+
from: GraphStoreBatchSecodaTargetLineageStartNode;
|
|
59991
|
+
id: Scalars['ID']['output'];
|
|
59992
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
59993
|
+
to: GraphStoreBatchSecodaTargetLineageEndNode;
|
|
59994
|
+
};
|
|
59995
|
+
export declare type GraphStoreBatchSecodaTargetLineageStartNode = {
|
|
59996
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageStartNode';
|
|
59997
|
+
id: Scalars['ID']['output'];
|
|
59998
|
+
};
|
|
59432
59999
|
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
|
|
59433
60000
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection';
|
|
59434
60001
|
edges: Array<Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEdge>>;
|
|
@@ -64634,6 +65201,9 @@ export declare type GraphStoreIncidentLinkedJswIssueSortInput = {
|
|
|
64634
65201
|
export declare type GraphStoreInferredProjectLinksEntitySortInput = {
|
|
64635
65202
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
64636
65203
|
};
|
|
65204
|
+
export declare type GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput = {
|
|
65205
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65206
|
+
};
|
|
64637
65207
|
export declare type GraphStoreIntFilterInput = {
|
|
64638
65208
|
greaterThan?: InputMaybe<Scalars['Int']['input']>;
|
|
64639
65209
|
greaterThanOrEqual?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -65870,6 +66440,15 @@ export declare type GraphStoreRiskHasProjectSortInput = {
|
|
|
65870
66440
|
export declare type GraphStoreScorecardHasAtlasGoalSortInput = {
|
|
65871
66441
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65872
66442
|
};
|
|
66443
|
+
export declare type GraphStoreSecodaDownstreamLineageSortInput = {
|
|
66444
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66445
|
+
};
|
|
66446
|
+
export declare type GraphStoreSecodaSourceLineageSortInput = {
|
|
66447
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66448
|
+
};
|
|
66449
|
+
export declare type GraphStoreSecodaTargetLineageSortInput = {
|
|
66450
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66451
|
+
};
|
|
65873
66452
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput = {
|
|
65874
66453
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65875
66454
|
};
|
|
@@ -66966,6 +67545,34 @@ export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommen
|
|
|
66966
67545
|
};
|
|
66967
67546
|
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
66968
67547
|
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityUnion = DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
|
|
67548
|
+
export declare type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagConnection = HasPageInfo & {
|
|
67549
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagConnection';
|
|
67550
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagEdge>>>;
|
|
67551
|
+
pageInfo: PageInfo;
|
|
67552
|
+
};
|
|
67553
|
+
export declare type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagEdge = {
|
|
67554
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagEdge';
|
|
67555
|
+
createdAt: Scalars['DateTime']['output'];
|
|
67556
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
67557
|
+
id: Scalars['ID']['output'];
|
|
67558
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
67559
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagUnion>;
|
|
67560
|
+
};
|
|
67561
|
+
export declare type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection = HasPageInfo & {
|
|
67562
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection';
|
|
67563
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge>>>;
|
|
67564
|
+
pageInfo: PageInfo;
|
|
67565
|
+
};
|
|
67566
|
+
export declare type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge = {
|
|
67567
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge';
|
|
67568
|
+
createdAt: Scalars['DateTime']['output'];
|
|
67569
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
67570
|
+
id: Scalars['ID']['output'];
|
|
67571
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
67572
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseUnion>;
|
|
67573
|
+
};
|
|
67574
|
+
export declare type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
67575
|
+
export declare type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagUnion = TownsquareTag;
|
|
66969
67576
|
export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection = HasPageInfo & {
|
|
66970
67577
|
__typename?: 'GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection';
|
|
66971
67578
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingEdge>>>;
|
|
@@ -67246,6 +67853,20 @@ export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInver
|
|
|
67246
67853
|
};
|
|
67247
67854
|
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
67248
67855
|
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusUnion = ExternalTestStatus;
|
|
67856
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection = HasPageInfo & {
|
|
67857
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection';
|
|
67858
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseEdge>>>;
|
|
67859
|
+
pageInfo: PageInfo;
|
|
67860
|
+
};
|
|
67861
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseEdge = {
|
|
67862
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseEdge';
|
|
67863
|
+
createdAt: Scalars['DateTime']['output'];
|
|
67864
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
67865
|
+
id: Scalars['ID']['output'];
|
|
67866
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
67867
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion>;
|
|
67868
|
+
};
|
|
67869
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
67249
67870
|
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection = HasPageInfo & {
|
|
67250
67871
|
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection';
|
|
67251
67872
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactEdge>>>;
|
|
@@ -69546,6 +70167,20 @@ export declare type GraphStoreSimplifiedInferredProjectLinksEntityEdge = {
|
|
|
69546
70167
|
node?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityUnion>;
|
|
69547
70168
|
};
|
|
69548
70169
|
export declare type GraphStoreSimplifiedInferredProjectLinksEntityUnion = JiraIssue | JiraProject;
|
|
70170
|
+
export declare type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
|
|
70171
|
+
__typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection';
|
|
70172
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge>>>;
|
|
70173
|
+
pageInfo: PageInfo;
|
|
70174
|
+
};
|
|
70175
|
+
export declare type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge = {
|
|
70176
|
+
__typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge';
|
|
70177
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70178
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70179
|
+
id: Scalars['ID']['output'];
|
|
70180
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70181
|
+
node?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion>;
|
|
70182
|
+
};
|
|
70183
|
+
export declare type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = JiraProject;
|
|
69549
70184
|
export declare type GraphStoreSimplifiedIssueAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
69550
70185
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchConnection';
|
|
69551
70186
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBranchEdge>>>;
|
|
@@ -72187,7 +72822,7 @@ export declare type GraphStoreSimplifiedProjectLinksToEntityInverseEdge = {
|
|
|
72187
72822
|
node?: Maybe<GraphStoreSimplifiedProjectLinksToEntityInverseUnion>;
|
|
72188
72823
|
};
|
|
72189
72824
|
export declare type GraphStoreSimplifiedProjectLinksToEntityInverseUnion = TownsquareProject;
|
|
72190
|
-
export declare type GraphStoreSimplifiedProjectLinksToEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomSpace | LoomVideo;
|
|
72825
|
+
export declare type GraphStoreSimplifiedProjectLinksToEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
72191
72826
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceConnection = HasPageInfo & {
|
|
72192
72827
|
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceConnection';
|
|
72193
72828
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceEdge>>>;
|
|
@@ -78425,6 +79060,8 @@ export declare type GraphStoreV2 = {
|
|
|
78425
79060
|
atlassianProjectHasAtlassianProjectUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianProjectHasAtlassianProjectUpdateConnection>;
|
|
78426
79061
|
atlassianProjectHasAtlassianProjectUpdateInverse?: Maybe<GraphStoreV2SimplifiedAtlassianProjectHasAtlassianProjectUpdateInverseConnection>;
|
|
78427
79062
|
atlassianProjectLinksAtlassianProject?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectConnection>;
|
|
79063
|
+
atlassianProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityConnection>;
|
|
79064
|
+
atlassianProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseConnection>;
|
|
78428
79065
|
atlassianTeamAssignedJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection>;
|
|
78429
79066
|
atlassianTeamAssignedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemInverseConnection>;
|
|
78430
79067
|
atlassianTeamContributesToAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalConnection>;
|
|
@@ -78459,6 +79096,7 @@ export declare type GraphStoreV2 = {
|
|
|
78459
79096
|
atlassianUserAuthoritativelyLinkedExternalUserInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserAuthoritativelyLinkedExternalUserInverseConnection>;
|
|
78460
79097
|
atlassianUserCanViewConfluenceSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceConnection>;
|
|
78461
79098
|
atlassianUserCanViewConfluenceSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInverseConnection>;
|
|
79099
|
+
atlassianUserCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection>;
|
|
78462
79100
|
atlassianUserContributedToConfluenceBlogpost?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection>;
|
|
78463
79101
|
atlassianUserContributedToConfluenceBlogpostInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostInverseConnection>;
|
|
78464
79102
|
atlassianUserContributedToConfluenceDatabase?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceDatabaseConnection>;
|
|
@@ -78535,6 +79173,8 @@ export declare type GraphStoreV2 = {
|
|
|
78535
79173
|
atlassianUserFavoritedFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedFocusFocusAreaInverseConnection>;
|
|
78536
79174
|
atlassianUserFollowsAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianGoalConnection>;
|
|
78537
79175
|
atlassianUserFollowsAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianGoalInverseConnection>;
|
|
79176
|
+
atlassianUserFollowsAtlassianHomeTag?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagConnection>;
|
|
79177
|
+
atlassianUserFollowsAtlassianHomeTagInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection>;
|
|
78538
79178
|
atlassianUserFollowsAtlassianProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianProjectConnection>;
|
|
78539
79179
|
atlassianUserFollowsAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianProjectInverseConnection>;
|
|
78540
79180
|
atlassianUserHasConfluenceMeetingNotesFolder?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasConfluenceMeetingNotesFolderConnection>;
|
|
@@ -78547,7 +79187,6 @@ export declare type GraphStoreV2 = {
|
|
|
78547
79187
|
atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
78548
79188
|
atlassianUserIsInAtlassianTeam?: Maybe<GraphStoreV2SimplifiedAtlassianUserIsInAtlassianTeamConnection>;
|
|
78549
79189
|
atlassianUserIsInAtlassianTeamInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserIsInAtlassianTeamInverseConnection>;
|
|
78550
|
-
atlassianUserIsInInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserIsInInferredProjectInverseConnection>;
|
|
78551
79190
|
atlassianUserLaunchedJiraRelease?: Maybe<GraphStoreV2SimplifiedAtlassianUserLaunchedJiraReleaseConnection>;
|
|
78552
79191
|
atlassianUserLaunchedJiraReleaseInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserLaunchedJiraReleaseInverseConnection>;
|
|
78553
79192
|
atlassianUserLikedConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserLikedConfluencePageConnection>;
|
|
@@ -78584,6 +79223,7 @@ export declare type GraphStoreV2 = {
|
|
|
78584
79223
|
atlassianUserOwnsFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaInverseConnection>;
|
|
78585
79224
|
atlassianUserOwnsFocusStrategicPlan?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanConnection>;
|
|
78586
79225
|
atlassianUserOwnsFocusStrategicPlanInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseConnection>;
|
|
79226
|
+
atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
|
|
78587
79227
|
atlassianUserReactedToJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection>;
|
|
78588
79228
|
atlassianUserReactedToJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentInverseConnection>;
|
|
78589
79229
|
atlassianUserReactedToLoomVideo?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToLoomVideoConnection>;
|
|
@@ -78955,6 +79595,7 @@ export declare type GraphStoreV2 = {
|
|
|
78955
79595
|
focusStrategicPlanScenarioInvestmentHasInvestmentEntity?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityConnection>;
|
|
78956
79596
|
focusStrategicPlanScenarioInvestmentHasInvestmentEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityInverseConnection>;
|
|
78957
79597
|
inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
|
|
79598
|
+
inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
78958
79599
|
jiraEpicTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection>;
|
|
78959
79600
|
jiraEpicTracksAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectInverseConnection>;
|
|
78960
79601
|
jiraSpaceExplicitlyLinksExternalRepository?: Maybe<GraphStoreV2SimplifiedJiraSpaceExplicitlyLinksExternalRepositoryConnection>;
|
|
@@ -79059,8 +79700,8 @@ export declare type GraphStoreV2 = {
|
|
|
79059
79700
|
jiraWorkItemHasJiraPriorityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraPriorityInverseConnection>;
|
|
79060
79701
|
jiraWorkItemHasJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentConnection>;
|
|
79061
79702
|
jiraWorkItemHasJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseConnection>;
|
|
79062
|
-
|
|
79063
|
-
|
|
79703
|
+
jiraWorkItemLinksAssetsObject?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection>;
|
|
79704
|
+
jiraWorkItemLinksAssetsObjectInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseConnection>;
|
|
79064
79705
|
jiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection>;
|
|
79065
79706
|
jiraWorkItemLinksConfluenceWhiteboardInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardInverseConnection>;
|
|
79066
79707
|
jiraWorkItemLinksExternalBranch?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalBranchConnection>;
|
|
@@ -79304,6 +79945,20 @@ export declare type GraphStoreV2AtlassianProjectLinksAtlassianProjectArgs = {
|
|
|
79304
79945
|
id: Scalars['ID']['input'];
|
|
79305
79946
|
sort?: InputMaybe<GraphStoreV2AtlassianProjectLinksAtlassianProjectSortInput>;
|
|
79306
79947
|
};
|
|
79948
|
+
export declare type GraphStoreV2AtlassianProjectLinksEntityArgs = {
|
|
79949
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
79950
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
79951
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79952
|
+
id: Scalars['ID']['input'];
|
|
79953
|
+
sort?: InputMaybe<GraphStoreV2AtlassianProjectLinksEntitySortInput>;
|
|
79954
|
+
};
|
|
79955
|
+
export declare type GraphStoreV2AtlassianProjectLinksEntityInverseArgs = {
|
|
79956
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
79957
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
79958
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79959
|
+
id: Scalars['ID']['input'];
|
|
79960
|
+
sort?: InputMaybe<GraphStoreV2AtlassianProjectLinksEntitySortInput>;
|
|
79961
|
+
};
|
|
79307
79962
|
export declare type GraphStoreV2AtlassianTeamAssignedJiraWorkItemArgs = {
|
|
79308
79963
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
79309
79964
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -79544,6 +80199,13 @@ export declare type GraphStoreV2AtlassianUserCanViewConfluenceSpaceInverseArgs =
|
|
|
79544
80199
|
id: Scalars['ID']['input'];
|
|
79545
80200
|
sort?: InputMaybe<GraphStoreV2AtlassianUserCanViewConfluenceSpaceSortInput>;
|
|
79546
80201
|
};
|
|
80202
|
+
export declare type GraphStoreV2AtlassianUserCollaboratesOnInferredProjectInverseArgs = {
|
|
80203
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80204
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80205
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80206
|
+
id: Scalars['ID']['input'];
|
|
80207
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserCollaboratesOnInferredProjectSortInput>;
|
|
80208
|
+
};
|
|
79547
80209
|
export declare type GraphStoreV2AtlassianUserContributedToConfluenceBlogpostArgs = {
|
|
79548
80210
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
79549
80211
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -80078,6 +80740,20 @@ export declare type GraphStoreV2AtlassianUserFollowsAtlassianGoalInverseArgs = {
|
|
|
80078
80740
|
id: Scalars['ID']['input'];
|
|
80079
80741
|
sort?: InputMaybe<GraphStoreV2AtlassianUserFollowsAtlassianGoalSortInput>;
|
|
80080
80742
|
};
|
|
80743
|
+
export declare type GraphStoreV2AtlassianUserFollowsAtlassianHomeTagArgs = {
|
|
80744
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80745
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80746
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80747
|
+
id: Scalars['ID']['input'];
|
|
80748
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
80749
|
+
};
|
|
80750
|
+
export declare type GraphStoreV2AtlassianUserFollowsAtlassianHomeTagInverseArgs = {
|
|
80751
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80752
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80753
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80754
|
+
id: Scalars['ID']['input'];
|
|
80755
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
80756
|
+
};
|
|
80081
80757
|
export declare type GraphStoreV2AtlassianUserFollowsAtlassianProjectArgs = {
|
|
80082
80758
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80083
80759
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -80162,13 +80838,6 @@ export declare type GraphStoreV2AtlassianUserIsInAtlassianTeamInverseArgs = {
|
|
|
80162
80838
|
id: Scalars['ID']['input'];
|
|
80163
80839
|
sort?: InputMaybe<GraphStoreV2AtlassianUserIsInAtlassianTeamSortInput>;
|
|
80164
80840
|
};
|
|
80165
|
-
export declare type GraphStoreV2AtlassianUserIsInInferredProjectInverseArgs = {
|
|
80166
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
80167
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80168
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80169
|
-
id: Scalars['ID']['input'];
|
|
80170
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserIsInInferredProjectSortInput>;
|
|
80171
|
-
};
|
|
80172
80841
|
export declare type GraphStoreV2AtlassianUserLaunchedJiraReleaseArgs = {
|
|
80173
80842
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80174
80843
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -80425,6 +81094,13 @@ export declare type GraphStoreV2AtlassianUserOwnsFocusStrategicPlanInverseArgs =
|
|
|
80425
81094
|
id: Scalars['ID']['input'];
|
|
80426
81095
|
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsFocusStrategicPlanSortInput>;
|
|
80427
81096
|
};
|
|
81097
|
+
export declare type GraphStoreV2AtlassianUserOwnsInferredProjectInverseArgs = {
|
|
81098
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81099
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81100
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81101
|
+
id: Scalars['ID']['input'];
|
|
81102
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsInferredProjectSortInput>;
|
|
81103
|
+
};
|
|
80428
81104
|
export declare type GraphStoreV2AtlassianUserReactedToJiraWorkItemCommentArgs = {
|
|
80429
81105
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80430
81106
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -83029,6 +83705,13 @@ export declare type GraphStoreV2InferredProjectLinksEntityArgs = {
|
|
|
83029
83705
|
id: Scalars['ID']['input'];
|
|
83030
83706
|
sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
|
|
83031
83707
|
};
|
|
83708
|
+
export declare type GraphStoreV2InferredTeamCollaboratesOnInferredProjectInverseArgs = {
|
|
83709
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
83710
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83711
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83712
|
+
id: Scalars['ID']['input'];
|
|
83713
|
+
sort?: InputMaybe<GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput>;
|
|
83714
|
+
};
|
|
83032
83715
|
export declare type GraphStoreV2JiraEpicTracksAtlassianProjectArgs = {
|
|
83033
83716
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
83034
83717
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -83789,19 +84472,19 @@ export declare type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentInverseArgs =
|
|
|
83789
84472
|
id: Scalars['ID']['input'];
|
|
83790
84473
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput>;
|
|
83791
84474
|
};
|
|
83792
|
-
export declare type
|
|
84475
|
+
export declare type GraphStoreV2JiraWorkItemLinksAssetsObjectArgs = {
|
|
83793
84476
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
83794
84477
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83795
84478
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83796
84479
|
id: Scalars['ID']['input'];
|
|
83797
|
-
sort?: InputMaybe<
|
|
84480
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksAssetsObjectSortInput>;
|
|
83798
84481
|
};
|
|
83799
|
-
export declare type
|
|
84482
|
+
export declare type GraphStoreV2JiraWorkItemLinksAssetsObjectInverseArgs = {
|
|
83800
84483
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
83801
84484
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83802
84485
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83803
84486
|
id: Scalars['ID']['input'];
|
|
83804
|
-
sort?: InputMaybe<
|
|
84487
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksAssetsObjectSortInput>;
|
|
83805
84488
|
};
|
|
83806
84489
|
export declare type GraphStoreV2JiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
83807
84490
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -84322,6 +85005,9 @@ export declare type GraphStoreV2AtlassianProjectHasAtlassianProjectUpdateSortInp
|
|
|
84322
85005
|
export declare type GraphStoreV2AtlassianProjectLinksAtlassianProjectSortInput = {
|
|
84323
85006
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84324
85007
|
};
|
|
85008
|
+
export declare type GraphStoreV2AtlassianProjectLinksEntitySortInput = {
|
|
85009
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
85010
|
+
};
|
|
84325
85011
|
export declare type GraphStoreV2AtlassianTeamAssignedJiraWorkItemSortInput = {
|
|
84326
85012
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84327
85013
|
};
|
|
@@ -84401,6 +85087,9 @@ export declare type GraphStoreV2AtlassianUserAuthoritativelyLinkedExternalUserSo
|
|
|
84401
85087
|
export declare type GraphStoreV2AtlassianUserCanViewConfluenceSpaceSortInput = {
|
|
84402
85088
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84403
85089
|
};
|
|
85090
|
+
export declare type GraphStoreV2AtlassianUserCollaboratesOnInferredProjectSortInput = {
|
|
85091
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
85092
|
+
};
|
|
84404
85093
|
export declare type GraphStoreV2AtlassianUserContributedToConfluenceBlogpostSortInput = {
|
|
84405
85094
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84406
85095
|
};
|
|
@@ -84568,6 +85257,9 @@ export declare type GraphStoreV2AtlassianUserFavoritedFocusFocusAreaSortInput =
|
|
|
84568
85257
|
export declare type GraphStoreV2AtlassianUserFollowsAtlassianGoalSortInput = {
|
|
84569
85258
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84570
85259
|
};
|
|
85260
|
+
export declare type GraphStoreV2AtlassianUserFollowsAtlassianHomeTagSortInput = {
|
|
85261
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
85262
|
+
};
|
|
84571
85263
|
export declare type GraphStoreV2AtlassianUserFollowsAtlassianProjectSortInput = {
|
|
84572
85264
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84573
85265
|
};
|
|
@@ -84592,9 +85284,6 @@ export declare type GraphStoreV2AtlassianUserInvitedToLoomMeetingSortInput = {
|
|
|
84592
85284
|
export declare type GraphStoreV2AtlassianUserIsInAtlassianTeamSortInput = {
|
|
84593
85285
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84594
85286
|
};
|
|
84595
|
-
export declare type GraphStoreV2AtlassianUserIsInInferredProjectSortInput = {
|
|
84596
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84597
|
-
};
|
|
84598
85287
|
export declare type GraphStoreV2AtlassianUserLaunchedJiraReleaseSortInput = {
|
|
84599
85288
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84600
85289
|
};
|
|
@@ -84683,6 +85372,9 @@ export declare type GraphStoreV2AtlassianUserOwnsFocusFocusAreaSortInput = {
|
|
|
84683
85372
|
export declare type GraphStoreV2AtlassianUserOwnsFocusStrategicPlanSortInput = {
|
|
84684
85373
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84685
85374
|
};
|
|
85375
|
+
export declare type GraphStoreV2AtlassianUserOwnsInferredProjectSortInput = {
|
|
85376
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
85377
|
+
};
|
|
84686
85378
|
export declare type GraphStoreV2AtlassianUserReactedToJiraWorkItemCommentSortInput = {
|
|
84687
85379
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84688
85380
|
};
|
|
@@ -86268,6 +86960,9 @@ export declare type GraphStoreV2FocusStrategicPlanScenarioInvestmentHasInvestmen
|
|
|
86268
86960
|
export declare type GraphStoreV2InferredProjectLinksEntitySortInput = {
|
|
86269
86961
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86270
86962
|
};
|
|
86963
|
+
export declare type GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput = {
|
|
86964
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86965
|
+
};
|
|
86271
86966
|
export declare type GraphStoreV2JiraEpicTracksAtlassianProjectSortInput = {
|
|
86272
86967
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86273
86968
|
};
|
|
@@ -87229,7 +87924,7 @@ export declare type GraphStoreV2JiraWorkItemHasJiraPrioritySortInput = {
|
|
|
87229
87924
|
export declare type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput = {
|
|
87230
87925
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87231
87926
|
};
|
|
87232
|
-
export declare type
|
|
87927
|
+
export declare type GraphStoreV2JiraWorkItemLinksAssetsObjectSortInput = {
|
|
87233
87928
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87234
87929
|
};
|
|
87235
87930
|
export declare type GraphStoreV2JiraWorkItemLinksConfluenceWhiteboardConditionalFilterInput = {
|
|
@@ -88113,6 +88808,34 @@ export declare type GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectE
|
|
|
88113
88808
|
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectUnion>;
|
|
88114
88809
|
};
|
|
88115
88810
|
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectUnion = TownsquareProject;
|
|
88811
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityConnection = HasPageInfo & {
|
|
88812
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianProjectLinksEntityConnection';
|
|
88813
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityEdge>>>;
|
|
88814
|
+
pageInfo: PageInfo;
|
|
88815
|
+
};
|
|
88816
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityEdge = {
|
|
88817
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianProjectLinksEntityEdge';
|
|
88818
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88819
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88820
|
+
id: Scalars['ID']['output'];
|
|
88821
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88822
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityUnion>;
|
|
88823
|
+
};
|
|
88824
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseConnection = HasPageInfo & {
|
|
88825
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseConnection';
|
|
88826
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseEdge>>>;
|
|
88827
|
+
pageInfo: PageInfo;
|
|
88828
|
+
};
|
|
88829
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseEdge = {
|
|
88830
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseEdge';
|
|
88831
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88832
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88833
|
+
id: Scalars['ID']['output'];
|
|
88834
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88835
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseUnion>;
|
|
88836
|
+
};
|
|
88837
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseUnion = TownsquareProject;
|
|
88838
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
88116
88839
|
export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection = HasPageInfo & {
|
|
88117
88840
|
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection';
|
|
88118
88841
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemEdge>>>;
|
|
@@ -88601,6 +89324,20 @@ export declare type GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInv
|
|
|
88601
89324
|
};
|
|
88602
89325
|
export declare type GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
88603
89326
|
export declare type GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceUnion = ConfluenceSpace;
|
|
89327
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
|
|
89328
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection';
|
|
89329
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseEdge>>>;
|
|
89330
|
+
pageInfo: PageInfo;
|
|
89331
|
+
};
|
|
89332
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseEdge = {
|
|
89333
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseEdge';
|
|
89334
|
+
createdAt: Scalars['DateTime']['output'];
|
|
89335
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
89336
|
+
id: Scalars['ID']['output'];
|
|
89337
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
89338
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseUnion>;
|
|
89339
|
+
};
|
|
89340
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
88604
89341
|
export declare type GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection = HasPageInfo & {
|
|
88605
89342
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection';
|
|
88606
89343
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostEdge>>>;
|
|
@@ -89681,6 +90418,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianGoalInver
|
|
|
89681
90418
|
};
|
|
89682
90419
|
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
89683
90420
|
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianGoalUnion = TownsquareGoal;
|
|
90421
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagConnection = HasPageInfo & {
|
|
90422
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagConnection';
|
|
90423
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagEdge>>>;
|
|
90424
|
+
pageInfo: PageInfo;
|
|
90425
|
+
};
|
|
90426
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagEdge = {
|
|
90427
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagEdge';
|
|
90428
|
+
createdAt: Scalars['DateTime']['output'];
|
|
90429
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
90430
|
+
id: Scalars['ID']['output'];
|
|
90431
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
90432
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagUnion>;
|
|
90433
|
+
};
|
|
90434
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection = HasPageInfo & {
|
|
90435
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection';
|
|
90436
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge>>>;
|
|
90437
|
+
pageInfo: PageInfo;
|
|
90438
|
+
};
|
|
90439
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge = {
|
|
90440
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge';
|
|
90441
|
+
createdAt: Scalars['DateTime']['output'];
|
|
90442
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
90443
|
+
id: Scalars['ID']['output'];
|
|
90444
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
90445
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseUnion>;
|
|
90446
|
+
};
|
|
90447
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
90448
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagUnion = TownsquareTag;
|
|
89684
90449
|
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianProjectConnection = HasPageInfo & {
|
|
89685
90450
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianProjectConnection';
|
|
89686
90451
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianProjectEdge>>>;
|
|
@@ -89857,20 +90622,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserIsInAtlassianTeamInverseE
|
|
|
89857
90622
|
};
|
|
89858
90623
|
export declare type GraphStoreV2SimplifiedAtlassianUserIsInAtlassianTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
89859
90624
|
export declare type GraphStoreV2SimplifiedAtlassianUserIsInAtlassianTeamUnion = TeamV2;
|
|
89860
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserIsInInferredProjectInverseConnection = HasPageInfo & {
|
|
89861
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserIsInInferredProjectInverseConnection';
|
|
89862
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserIsInInferredProjectInverseEdge>>>;
|
|
89863
|
-
pageInfo: PageInfo;
|
|
89864
|
-
};
|
|
89865
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserIsInInferredProjectInverseEdge = {
|
|
89866
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserIsInInferredProjectInverseEdge';
|
|
89867
|
-
createdAt: Scalars['DateTime']['output'];
|
|
89868
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
89869
|
-
id: Scalars['ID']['output'];
|
|
89870
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
89871
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserIsInInferredProjectInverseUnion>;
|
|
89872
|
-
};
|
|
89873
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserIsInInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
89874
90625
|
export declare type GraphStoreV2SimplifiedAtlassianUserLaunchedJiraReleaseConnection = HasPageInfo & {
|
|
89875
90626
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserLaunchedJiraReleaseConnection';
|
|
89876
90627
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserLaunchedJiraReleaseEdge>>>;
|
|
@@ -90383,6 +91134,20 @@ export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInv
|
|
|
90383
91134
|
};
|
|
90384
91135
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
90385
91136
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanUnion = SpfPlan;
|
|
91137
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection = HasPageInfo & {
|
|
91138
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection';
|
|
91139
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseEdge>>>;
|
|
91140
|
+
pageInfo: PageInfo;
|
|
91141
|
+
};
|
|
91142
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseEdge = {
|
|
91143
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseEdge';
|
|
91144
|
+
createdAt: Scalars['DateTime']['output'];
|
|
91145
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
91146
|
+
id: Scalars['ID']['output'];
|
|
91147
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
91148
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseUnion>;
|
|
91149
|
+
};
|
|
91150
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
90386
91151
|
export declare type GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection = HasPageInfo & {
|
|
90387
91152
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection';
|
|
90388
91153
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentEdge>>>;
|
|
@@ -95599,6 +96364,20 @@ export declare type GraphStoreV2SimplifiedInferredProjectLinksEntityEdge = {
|
|
|
95599
96364
|
node?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityUnion>;
|
|
95600
96365
|
};
|
|
95601
96366
|
export declare type GraphStoreV2SimplifiedInferredProjectLinksEntityUnion = JiraIssue | JiraProject;
|
|
96367
|
+
export declare type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
|
|
96368
|
+
__typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection';
|
|
96369
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge>>>;
|
|
96370
|
+
pageInfo: PageInfo;
|
|
96371
|
+
};
|
|
96372
|
+
export declare type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge = {
|
|
96373
|
+
__typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge';
|
|
96374
|
+
createdAt: Scalars['DateTime']['output'];
|
|
96375
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
96376
|
+
id: Scalars['ID']['output'];
|
|
96377
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
96378
|
+
node?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion>;
|
|
96379
|
+
};
|
|
96380
|
+
export declare type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = JiraProject;
|
|
95602
96381
|
export declare type GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection = HasPageInfo & {
|
|
95603
96382
|
__typename?: 'GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection';
|
|
95604
96383
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectEdge>>>;
|
|
@@ -95962,7 +96741,7 @@ export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseEdge = {
|
|
|
95962
96741
|
node?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseUnion>;
|
|
95963
96742
|
};
|
|
95964
96743
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseUnion = TownsquareProject;
|
|
95965
|
-
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomSpace | LoomVideo;
|
|
96744
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
95966
96745
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchConnection = HasPageInfo & HasTotal & {
|
|
95967
96746
|
__typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchConnection';
|
|
95968
96747
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchEdge>>>;
|
|
@@ -97207,34 +97986,34 @@ export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInve
|
|
|
97207
97986
|
};
|
|
97208
97987
|
export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseUnion = JiraIssue;
|
|
97209
97988
|
export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
97210
|
-
export declare type
|
|
97211
|
-
__typename?: '
|
|
97212
|
-
edges?: Maybe<Array<Maybe<
|
|
97989
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection = HasPageInfo & {
|
|
97990
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection';
|
|
97991
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectEdge>>>;
|
|
97213
97992
|
pageInfo: PageInfo;
|
|
97214
97993
|
};
|
|
97215
|
-
export declare type
|
|
97216
|
-
__typename?: '
|
|
97994
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectEdge = {
|
|
97995
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectEdge';
|
|
97217
97996
|
createdAt: Scalars['DateTime']['output'];
|
|
97218
97997
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
97219
97998
|
id: Scalars['ID']['output'];
|
|
97220
97999
|
lastUpdated: Scalars['DateTime']['output'];
|
|
97221
|
-
node?: Maybe<
|
|
98000
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectUnion>;
|
|
97222
98001
|
};
|
|
97223
|
-
export declare type
|
|
97224
|
-
__typename?: '
|
|
97225
|
-
edges?: Maybe<Array<Maybe<
|
|
98002
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseConnection = HasPageInfo & {
|
|
98003
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseConnection';
|
|
98004
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseEdge>>>;
|
|
97226
98005
|
pageInfo: PageInfo;
|
|
97227
98006
|
};
|
|
97228
|
-
export declare type
|
|
97229
|
-
__typename?: '
|
|
98007
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseEdge = {
|
|
98008
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseEdge';
|
|
97230
98009
|
createdAt: Scalars['DateTime']['output'];
|
|
97231
98010
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
97232
98011
|
id: Scalars['ID']['output'];
|
|
97233
98012
|
lastUpdated: Scalars['DateTime']['output'];
|
|
97234
|
-
node?: Maybe<
|
|
98013
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseUnion>;
|
|
97235
98014
|
};
|
|
97236
|
-
export declare type
|
|
97237
|
-
export declare type
|
|
98015
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseUnion = JiraIssue;
|
|
98016
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectUnion = AssetsObject;
|
|
97238
98017
|
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection = HasPageInfo & HasTotal & {
|
|
97239
98018
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection';
|
|
97240
98019
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardEdge>>>;
|
|
@@ -98502,14 +99281,15 @@ export declare type GravityViewConfig = {
|
|
|
98502
99281
|
columnSize?: Maybe<GravityViewColumnSize>;
|
|
98503
99282
|
fieldRollups?: Maybe<Array<GravityFieldRollup>>;
|
|
98504
99283
|
fields: Array<Scalars['ID']['output']>;
|
|
98505
|
-
filter
|
|
99284
|
+
filter?: Maybe<Array<GravityViewFilter>>;
|
|
98506
99285
|
groupBy?: Maybe<Scalars['ID']['output']>;
|
|
98507
99286
|
groupsFilter?: Maybe<Array<GravityViewFilter>>;
|
|
98508
99287
|
hideEmptyColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
98509
99288
|
hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
|
|
98510
99289
|
layoutType?: Maybe<GravityViewLayoutType>;
|
|
98511
|
-
sort
|
|
99290
|
+
sort?: Maybe<Array<GravityViewSort>>;
|
|
98512
99291
|
sortMode?: Maybe<GravityViewSortMode>;
|
|
99292
|
+
tableColumnSizes?: Maybe<Array<GravityViewTableColumnSize>>;
|
|
98513
99293
|
verticalGroupBy?: Maybe<Scalars['ID']['output']>;
|
|
98514
99294
|
verticalGroupsFilter?: Maybe<Array<GravityViewFilter>>;
|
|
98515
99295
|
};
|
|
@@ -98569,6 +99349,11 @@ export declare enum GravityViewSortMode {
|
|
|
98569
99349
|
ProjectRank = "PROJECT_RANK",
|
|
98570
99350
|
ViewRank = "VIEW_RANK"
|
|
98571
99351
|
}
|
|
99352
|
+
export declare type GravityViewTableColumnSize = {
|
|
99353
|
+
__typename?: 'GravityViewTableColumnSize';
|
|
99354
|
+
field: Scalars['ID']['output'];
|
|
99355
|
+
size: Scalars['Int']['output'];
|
|
99356
|
+
};
|
|
98572
99357
|
export declare type GravityViewTemplate = {
|
|
98573
99358
|
__typename?: 'GravityViewTemplate';
|
|
98574
99359
|
colorScheme?: Maybe<GravityViewTemplateColorScheme>;
|
|
@@ -101933,6 +102718,9 @@ export declare type IncomingLinksCount = {
|
|
|
101933
102718
|
__typename?: 'IncomingLinksCount';
|
|
101934
102719
|
count?: Maybe<Scalars['Int']['output']>;
|
|
101935
102720
|
};
|
|
102721
|
+
export declare type IndexHintInputType = {
|
|
102722
|
+
hints?: InputMaybe<Array<InputMaybe<PreferredIndexInputType>>>;
|
|
102723
|
+
};
|
|
101936
102724
|
export declare type IndividualInlineTaskNotification = {
|
|
101937
102725
|
__typename?: 'IndividualInlineTaskNotification';
|
|
101938
102726
|
notificationAction?: Maybe<NotificationAction>;
|
|
@@ -102963,6 +103751,19 @@ export declare type JiraActivitySortOrderPayload = Payload & {
|
|
|
102963
103751
|
errors?: Maybe<Array<MutationError>>;
|
|
102964
103752
|
success: Scalars['Boolean']['output'];
|
|
102965
103753
|
};
|
|
103754
|
+
export declare type JiraActor = {
|
|
103755
|
+
user?: Maybe<User>;
|
|
103756
|
+
};
|
|
103757
|
+
export declare type JiraActorConnection = HasPageInfo & {
|
|
103758
|
+
__typename?: 'JiraActorConnection';
|
|
103759
|
+
edges?: Maybe<Array<Maybe<JiraActorEdge>>>;
|
|
103760
|
+
pageInfo: PageInfo;
|
|
103761
|
+
};
|
|
103762
|
+
export declare type JiraActorEdge = {
|
|
103763
|
+
__typename?: 'JiraActorEdge';
|
|
103764
|
+
cursor: Scalars['String']['output'];
|
|
103765
|
+
node?: Maybe<JiraActor>;
|
|
103766
|
+
};
|
|
102966
103767
|
export declare type JiraAddAttachmentInput = {
|
|
102967
103768
|
fileId: Scalars['String']['input'];
|
|
102968
103769
|
issue: Scalars['ID']['input'];
|
|
@@ -103212,6 +104013,13 @@ export declare type JiraAgentAssignableInput = {
|
|
|
103212
104013
|
agentAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
103213
104014
|
agentId?: InputMaybe<Scalars['ID']['input']>;
|
|
103214
104015
|
};
|
|
104016
|
+
export declare type JiraAgenticUser = JiraActor & {
|
|
104017
|
+
__typename?: 'JiraAgenticUser';
|
|
104018
|
+
createdByUser?: Maybe<User>;
|
|
104019
|
+
isAssignable?: Maybe<Scalars['Boolean']['output']>;
|
|
104020
|
+
isFavorite?: Maybe<Scalars['Boolean']['output']>;
|
|
104021
|
+
user?: Maybe<User>;
|
|
104022
|
+
};
|
|
103215
104023
|
export declare type JiraAggregatedDate = JiraDatePickerField | JiraDateTimePickerField;
|
|
103216
104024
|
export declare type JiraAggregatedStatusField = JiraIssueField & JiraListRowField & Node & {
|
|
103217
104025
|
__typename?: 'JiraAggregatedStatusField';
|
|
@@ -104766,9 +105574,13 @@ export declare type JiraBacklogViewCardFieldInput = {
|
|
|
104766
105574
|
id: Scalars['ID']['input'];
|
|
104767
105575
|
};
|
|
104768
105576
|
export declare type JiraBacklogViewCardList = {
|
|
105577
|
+
estimationDetails?: Maybe<JiraBacklogViewEstimationDetails>;
|
|
104769
105578
|
id: Scalars['ID']['output'];
|
|
104770
105579
|
issues?: Maybe<JiraIssueConnection>;
|
|
104771
105580
|
};
|
|
105581
|
+
export declare type JiraBacklogViewCardListEstimationDetailsArgs = {
|
|
105582
|
+
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
105583
|
+
};
|
|
104772
105584
|
export declare type JiraBacklogViewCardListIssuesArgs = {
|
|
104773
105585
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
104774
105586
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -104799,9 +105611,14 @@ export declare type JiraBacklogViewColumn = {
|
|
|
104799
105611
|
export declare type JiraBacklogViewColumnCardList = JiraBacklogViewCardList & Node & {
|
|
104800
105612
|
__typename?: 'JiraBacklogViewColumnCardList';
|
|
104801
105613
|
column?: Maybe<JiraBacklogViewColumn>;
|
|
105614
|
+
columnConstraintIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
105615
|
+
estimationDetails?: Maybe<JiraBacklogViewEstimationDetails>;
|
|
104802
105616
|
id: Scalars['ID']['output'];
|
|
104803
105617
|
issues?: Maybe<JiraIssueConnection>;
|
|
104804
105618
|
};
|
|
105619
|
+
export declare type JiraBacklogViewColumnCardListEstimationDetailsArgs = {
|
|
105620
|
+
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
105621
|
+
};
|
|
104805
105622
|
export declare type JiraBacklogViewColumnCardListIssuesArgs = {
|
|
104806
105623
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
104807
105624
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -104809,6 +105626,13 @@ export declare type JiraBacklogViewColumnCardListIssuesArgs = {
|
|
|
104809
105626
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
104810
105627
|
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
104811
105628
|
};
|
|
105629
|
+
export declare type JiraBacklogViewEstimationDetails = {
|
|
105630
|
+
__typename?: 'JiraBacklogViewEstimationDetails';
|
|
105631
|
+
doneEstimate?: Maybe<Scalars['String']['output']>;
|
|
105632
|
+
inProgressEstimate?: Maybe<Scalars['String']['output']>;
|
|
105633
|
+
toDoEstimate?: Maybe<Scalars['String']['output']>;
|
|
105634
|
+
totalEstimate?: Maybe<Scalars['String']['output']>;
|
|
105635
|
+
};
|
|
104812
105636
|
export declare type JiraBacklogViewGlobalConfig = {
|
|
104813
105637
|
__typename?: 'JiraBacklogViewGlobalConfig';
|
|
104814
105638
|
parentHierarchyLevel?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
@@ -104831,10 +105655,14 @@ export declare type JiraBacklogViewSettings = {
|
|
|
104831
105655
|
};
|
|
104832
105656
|
export declare type JiraBacklogViewSprintCardList = JiraBacklogViewCardList & Node & {
|
|
104833
105657
|
__typename?: 'JiraBacklogViewSprintCardList';
|
|
105658
|
+
estimationDetails?: Maybe<JiraBacklogViewEstimationDetails>;
|
|
104834
105659
|
id: Scalars['ID']['output'];
|
|
104835
105660
|
issues?: Maybe<JiraIssueConnection>;
|
|
104836
105661
|
sprint?: Maybe<JiraSprint>;
|
|
104837
105662
|
};
|
|
105663
|
+
export declare type JiraBacklogViewSprintCardListEstimationDetailsArgs = {
|
|
105664
|
+
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
105665
|
+
};
|
|
104838
105666
|
export declare type JiraBacklogViewSprintCardListIssuesArgs = {
|
|
104839
105667
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
104840
105668
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -105021,6 +105849,7 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
105021
105849
|
isEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
105022
105850
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
105023
105851
|
isWorkflowsMigrationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
105852
|
+
issuePositions?: Maybe<Array<JiraBoardViewIssuePositions>>;
|
|
105024
105853
|
layout?: Maybe<JiraBoardViewLayout>;
|
|
105025
105854
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
105026
105855
|
sprints?: Maybe<JiraSprintConnection>;
|
|
@@ -105058,6 +105887,12 @@ export declare type JiraBoardViewIsEmptyArgs = {
|
|
|
105058
105887
|
export declare type JiraBoardViewIsViewConfigModifiedArgs = {
|
|
105059
105888
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
105060
105889
|
};
|
|
105890
|
+
export declare type JiraBoardViewIssuePositionsArgs = {
|
|
105891
|
+
columns: Array<Scalars['ID']['input']>;
|
|
105892
|
+
issues: Array<Scalars['ID']['input']>;
|
|
105893
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
105894
|
+
swimlanes?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
105895
|
+
};
|
|
105061
105896
|
export declare type JiraBoardViewLayoutArgs = {
|
|
105062
105897
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
105063
105898
|
};
|
|
@@ -105151,6 +105986,11 @@ export declare type JiraBoardViewCellIssuePosition = {
|
|
|
105151
105986
|
issue?: Maybe<JiraIssue>;
|
|
105152
105987
|
previousIssue?: Maybe<JiraIssue>;
|
|
105153
105988
|
};
|
|
105989
|
+
export declare type JiraBoardViewCellIssuePositionMapping = {
|
|
105990
|
+
__typename?: 'JiraBoardViewCellIssuePositionMapping';
|
|
105991
|
+
cell?: Maybe<JiraBoardViewCell>;
|
|
105992
|
+
positions?: Maybe<Array<JiraBoardViewCellIssuePosition>>;
|
|
105993
|
+
};
|
|
105154
105994
|
export declare type JiraBoardViewColumn = {
|
|
105155
105995
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
105156
105996
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105206,12 +106046,17 @@ export declare type JiraBoardViewFieldSwimlaneUser = {
|
|
|
105206
106046
|
__typename?: 'JiraBoardViewFieldSwimlaneUser';
|
|
105207
106047
|
user?: Maybe<User>;
|
|
105208
106048
|
};
|
|
105209
|
-
export declare type JiraBoardViewFieldSwimlaneValue = JiraBoardViewFieldSwimlaneUser | JiraOption | JiraPriority | JiraTownsquareProject;
|
|
106049
|
+
export declare type JiraBoardViewFieldSwimlaneValue = JiraBoardViewFieldSwimlaneUser | JiraIssue | JiraOption | JiraPriority | JiraTownsquareProject;
|
|
105210
106050
|
export declare type JiraBoardViewInput = {
|
|
105211
106051
|
jiraBoardViewQueryInput?: InputMaybe<JiraBoardViewQueryInput>;
|
|
105212
106052
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
105213
106053
|
viewQueryInput?: InputMaybe<JiraViewQueryInput>;
|
|
105214
106054
|
};
|
|
106055
|
+
export declare type JiraBoardViewIssuePositions = {
|
|
106056
|
+
__typename?: 'JiraBoardViewIssuePositions';
|
|
106057
|
+
issuesToInsert?: Maybe<Array<JiraBoardViewCellIssuePositionMapping>>;
|
|
106058
|
+
swimlanesToInsert?: Maybe<Array<JiraBoardViewSwimlanePosition>>;
|
|
106059
|
+
};
|
|
105215
106060
|
export declare type JiraBoardViewLayout = JiraBoardViewColumnLayout | JiraBoardViewSwimlaneLayout;
|
|
105216
106061
|
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & Node & {
|
|
105217
106062
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
@@ -105339,6 +106184,11 @@ export declare type JiraBoardViewSwimlaneLayoutSwimlanesArgs = {
|
|
|
105339
106184
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
105340
106185
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
105341
106186
|
};
|
|
106187
|
+
export declare type JiraBoardViewSwimlanePosition = {
|
|
106188
|
+
__typename?: 'JiraBoardViewSwimlanePosition';
|
|
106189
|
+
previousSwimlane?: Maybe<JiraBoardViewSwimlane>;
|
|
106190
|
+
swimlane?: Maybe<JiraBoardViewSwimlane>;
|
|
106191
|
+
};
|
|
105342
106192
|
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
105343
106193
|
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
|
|
105344
106194
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107933,11 +108783,15 @@ export declare type JiraDateFieldOperationInput = {
|
|
|
107933
108783
|
date?: InputMaybe<Scalars['Date']['input']>;
|
|
107934
108784
|
operation: JiraSingleValueFieldOperations;
|
|
107935
108785
|
};
|
|
107936
|
-
export declare type JiraDateFieldPayload = Payload & {
|
|
108786
|
+
export declare type JiraDateFieldPayload = JiraSupportsUpdatedDependentFields & Payload & {
|
|
107937
108787
|
__typename?: 'JiraDateFieldPayload';
|
|
107938
108788
|
errors?: Maybe<Array<MutationError>>;
|
|
107939
108789
|
field?: Maybe<JiraDatePickerField>;
|
|
107940
108790
|
success: Scalars['Boolean']['output'];
|
|
108791
|
+
updatedDependentFields?: Maybe<JiraIssueFieldConnection>;
|
|
108792
|
+
};
|
|
108793
|
+
export declare type JiraDateFieldPayloadUpdatedDependentFieldsArgs = {
|
|
108794
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107941
108795
|
};
|
|
107942
108796
|
export declare type JiraDateFormulaField = JiraDateLikeField & JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
107943
108797
|
__typename?: 'JiraDateFormulaField';
|
|
@@ -107997,11 +108851,15 @@ export declare type JiraDateTimeFieldOperationInput = {
|
|
|
107997
108851
|
datetime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
107998
108852
|
operation: JiraSingleValueFieldOperations;
|
|
107999
108853
|
};
|
|
108000
|
-
export declare type JiraDateTimeFieldPayload = Payload & {
|
|
108854
|
+
export declare type JiraDateTimeFieldPayload = JiraSupportsUpdatedDependentFields & Payload & {
|
|
108001
108855
|
__typename?: 'JiraDateTimeFieldPayload';
|
|
108002
108856
|
errors?: Maybe<Array<MutationError>>;
|
|
108003
108857
|
field?: Maybe<JiraDateTimePickerField>;
|
|
108004
108858
|
success: Scalars['Boolean']['output'];
|
|
108859
|
+
updatedDependentFields?: Maybe<JiraIssueFieldConnection>;
|
|
108860
|
+
};
|
|
108861
|
+
export declare type JiraDateTimeFieldPayloadUpdatedDependentFieldsArgs = {
|
|
108862
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108005
108863
|
};
|
|
108006
108864
|
export declare type JiraDateTimeInput = {
|
|
108007
108865
|
formattedDateTime: Scalars['String']['input'];
|
|
@@ -110925,6 +111783,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
110925
111783
|
incidentActionItems?: Maybe<GraphIncidentHasActionItemRelationshipConnection>;
|
|
110926
111784
|
incidentLinkedJswIssues?: Maybe<GraphIncidentLinkedJswIssueRelationshipConnection>;
|
|
110927
111785
|
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
111786
|
+
isFlagged?: Maybe<Scalars['Boolean']['output']>;
|
|
110928
111787
|
isIncidentManagementEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
110929
111788
|
isRemoteIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
110930
111789
|
isResolved?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -110993,6 +111852,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
110993
111852
|
statusCategory?: Maybe<JiraStatusCategory>;
|
|
110994
111853
|
statusField?: Maybe<JiraStatusField>;
|
|
110995
111854
|
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
111855
|
+
storyPoints?: Maybe<Scalars['Float']['output']>;
|
|
110996
111856
|
storyPointsField?: Maybe<JiraNumberField>;
|
|
110997
111857
|
suggestFieldValues?: Maybe<JiraSuggestedIssueFieldValuesResult>;
|
|
110998
111858
|
summarisedBuilds?: Maybe<DevOpsSummarisedBuilds>;
|
|
@@ -113535,6 +114395,18 @@ export declare type JiraJirtEventPayload = {
|
|
|
113535
114395
|
resource: Scalars['String']['output'];
|
|
113536
114396
|
type: Scalars['String']['output'];
|
|
113537
114397
|
};
|
|
114398
|
+
export declare type JiraJourney = Node & {
|
|
114399
|
+
__typename?: 'JiraJourney';
|
|
114400
|
+
id: Scalars['ID']['output'];
|
|
114401
|
+
journeyConfigurationName?: Maybe<Scalars['String']['output']>;
|
|
114402
|
+
steps?: Maybe<JiraJourneyStepConnection>;
|
|
114403
|
+
};
|
|
114404
|
+
export declare type JiraJourneyStepsArgs = {
|
|
114405
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
114406
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
114407
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
114408
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
114409
|
+
};
|
|
113538
114410
|
export declare enum JiraJourneyActiveState {
|
|
113539
114411
|
Active = "ACTIVE",
|
|
113540
114412
|
Inactive = "INACTIVE",
|
|
@@ -113589,6 +114461,13 @@ export declare enum JiraJourneyConfigurationType {
|
|
|
113589
114461
|
CustomizableJourney = "CUSTOMIZABLE_JOURNEY",
|
|
113590
114462
|
JourneyType = "JOURNEY_TYPE"
|
|
113591
114463
|
}
|
|
114464
|
+
export declare type JiraJourneyConnection = {
|
|
114465
|
+
__typename?: 'JiraJourneyConnection';
|
|
114466
|
+
edges?: Maybe<Array<Maybe<JiraJourneyEdge>>>;
|
|
114467
|
+
errors?: Maybe<Array<QueryError>>;
|
|
114468
|
+
pageInfo: PageInfo;
|
|
114469
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
114470
|
+
};
|
|
113592
114471
|
export declare type JiraJourneyCustomizationSettings = {
|
|
113593
114472
|
__typename?: 'JiraJourneyCustomizationSettings';
|
|
113594
114473
|
agentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -113598,6 +114477,11 @@ export declare type JiraJourneyCustomizationSettingsInput = {
|
|
|
113598
114477
|
agentId: Scalars['ID']['input'];
|
|
113599
114478
|
timeout: Scalars['Int']['input'];
|
|
113600
114479
|
};
|
|
114480
|
+
export declare type JiraJourneyEdge = {
|
|
114481
|
+
__typename?: 'JiraJourneyEdge';
|
|
114482
|
+
cursor: Scalars['String']['output'];
|
|
114483
|
+
node?: Maybe<JiraJourney>;
|
|
114484
|
+
};
|
|
113601
114485
|
export declare type JiraJourneyItem = JiraJourneyStatusDependency | JiraJourneyWorkItem;
|
|
113602
114486
|
export declare type JiraJourneyItemCommon = {
|
|
113603
114487
|
id: Scalars['ID']['output'];
|
|
@@ -113735,6 +114619,29 @@ export declare enum JiraJourneyStatusDependencyType {
|
|
|
113735
114619
|
Status = "STATUS",
|
|
113736
114620
|
StatusCategory = "STATUS_CATEGORY"
|
|
113737
114621
|
}
|
|
114622
|
+
export declare type JiraJourneyStep = {
|
|
114623
|
+
id: Scalars['ID']['output'];
|
|
114624
|
+
journeyItemName?: Maybe<Scalars['String']['output']>;
|
|
114625
|
+
status?: Maybe<JiraJourneyStepStatus>;
|
|
114626
|
+
};
|
|
114627
|
+
export declare type JiraJourneyStepConnection = {
|
|
114628
|
+
__typename?: 'JiraJourneyStepConnection';
|
|
114629
|
+
edges?: Maybe<Array<Maybe<JiraJourneyStepEdge>>>;
|
|
114630
|
+
errors?: Maybe<Array<QueryError>>;
|
|
114631
|
+
pageInfo: PageInfo;
|
|
114632
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
114633
|
+
};
|
|
114634
|
+
export declare type JiraJourneyStepEdge = {
|
|
114635
|
+
__typename?: 'JiraJourneyStepEdge';
|
|
114636
|
+
cursor: Scalars['String']['output'];
|
|
114637
|
+
node?: Maybe<JiraJourneyStep>;
|
|
114638
|
+
};
|
|
114639
|
+
export declare enum JiraJourneyStepStatus {
|
|
114640
|
+
StepExecuted = "STEP_EXECUTED",
|
|
114641
|
+
StepExpired = "STEP_EXPIRED",
|
|
114642
|
+
StepPending = "STEP_PENDING",
|
|
114643
|
+
StepSkipped = "STEP_SKIPPED"
|
|
114644
|
+
}
|
|
113738
114645
|
export declare type JiraJourneyTrigger = {
|
|
113739
114646
|
__typename?: 'JiraJourneyTrigger';
|
|
113740
114647
|
type: JiraJourneyTriggerType;
|
|
@@ -113813,6 +114720,14 @@ export declare type JiraJourneyWorkItemFieldValueKeyValuePairInput = {
|
|
|
113813
114720
|
key: Scalars['String']['input'];
|
|
113814
114721
|
value: Array<InputMaybe<Scalars['String']['input']>>;
|
|
113815
114722
|
};
|
|
114723
|
+
export declare type JiraJourneyWorkItemStep = JiraJourneyStep & Node & {
|
|
114724
|
+
__typename?: 'JiraJourneyWorkItemStep';
|
|
114725
|
+
id: Scalars['ID']['output'];
|
|
114726
|
+
journeyItemName?: Maybe<Scalars['String']['output']>;
|
|
114727
|
+
status?: Maybe<JiraJourneyStepStatus>;
|
|
114728
|
+
workItem?: Maybe<JiraIssue>;
|
|
114729
|
+
workItemId?: Maybe<Scalars['ID']['output']>;
|
|
114730
|
+
};
|
|
113816
114731
|
export declare type JiraJourneyWorkdayIntegrationTriggerConfiguration = {
|
|
113817
114732
|
__typename?: 'JiraJourneyWorkdayIntegrationTriggerConfiguration';
|
|
113818
114733
|
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -116999,6 +117914,55 @@ export declare type JiraOnboardingStepInput = {
|
|
|
116999
117914
|
export declare enum JiraOnboardingTargetType {
|
|
117000
117915
|
TeamType = "TEAM_TYPE"
|
|
117001
117916
|
}
|
|
117917
|
+
export declare type JiraOpenBetaFeature = JiraOpenBetaFeatureNode & {
|
|
117918
|
+
__typename?: 'JiraOpenBetaFeature';
|
|
117919
|
+
_type?: Maybe<Scalars['String']['output']>;
|
|
117920
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
117921
|
+
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
117922
|
+
featureKey?: Maybe<Scalars['String']['output']>;
|
|
117923
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
117924
|
+
version?: Maybe<Scalars['Long']['output']>;
|
|
117925
|
+
};
|
|
117926
|
+
export declare type JiraOpenBetaFeatureConnection = {
|
|
117927
|
+
__typename?: 'JiraOpenBetaFeatureConnection';
|
|
117928
|
+
edges?: Maybe<Array<Maybe<JiraOpenBetaFeatureEdge>>>;
|
|
117929
|
+
nodes?: Maybe<Array<Maybe<JiraOpenBetaFeature>>>;
|
|
117930
|
+
pageInfo?: Maybe<PageInfo>;
|
|
117931
|
+
};
|
|
117932
|
+
export declare type JiraOpenBetaFeatureCreateInput = {
|
|
117933
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
117934
|
+
expireTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
117935
|
+
featureKey?: InputMaybe<Scalars['String']['input']>;
|
|
117936
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
117937
|
+
shardingContext: Scalars['String']['input'];
|
|
117938
|
+
};
|
|
117939
|
+
export declare type JiraOpenBetaFeatureCreatePayload = Payload & {
|
|
117940
|
+
__typename?: 'JiraOpenBetaFeatureCreatePayload';
|
|
117941
|
+
createdEntity?: Maybe<JiraOpenBetaFeature>;
|
|
117942
|
+
errors?: Maybe<Array<MutationError>>;
|
|
117943
|
+
success: Scalars['Boolean']['output'];
|
|
117944
|
+
};
|
|
117945
|
+
export declare type JiraOpenBetaFeatureEdge = {
|
|
117946
|
+
__typename?: 'JiraOpenBetaFeatureEdge';
|
|
117947
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
117948
|
+
node?: Maybe<JiraOpenBetaFeature>;
|
|
117949
|
+
};
|
|
117950
|
+
export declare type JiraOpenBetaFeatureNode = {
|
|
117951
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
117952
|
+
};
|
|
117953
|
+
export declare type JiraOpenBetaFeatureUpdateInput = {
|
|
117954
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
117955
|
+
expireTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
117956
|
+
featureKey?: InputMaybe<Scalars['String']['input']>;
|
|
117957
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
117958
|
+
shardingContext: Scalars['String']['input'];
|
|
117959
|
+
};
|
|
117960
|
+
export declare type JiraOpenBetaFeatureUpdatePayload = Payload & {
|
|
117961
|
+
__typename?: 'JiraOpenBetaFeatureUpdatePayload';
|
|
117962
|
+
errors?: Maybe<Array<MutationError>>;
|
|
117963
|
+
success: Scalars['Boolean']['output'];
|
|
117964
|
+
updatedEntity?: Maybe<JiraOpenBetaFeature>;
|
|
117965
|
+
};
|
|
117002
117966
|
export declare type JiraOpsgenieTeam = Node & {
|
|
117003
117967
|
__typename?: 'JiraOpsgenieTeam';
|
|
117004
117968
|
id: Scalars['ID']['output'];
|
|
@@ -117488,6 +118452,7 @@ export declare type JiraPlan = Node & {
|
|
|
117488
118452
|
__typename?: 'JiraPlan';
|
|
117489
118453
|
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
117490
118454
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
118455
|
+
hasPlanInvitePermission?: Maybe<Scalars['Boolean']['output']>;
|
|
117491
118456
|
hasReleaseUnsavedChanges?: Maybe<Scalars['Boolean']['output']>;
|
|
117492
118457
|
id: Scalars['ID']['output'];
|
|
117493
118458
|
isAutoSchedulerEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -117591,6 +118556,7 @@ export declare type JiraPlaybook = Node & {
|
|
|
117591
118556
|
__typename?: 'JiraPlaybook';
|
|
117592
118557
|
filters?: Maybe<Array<JiraPlaybookIssueFilter>>;
|
|
117593
118558
|
id: Scalars['ID']['output'];
|
|
118559
|
+
isAiCreated?: Maybe<Scalars['Boolean']['output']>;
|
|
117594
118560
|
jql?: Maybe<Scalars['String']['output']>;
|
|
117595
118561
|
labels?: Maybe<Array<JiraPlaybookLabel>>;
|
|
117596
118562
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -119151,6 +120117,7 @@ export declare type JiraQuery = {
|
|
|
119151
120117
|
isLinkingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
119152
120118
|
isNaturalLanguageSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
119153
120119
|
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
120120
|
+
isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
119154
120121
|
isSubtasksEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
119155
120122
|
isVotingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
119156
120123
|
issue?: Maybe<JiraIssue>;
|
|
@@ -119199,6 +120166,8 @@ export declare type JiraQuery = {
|
|
|
119199
120166
|
jiraProjectsMappedToHelpCenter?: Maybe<JiraProjectConnection>;
|
|
119200
120167
|
jiraServiceManagementRequestTypeCategoriesByProject?: Maybe<JiraServiceManagementRequestTypeCategoryConnection>;
|
|
119201
120168
|
jiraServiceManagementSlaIssue?: Maybe<JiraServiceManagementSlaIssueResult>;
|
|
120169
|
+
jiraWorkItemJourneys?: Maybe<JiraJourneyConnection>;
|
|
120170
|
+
jira_recommendedAgents?: Maybe<JiraActorConnection>;
|
|
119202
120171
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
119203
120172
|
jpdGlobalViewFields?: Maybe<JiraPolarisGlobalViewFields>;
|
|
119204
120173
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
@@ -119752,6 +120721,9 @@ export declare type JiraQueryIsNaturalLanguageSearchEnabledArgs = {
|
|
|
119752
120721
|
export declare type JiraQueryIsRovoEnabledArgs = {
|
|
119753
120722
|
cloudId: Scalars['ID']['input'];
|
|
119754
120723
|
};
|
|
120724
|
+
export declare type JiraQueryIsRovoLlmEnabledArgs = {
|
|
120725
|
+
cloudId: Scalars['ID']['input'];
|
|
120726
|
+
};
|
|
119755
120727
|
export declare type JiraQueryIsSubtasksEnabledArgs = {
|
|
119756
120728
|
cloudId: Scalars['ID']['input'];
|
|
119757
120729
|
};
|
|
@@ -119995,6 +120967,24 @@ export declare type JiraQueryJiraServiceManagementSlaIssueArgs = {
|
|
|
119995
120967
|
cloudId: Scalars['ID']['input'];
|
|
119996
120968
|
issueKey: Scalars['String']['input'];
|
|
119997
120969
|
};
|
|
120970
|
+
export declare type JiraQueryJiraWorkItemJourneysArgs = {
|
|
120971
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
120972
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
120973
|
+
cloudId: Scalars['ID']['input'];
|
|
120974
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
120975
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
120976
|
+
workItemKey: Scalars['String']['input'];
|
|
120977
|
+
};
|
|
120978
|
+
export declare type JiraQueryJira_RecommendedAgentsArgs = {
|
|
120979
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
120980
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
120981
|
+
cloudId: Scalars['ID']['input'];
|
|
120982
|
+
contextAri: Scalars['ID']['input'];
|
|
120983
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
120984
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
120985
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
120986
|
+
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
120987
|
+
};
|
|
119998
120988
|
export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
|
|
119999
120989
|
cloudId: Scalars['ID']['input'];
|
|
120000
120990
|
};
|
|
@@ -127876,6 +128866,9 @@ export declare type JpdViewsServiceAxisConfigInput = {
|
|
|
127876
128866
|
fieldOptions: Array<JpdViewsServiceOptionInput>;
|
|
127877
128867
|
reversed: Scalars['Boolean']['input'];
|
|
127878
128868
|
};
|
|
128869
|
+
export declare type JpdViewsServiceCloneViewIntoGlobalInput = {
|
|
128870
|
+
id: Scalars['ID']['input'];
|
|
128871
|
+
};
|
|
127879
128872
|
export declare enum JpdViewsServiceColorStyle {
|
|
127880
128873
|
Background = "BACKGROUND",
|
|
127881
128874
|
Highlight = "HIGHLIGHT"
|
|
@@ -128153,6 +129146,10 @@ export declare type JpdViewsServiceRerankGlobalViewPayload = Payload & {
|
|
|
128153
129146
|
errors?: Maybe<Array<MutationError>>;
|
|
128154
129147
|
success: Scalars['Boolean']['output'];
|
|
128155
129148
|
};
|
|
129149
|
+
export declare type JpdViewsServiceSetAssocToNewSpacesInput = {
|
|
129150
|
+
assocToNewSpaces: Scalars['Boolean']['input'];
|
|
129151
|
+
id: Scalars['ID']['input'];
|
|
129152
|
+
};
|
|
128156
129153
|
export declare type JpdViewsServiceSort = {
|
|
128157
129154
|
__typename?: 'JpdViewsServiceSort';
|
|
128158
129155
|
field: JpdViewsServiceField;
|
|
@@ -128336,6 +129333,11 @@ export declare enum JsmChannelsConnectionType {
|
|
|
128336
129333
|
Okta = "OKTA"
|
|
128337
129334
|
}
|
|
128338
129335
|
export declare type JsmChannelsConversationsByContainerAriResult = JsmChannelsOrchestratorConversationsConnection | QueryError;
|
|
129336
|
+
export declare type JsmChannelsCustomPlanGraphAttribute = {
|
|
129337
|
+
__typename?: 'JsmChannelsCustomPlanGraphAttribute';
|
|
129338
|
+
key: Scalars['String']['output'];
|
|
129339
|
+
value: Scalars['String']['output'];
|
|
129340
|
+
};
|
|
128339
129341
|
export declare type JsmChannelsCustomPlanNodeAttribute = {
|
|
128340
129342
|
__typename?: 'JsmChannelsCustomPlanNodeAttribute';
|
|
128341
129343
|
key: Scalars['String']['output'];
|
|
@@ -128525,6 +129527,7 @@ export declare type JsmChannelsResolutionPlanActionPayload = Payload & {
|
|
|
128525
129527
|
export declare type JsmChannelsResolutionPlanGraph = {
|
|
128526
129528
|
__typename?: 'JsmChannelsResolutionPlanGraph';
|
|
128527
129529
|
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
129530
|
+
customPlanGraphAttributes?: Maybe<Array<JsmChannelsCustomPlanGraphAttribute>>;
|
|
128528
129531
|
graph?: Maybe<Array<Array<Scalars['ID']['output']>>>;
|
|
128529
129532
|
isLoading: Scalars['Boolean']['output'];
|
|
128530
129533
|
nodes: Array<JsmChannelsPlanNodeMapEntry>;
|
|
@@ -129270,12 +130273,14 @@ export declare type JsmConversationSettings = {
|
|
|
129270
130273
|
__typename?: 'JsmConversationSettings';
|
|
129271
130274
|
assignedTeam?: Maybe<TeamV2>;
|
|
129272
130275
|
defaultRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
130276
|
+
issueLabel?: Maybe<Scalars['String']['output']>;
|
|
129273
130277
|
projectAri?: Maybe<Scalars['String']['output']>;
|
|
129274
130278
|
slaList?: Maybe<Array<Maybe<JsmConversationSla>>>;
|
|
129275
130279
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
129276
130280
|
};
|
|
129277
130281
|
export declare type JsmConversationSettingsInput = {
|
|
129278
130282
|
defaultRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
130283
|
+
issueLabel?: InputMaybe<Scalars['String']['input']>;
|
|
129279
130284
|
projectAri?: InputMaybe<Scalars['String']['input']>;
|
|
129280
130285
|
slaList?: InputMaybe<Array<JsmConversationSlaInput>>;
|
|
129281
130286
|
teamId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -129773,6 +130778,7 @@ export declare type KitsuneFeedback = Node & {
|
|
|
129773
130778
|
snippets: KitsuneSnippetConnection;
|
|
129774
130779
|
source: KitsuneSource;
|
|
129775
130780
|
sourceCategory: KitsuneSourceCategory;
|
|
130781
|
+
spaceId: Scalars['ID']['output'];
|
|
129776
130782
|
summary?: Maybe<KitsuneSummary>;
|
|
129777
130783
|
title?: Maybe<Scalars['String']['output']>;
|
|
129778
130784
|
type: KitsuneFeedbackType;
|
|
@@ -129943,6 +130949,11 @@ export declare type KitsuneOrganizationEdge = KitsuneEdge & {
|
|
|
129943
130949
|
cursor: Scalars['String']['output'];
|
|
129944
130950
|
node?: Maybe<KitsuneOrganization>;
|
|
129945
130951
|
};
|
|
130952
|
+
export declare type KitsuneOrganizationNode = {
|
|
130953
|
+
__typename?: 'KitsuneOrganizationNode';
|
|
130954
|
+
organization?: Maybe<CustomerServiceCsmCustomer>;
|
|
130955
|
+
organizationId: Scalars['ID']['output'];
|
|
130956
|
+
};
|
|
129946
130957
|
export declare type KitsunePaginationInput = {
|
|
129947
130958
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129948
130959
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -131877,6 +132888,10 @@ export declare type LoomAcceptOrganizationInvitation = {
|
|
|
131877
132888
|
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
131878
132889
|
success: Scalars['String']['output'];
|
|
131879
132890
|
};
|
|
132891
|
+
export declare enum LoomCalendarIntegrationType {
|
|
132892
|
+
GoogleCalendar = "GOOGLE_CALENDAR",
|
|
132893
|
+
MicrosoftOutlook = "MICROSOFT_OUTLOOK"
|
|
132894
|
+
}
|
|
131880
132895
|
export declare type LoomComment = Node & {
|
|
131881
132896
|
__typename?: 'LoomComment';
|
|
131882
132897
|
content?: Maybe<Scalars['String']['output']>;
|
|
@@ -131890,6 +132905,29 @@ export declare type LoomComment = Node & {
|
|
|
131890
132905
|
video?: Maybe<LoomVideo>;
|
|
131891
132906
|
videoId: Scalars['ID']['output'];
|
|
131892
132907
|
};
|
|
132908
|
+
export declare type LoomCommentConnection = {
|
|
132909
|
+
__typename?: 'LoomCommentConnection';
|
|
132910
|
+
edges?: Maybe<Array<Maybe<LoomCommentEdge>>>;
|
|
132911
|
+
pageInfo?: Maybe<LoomPageInfo>;
|
|
132912
|
+
};
|
|
132913
|
+
export declare type LoomCommentEdge = {
|
|
132914
|
+
__typename?: 'LoomCommentEdge';
|
|
132915
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
132916
|
+
node?: Maybe<LoomComment>;
|
|
132917
|
+
};
|
|
132918
|
+
export declare type LoomConnectedCalendar = {
|
|
132919
|
+
__typename?: 'LoomConnectedCalendar';
|
|
132920
|
+
guid: Scalars['ID']['output'];
|
|
132921
|
+
integrationType: LoomCalendarIntegrationType;
|
|
132922
|
+
meetings?: Maybe<LoomMeetingConnection>;
|
|
132923
|
+
};
|
|
132924
|
+
export declare type LoomConnectedCalendarMeetingsArgs = {
|
|
132925
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132926
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132927
|
+
order?: InputMaybe<LoomSortDirection>;
|
|
132928
|
+
rangeEnd?: InputMaybe<Scalars['String']['input']>;
|
|
132929
|
+
rangeStart?: InputMaybe<Scalars['String']['input']>;
|
|
132930
|
+
};
|
|
131893
132931
|
export declare type LoomDeleteVideo = {
|
|
131894
132932
|
__typename?: 'LoomDeleteVideo';
|
|
131895
132933
|
failed?: Maybe<Array<Maybe<LoomDeleteVideoFailure>>>;
|
|
@@ -131923,6 +132961,8 @@ export declare type LoomMeeting = Node & {
|
|
|
131923
132961
|
external?: Maybe<Scalars['Boolean']['output']>;
|
|
131924
132962
|
externalCalendarEventId?: Maybe<Scalars['String']['output']>;
|
|
131925
132963
|
id: Scalars['ID']['output'];
|
|
132964
|
+
inviteeAris?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
132965
|
+
invitees?: Maybe<Array<Maybe<User>>>;
|
|
131926
132966
|
recorder?: Maybe<User>;
|
|
131927
132967
|
recorderId?: Maybe<Scalars['ID']['output']>;
|
|
131928
132968
|
recurrenceAri?: Maybe<Scalars['ID']['output']>;
|
|
@@ -131932,15 +132972,33 @@ export declare type LoomMeeting = Node & {
|
|
|
131932
132972
|
title: Scalars['String']['output'];
|
|
131933
132973
|
video?: Maybe<LoomVideo>;
|
|
131934
132974
|
};
|
|
132975
|
+
export declare type LoomMeetingConnection = {
|
|
132976
|
+
__typename?: 'LoomMeetingConnection';
|
|
132977
|
+
edges?: Maybe<Array<Maybe<LoomMeetingEdge>>>;
|
|
132978
|
+
pageInfo?: Maybe<LoomPageInfo>;
|
|
132979
|
+
};
|
|
132980
|
+
export declare type LoomMeetingEdge = {
|
|
132981
|
+
__typename?: 'LoomMeetingEdge';
|
|
132982
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
132983
|
+
node?: Maybe<LoomMeeting>;
|
|
132984
|
+
};
|
|
131935
132985
|
export declare type LoomMeetingRecurrence = Node & {
|
|
131936
132986
|
__typename?: 'LoomMeetingRecurrence';
|
|
131937
132987
|
id: Scalars['ID']['output'];
|
|
131938
132988
|
meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
132989
|
+
meetingsConnections?: Maybe<LoomMeetingConnection>;
|
|
131939
132990
|
};
|
|
131940
132991
|
export declare type LoomMeetingRecurrenceMeetingsArgs = {
|
|
131941
132992
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131942
132993
|
meetingIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
131943
132994
|
};
|
|
132995
|
+
export declare type LoomMeetingRecurrenceMeetingsConnectionsArgs = {
|
|
132996
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132997
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132998
|
+
order?: InputMaybe<LoomSortDirection>;
|
|
132999
|
+
rangeEnd?: InputMaybe<Scalars['String']['input']>;
|
|
133000
|
+
rangeStart?: InputMaybe<Scalars['String']['input']>;
|
|
133001
|
+
};
|
|
131944
133002
|
export declare enum LoomMeetingSource {
|
|
131945
133003
|
GoogleCalendar = "GOOGLE_CALENDAR",
|
|
131946
133004
|
MicrosoftOutlook = "MICROSOFT_OUTLOOK",
|
|
@@ -131951,6 +133009,13 @@ export declare type LoomMeetings = {
|
|
|
131951
133009
|
recurring?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
131952
133010
|
single?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
131953
133011
|
};
|
|
133012
|
+
export declare type LoomPageInfo = {
|
|
133013
|
+
__typename?: 'LoomPageInfo';
|
|
133014
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
133015
|
+
hasNextPage?: Maybe<Scalars['Boolean']['output']>;
|
|
133016
|
+
hasPreviousPage?: Maybe<Scalars['Boolean']['output']>;
|
|
133017
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
133018
|
+
};
|
|
131954
133019
|
export declare type LoomPhrase = {
|
|
131955
133020
|
__typename?: 'LoomPhrase';
|
|
131956
133021
|
ranges?: Maybe<Array<LoomPhraseRange>>;
|
|
@@ -131974,6 +133039,10 @@ export declare type LoomSettings = {
|
|
|
131974
133039
|
meetingNotesAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
131975
133040
|
meetingNotesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131976
133041
|
};
|
|
133042
|
+
export declare enum LoomSortDirection {
|
|
133043
|
+
Asc = "ASC",
|
|
133044
|
+
Desc = "DESC"
|
|
133045
|
+
}
|
|
131977
133046
|
export declare type LoomSpace = Node & {
|
|
131978
133047
|
__typename?: 'LoomSpace';
|
|
131979
133048
|
id: Scalars['ID']['output'];
|
|
@@ -132117,6 +133186,7 @@ export declare type LoomVideo = Node & {
|
|
|
132117
133186
|
__typename?: 'LoomVideo';
|
|
132118
133187
|
collaborators?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
132119
133188
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
133189
|
+
comments?: Maybe<LoomCommentConnection>;
|
|
132120
133190
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
132121
133191
|
description?: Maybe<Scalars['String']['output']>;
|
|
132122
133192
|
id: Scalars['ID']['output'];
|
|
@@ -132137,6 +133207,10 @@ export declare type LoomVideo = Node & {
|
|
|
132137
133207
|
url: Scalars['String']['output'];
|
|
132138
133208
|
viewCounts?: Maybe<LoomVideoViewCounts>;
|
|
132139
133209
|
};
|
|
133210
|
+
export declare type LoomVideoCommentsArgs = {
|
|
133211
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
133212
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133213
|
+
};
|
|
132140
133214
|
export declare type LoomVideoDefaultThumbnailsSources = {
|
|
132141
133215
|
__typename?: 'LoomVideoDefaultThumbnailsSources';
|
|
132142
133216
|
default?: Maybe<Scalars['String']['output']>;
|
|
@@ -132152,6 +133226,16 @@ export declare type LoomVideoViewCounts = {
|
|
|
132152
133226
|
distinct?: Maybe<Scalars['Int']['output']>;
|
|
132153
133227
|
total?: Maybe<Scalars['Int']['output']>;
|
|
132154
133228
|
};
|
|
133229
|
+
export declare type LoomWorkspace = Node & {
|
|
133230
|
+
__typename?: 'LoomWorkspace';
|
|
133231
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
133232
|
+
guid: Scalars['ID']['output'];
|
|
133233
|
+
hidden: Scalars['Boolean']['output'];
|
|
133234
|
+
id: Scalars['ID']['output'];
|
|
133235
|
+
memberCount: Scalars['Int']['output'];
|
|
133236
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
133237
|
+
type: Scalars['String']['output'];
|
|
133238
|
+
};
|
|
132155
133239
|
export declare type LpCertSort = {
|
|
132156
133240
|
sortDirection?: InputMaybe<SortDirection>;
|
|
132157
133241
|
sortField?: InputMaybe<LpCertSortField>;
|
|
@@ -135115,6 +136199,30 @@ export declare type MarketplaceStoreGetUserPreferencesResponse = {
|
|
|
135115
136199
|
preferences: MarketplaceStoreUserPreferences;
|
|
135116
136200
|
version: Scalars['Int']['output'];
|
|
135117
136201
|
};
|
|
136202
|
+
export declare type MarketplaceStoreGridBreakpointConfig = {
|
|
136203
|
+
__typename?: 'MarketplaceStoreGridBreakpointConfig';
|
|
136204
|
+
cells: Array<Array<MarketplaceStoreGridCell>>;
|
|
136205
|
+
columns?: Maybe<Scalars['Int']['output']>;
|
|
136206
|
+
};
|
|
136207
|
+
export declare type MarketplaceStoreGridCell = {
|
|
136208
|
+
__typename?: 'MarketplaceStoreGridCell';
|
|
136209
|
+
columnSpan?: Maybe<Scalars['Int']['output']>;
|
|
136210
|
+
content: MarketplaceStoreGridCellContent;
|
|
136211
|
+
rowSpan?: Maybe<Scalars['Int']['output']>;
|
|
136212
|
+
};
|
|
136213
|
+
export declare type MarketplaceStoreGridCellContent = MarketplaceStoreGridCellSlot | MarketplaceStoreMarketingSlot;
|
|
136214
|
+
export declare type MarketplaceStoreGridCellSlot = {
|
|
136215
|
+
__typename?: 'MarketplaceStoreGridCellSlot';
|
|
136216
|
+
theme?: Maybe<Scalars['String']['output']>;
|
|
136217
|
+
variant?: Maybe<Scalars['String']['output']>;
|
|
136218
|
+
widgetKind: MarketplaceStoreLayoutSlotWidgetKind;
|
|
136219
|
+
};
|
|
136220
|
+
export declare type MarketplaceStoreGridWidget = {
|
|
136221
|
+
__typename?: 'MarketplaceStoreGridWidget';
|
|
136222
|
+
lg: MarketplaceStoreGridBreakpointConfig;
|
|
136223
|
+
md: MarketplaceStoreGridBreakpointConfig;
|
|
136224
|
+
sm: MarketplaceStoreGridBreakpointConfig;
|
|
136225
|
+
};
|
|
135118
136226
|
export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
|
|
135119
136227
|
__typename?: 'MarketplaceStoreHomePageFeaturedSection';
|
|
135120
136228
|
description: Scalars['String']['output'];
|
|
@@ -135135,6 +136243,15 @@ export declare type MarketplaceStoreHomePageHighlightedSection = MarketplaceStor
|
|
|
135135
136243
|
export declare enum MarketplaceStoreHomePageHighlightedSectionVariation {
|
|
135136
136244
|
Prominent = "PROMINENT"
|
|
135137
136245
|
}
|
|
136246
|
+
export declare type MarketplaceStoreHomePageRecommendationsSection = MarketplaceStoreHomePageSection & {
|
|
136247
|
+
__typename?: 'MarketplaceStoreHomePageRecommendationsSection';
|
|
136248
|
+
description: Scalars['String']['output'];
|
|
136249
|
+
id: Scalars['ID']['output'];
|
|
136250
|
+
recommendationResultsCount: Scalars['Int']['output'];
|
|
136251
|
+
screenSpecificProperties: MarketplaceStoreHomePageSectionScreenSpecificProperties;
|
|
136252
|
+
searchMetadata: MarketplaceStoreSearchMetadata;
|
|
136253
|
+
title: Scalars['String']['output'];
|
|
136254
|
+
};
|
|
135138
136255
|
export declare type MarketplaceStoreHomePageRegularSection = MarketplaceStoreHomePageSection & {
|
|
135139
136256
|
__typename?: 'MarketplaceStoreHomePageRegularSection';
|
|
135140
136257
|
algoliaQueryMetadata: MarketplaceStoreAlgoliaQueryMetadata;
|
|
@@ -135255,9 +136372,10 @@ export declare type MarketplaceStoreLayoutRegularSection = MarketplaceStoreLayou
|
|
|
135255
136372
|
key: MarketplaceStoreLayoutSectionKeys;
|
|
135256
136373
|
navigationUrl?: Maybe<Scalars['String']['output']>;
|
|
135257
136374
|
objectsFetchCount?: Maybe<Scalars['Int']['output']>;
|
|
135258
|
-
screenSpecificProperties?: Maybe<MarketplaceStoreLayoutSectionScreenSpecificProperties>;
|
|
135259
136375
|
searchMetadata?: Maybe<MarketplaceStoreSearchMetadata>;
|
|
135260
136376
|
title: Scalars['String']['output'];
|
|
136377
|
+
type: MarketplaceStoreLayoutSectionType;
|
|
136378
|
+
widgets?: Maybe<Array<Maybe<MarketplaceStoreLayoutWidget>>>;
|
|
135261
136379
|
};
|
|
135262
136380
|
export declare type MarketplaceStoreLayoutSection = {
|
|
135263
136381
|
description: Scalars['String']['output'];
|
|
@@ -135265,22 +136383,19 @@ export declare type MarketplaceStoreLayoutSection = {
|
|
|
135265
136383
|
title: Scalars['String']['output'];
|
|
135266
136384
|
};
|
|
135267
136385
|
export declare enum MarketplaceStoreLayoutSectionKeys {
|
|
135268
|
-
BestSellers = "BEST_SELLERS",
|
|
135269
136386
|
PickupWhereYouLeft = "PICKUP_WHERE_YOU_LEFT",
|
|
135270
|
-
|
|
135271
|
-
|
|
136387
|
+
RecommendedForYou = "RECOMMENDED_FOR_YOU",
|
|
136388
|
+
TrustedPartners = "TRUSTED_PARTNERS"
|
|
135272
136389
|
}
|
|
135273
|
-
export declare
|
|
135274
|
-
|
|
135275
|
-
|
|
135276
|
-
|
|
135277
|
-
}
|
|
135278
|
-
export declare
|
|
135279
|
-
|
|
135280
|
-
|
|
135281
|
-
|
|
135282
|
-
sm: MarketplaceStoreLayoutSectionScreenConfig;
|
|
135283
|
-
};
|
|
136390
|
+
export declare enum MarketplaceStoreLayoutSectionType {
|
|
136391
|
+
Brand = "BRAND",
|
|
136392
|
+
Dark = "DARK",
|
|
136393
|
+
List = "LIST"
|
|
136394
|
+
}
|
|
136395
|
+
export declare enum MarketplaceStoreLayoutSlotWidgetKind {
|
|
136396
|
+
ObjectTile = "OBJECT_TILE"
|
|
136397
|
+
}
|
|
136398
|
+
export declare type MarketplaceStoreLayoutWidget = MarketplaceStoreGridWidget;
|
|
135284
136399
|
export declare type MarketplaceStoreLogDetails = {
|
|
135285
136400
|
__typename?: 'MarketplaceStoreLogDetails';
|
|
135286
136401
|
logEUDShareWithThirdParty?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -135322,6 +136437,18 @@ export declare type MarketplaceStoreLoggedInUserLinksManageDeveloperSpaceArgs =
|
|
|
135322
136437
|
developerId?: InputMaybe<Scalars['ID']['input']>;
|
|
135323
136438
|
vendorId: Scalars['ID']['input'];
|
|
135324
136439
|
};
|
|
136440
|
+
export declare type MarketplaceStoreMarketingAction = {
|
|
136441
|
+
__typename?: 'MarketplaceStoreMarketingAction';
|
|
136442
|
+
label: Scalars['String']['output'];
|
|
136443
|
+
url: Scalars['String']['output'];
|
|
136444
|
+
};
|
|
136445
|
+
export declare type MarketplaceStoreMarketingSlot = {
|
|
136446
|
+
__typename?: 'MarketplaceStoreMarketingSlot';
|
|
136447
|
+
actions?: Maybe<Array<Maybe<MarketplaceStoreMarketingAction>>>;
|
|
136448
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
136449
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
136450
|
+
title: Scalars['String']['output'];
|
|
136451
|
+
};
|
|
135325
136452
|
export declare type MarketplaceStoreMultiInstanceDetails = {
|
|
135326
136453
|
isMultiInstance: Scalars['Boolean']['output'];
|
|
135327
136454
|
multiInstanceEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
@@ -135601,6 +136728,12 @@ export declare type MarketplaceStoreProductListing = {
|
|
|
135601
136728
|
summary?: Maybe<Scalars['String']['output']>;
|
|
135602
136729
|
vendorId: Scalars['String']['output'];
|
|
135603
136730
|
};
|
|
136731
|
+
export declare type MarketplaceStoreProductListingError = {
|
|
136732
|
+
__typename?: 'MarketplaceStoreProductListingError';
|
|
136733
|
+
id: Scalars['ID']['output'];
|
|
136734
|
+
message: Scalars['String']['output'];
|
|
136735
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
136736
|
+
};
|
|
135604
136737
|
export declare type MarketplaceStoreProductListingHighlight = {
|
|
135605
136738
|
__typename?: 'MarketplaceStoreProductListingHighlight';
|
|
135606
136739
|
caption?: Maybe<Scalars['String']['output']>;
|
|
@@ -135619,6 +136752,7 @@ export declare type MarketplaceStoreProductListingImage = {
|
|
|
135619
136752
|
url?: Maybe<Scalars['String']['output']>;
|
|
135620
136753
|
width: Scalars['Int']['output'];
|
|
135621
136754
|
};
|
|
136755
|
+
export declare type MarketplaceStoreProductListingResponse = MarketplaceStoreProductListing | MarketplaceStoreProductListingError;
|
|
135622
136756
|
export declare type MarketplaceStoreProductListingScreenshot = {
|
|
135623
136757
|
__typename?: 'MarketplaceStoreProductListingScreenshot';
|
|
135624
136758
|
caption?: Maybe<Scalars['String']['output']>;
|
|
@@ -135675,6 +136809,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
135675
136809
|
eligibleOfferingsForApp: MarketplaceStoreEligibleAppOfferingsResponse;
|
|
135676
136810
|
geoip: MarketplaceStoreGeoIpResponse;
|
|
135677
136811
|
getAppMigration: MarketplaceStoreProductMigrationResponse;
|
|
136812
|
+
getProductListing: MarketplaceStoreProductListingResponse;
|
|
135678
136813
|
getProductMigration: MarketplaceStoreProductMigrationResponse;
|
|
135679
136814
|
homePage: MarketplaceStoreHomePageResponse;
|
|
135680
136815
|
hostStatus: MarketplaceStoreHostStatusResponse;
|
|
@@ -135754,6 +136889,9 @@ export declare type MarketplaceStoreQueryApiEligibleOfferingsForAppArgs = {
|
|
|
135754
136889
|
export declare type MarketplaceStoreQueryApiGetAppMigrationArgs = {
|
|
135755
136890
|
appKey: Scalars['String']['input'];
|
|
135756
136891
|
};
|
|
136892
|
+
export declare type MarketplaceStoreQueryApiGetProductListingArgs = {
|
|
136893
|
+
productId: Scalars['ID']['input'];
|
|
136894
|
+
};
|
|
135757
136895
|
export declare type MarketplaceStoreQueryApiGetProductMigrationArgs = {
|
|
135758
136896
|
productId: Scalars['ID']['input'];
|
|
135759
136897
|
};
|
|
@@ -136828,6 +137966,17 @@ export declare type MercuryCreateFiscalCalendarConfigurationPayload = Payload &
|
|
|
136828
137966
|
errors?: Maybe<Array<MutationError>>;
|
|
136829
137967
|
success: Scalars['Boolean']['output'];
|
|
136830
137968
|
};
|
|
137969
|
+
export declare type MercuryCreateFocusAreaBudgetInput = {
|
|
137970
|
+
amount: Scalars['String']['input'];
|
|
137971
|
+
fiscalYear: Scalars['Int']['input'];
|
|
137972
|
+
focusAreaId: Scalars['ID']['input'];
|
|
137973
|
+
};
|
|
137974
|
+
export declare type MercuryCreateFocusAreaBudgetPayload = Payload & {
|
|
137975
|
+
__typename?: 'MercuryCreateFocusAreaBudgetPayload';
|
|
137976
|
+
createdFocusAreaBudget?: Maybe<MercuryFocusAreaBudget>;
|
|
137977
|
+
errors?: Maybe<Array<MutationError>>;
|
|
137978
|
+
success: Scalars['Boolean']['output'];
|
|
137979
|
+
};
|
|
136831
137980
|
export declare type MercuryCreateFocusAreaChange = MercuryChangeInterface & Node & {
|
|
136832
137981
|
__typename?: 'MercuryCreateFocusAreaChange';
|
|
136833
137982
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
@@ -137207,6 +138356,14 @@ export declare type MercuryDeleteCustomFieldDefinitionPayload = {
|
|
|
137207
138356
|
errors?: Maybe<Array<MutationError>>;
|
|
137208
138357
|
success: Scalars['Boolean']['output'];
|
|
137209
138358
|
};
|
|
138359
|
+
export declare type MercuryDeleteFocusAreaBudgetInput = {
|
|
138360
|
+
id: Scalars['ID']['input'];
|
|
138361
|
+
};
|
|
138362
|
+
export declare type MercuryDeleteFocusAreaBudgetPayload = Payload & {
|
|
138363
|
+
__typename?: 'MercuryDeleteFocusAreaBudgetPayload';
|
|
138364
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138365
|
+
success: Scalars['Boolean']['output'];
|
|
138366
|
+
};
|
|
137210
138367
|
export declare type MercuryDeleteFocusAreaGoalLinksInput = {
|
|
137211
138368
|
atlasGoalAris: Array<Scalars['String']['input']>;
|
|
137212
138369
|
focusAreaAri: Scalars['String']['input'];
|
|
@@ -137346,19 +138503,19 @@ export declare type MercuryEstimateCostAtCompletion = {
|
|
|
137346
138503
|
};
|
|
137347
138504
|
export declare type MercuryEstimateCostAtCompletionByCostClassification = {
|
|
137348
138505
|
__typename?: 'MercuryEstimateCostAtCompletionByCostClassification';
|
|
137349
|
-
|
|
137350
|
-
|
|
138506
|
+
costSubtype?: Maybe<MercuryCostSubtype>;
|
|
138507
|
+
costType?: Maybe<MercuryCostType>;
|
|
137351
138508
|
total?: Maybe<MercuryMoney>;
|
|
137352
138509
|
};
|
|
137353
138510
|
export declare type MercuryEstimateCostAtCompletionByDimension = MercuryEstimateCostAtCompletionByCostClassification | MercuryEstimateCostAtCompletionByExpenditureType | MercuryEstimateCostAtCompletionByInvestmentCategory;
|
|
137354
138511
|
export declare type MercuryEstimateCostAtCompletionByExpenditureType = {
|
|
137355
138512
|
__typename?: 'MercuryEstimateCostAtCompletionByExpenditureType';
|
|
137356
|
-
|
|
138513
|
+
expenditureType?: Maybe<MercuryExpenditureType>;
|
|
137357
138514
|
total?: Maybe<MercuryMoney>;
|
|
137358
138515
|
};
|
|
137359
138516
|
export declare type MercuryEstimateCostAtCompletionByInvestmentCategory = {
|
|
137360
138517
|
__typename?: 'MercuryEstimateCostAtCompletionByInvestmentCategory';
|
|
137361
|
-
|
|
138518
|
+
investmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
137362
138519
|
total?: Maybe<MercuryMoney>;
|
|
137363
138520
|
};
|
|
137364
138521
|
export declare enum MercuryEventType {
|
|
@@ -137482,7 +138639,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
137482
138639
|
archived: Scalars['Boolean']['output'];
|
|
137483
138640
|
ari: Scalars['String']['output'];
|
|
137484
138641
|
asks?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
137485
|
-
|
|
138642
|
+
budgets?: Maybe<Array<Maybe<MercuryFocusAreaBudget>>>;
|
|
137486
138643
|
costSummary?: Maybe<MercuryFocusAreaCostSummary>;
|
|
137487
138644
|
createdDate: Scalars['String']['output'];
|
|
137488
138645
|
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
@@ -137518,6 +138675,10 @@ export declare type MercuryFocusAreaAsksArgs = {
|
|
|
137518
138675
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
137519
138676
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
137520
138677
|
};
|
|
138678
|
+
export declare type MercuryFocusAreaBudgetsArgs = {
|
|
138679
|
+
endFiscalYear: Scalars['Int']['input'];
|
|
138680
|
+
startFiscalYear: Scalars['Int']['input'];
|
|
138681
|
+
};
|
|
137521
138682
|
export declare type MercuryFocusAreaCostSummaryArgs = {
|
|
137522
138683
|
dimensions?: InputMaybe<Array<MercuryCostSummaryDimension>>;
|
|
137523
138684
|
endYearMonth: Scalars['String']['input'];
|
|
@@ -137576,6 +138737,35 @@ export declare type MercuryFocusAreaActivityHistory = Node & {
|
|
|
137576
138737
|
export declare type MercuryFocusAreaActivitySort = {
|
|
137577
138738
|
order: SortOrder;
|
|
137578
138739
|
};
|
|
138740
|
+
export declare type MercuryFocusAreaBudget = Node & {
|
|
138741
|
+
__typename?: 'MercuryFocusAreaBudget';
|
|
138742
|
+
amount: MercuryMoney;
|
|
138743
|
+
createdBy?: Maybe<User>;
|
|
138744
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
138745
|
+
fiscalYear: Scalars['Int']['output'];
|
|
138746
|
+
focusArea?: Maybe<MercuryFocusArea>;
|
|
138747
|
+
id: Scalars['ID']['output'];
|
|
138748
|
+
updatedBy?: Maybe<User>;
|
|
138749
|
+
updatedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
138750
|
+
};
|
|
138751
|
+
export declare type MercuryFocusAreaBudgetConnection = {
|
|
138752
|
+
__typename?: 'MercuryFocusAreaBudgetConnection';
|
|
138753
|
+
edges?: Maybe<Array<MercuryFocusAreaBudgetEdge>>;
|
|
138754
|
+
pageInfo: PageInfo;
|
|
138755
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
138756
|
+
};
|
|
138757
|
+
export declare type MercuryFocusAreaBudgetEdge = {
|
|
138758
|
+
__typename?: 'MercuryFocusAreaBudgetEdge';
|
|
138759
|
+
cursor: Scalars['String']['output'];
|
|
138760
|
+
node?: Maybe<MercuryFocusAreaBudget>;
|
|
138761
|
+
};
|
|
138762
|
+
export declare type MercuryFocusAreaBudgetSort = {
|
|
138763
|
+
field: MercuryFocusAreaBudgetSortField;
|
|
138764
|
+
order: SortOrder;
|
|
138765
|
+
};
|
|
138766
|
+
export declare enum MercuryFocusAreaBudgetSortField {
|
|
138767
|
+
FiscalYear = "FISCAL_YEAR"
|
|
138768
|
+
}
|
|
137579
138769
|
export declare type MercuryFocusAreaChangeRequirements = {
|
|
137580
138770
|
__typename?: 'MercuryFocusAreaChangeRequirements';
|
|
137581
138771
|
changeProposalId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -137997,6 +139187,7 @@ export declare type MercuryFundsMutationApi = {
|
|
|
137997
139187
|
createCostPeriodValue?: Maybe<MercuryCreateCostPeriodValuePayload>;
|
|
137998
139188
|
createCostSubtype?: Maybe<MercuryCreateCostSubtypePayload>;
|
|
137999
139189
|
createFiscalCalendarConfiguration?: Maybe<MercuryCreateFiscalCalendarConfigurationPayload>;
|
|
139190
|
+
createFocusAreaBudget?: Maybe<MercuryCreateFocusAreaBudgetPayload>;
|
|
138000
139191
|
createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
|
|
138001
139192
|
deleteBenefitItem?: Maybe<MercuryDeleteBenefitItemPayload>;
|
|
138002
139193
|
deleteBenefitPeriodValue?: Maybe<MercuryDeleteBenefitPeriodValuePayload>;
|
|
@@ -138004,6 +139195,7 @@ export declare type MercuryFundsMutationApi = {
|
|
|
138004
139195
|
deleteCostItem?: Maybe<MercuryDeleteCostItemPayload>;
|
|
138005
139196
|
deleteCostPeriodValue?: Maybe<MercuryDeleteCostPeriodValuePayload>;
|
|
138006
139197
|
deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
|
|
139198
|
+
deleteFocusAreaBudget?: Maybe<MercuryDeleteFocusAreaBudgetPayload>;
|
|
138007
139199
|
deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
|
|
138008
139200
|
setBaseline?: Maybe<MercurySetBaselinePayload>;
|
|
138009
139201
|
unsetBaseline?: Maybe<MercuryUnsetBaselinePayload>;
|
|
@@ -138017,6 +139209,7 @@ export declare type MercuryFundsMutationApi = {
|
|
|
138017
139209
|
updateCostItemName?: Maybe<MercuryUpdateCostItemNamePayload>;
|
|
138018
139210
|
updateCostPeriodValueAmount?: Maybe<MercuryUpdateCostPeriodValueAmountPayload>;
|
|
138019
139211
|
updateCostSubtypeName?: Maybe<MercuryUpdateCostSubtypePayload>;
|
|
139212
|
+
updateFocusAreaBudgetAmount?: Maybe<MercuryUpdateFocusAreaBudgetPayload>;
|
|
138020
139213
|
updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
138021
139214
|
};
|
|
138022
139215
|
export declare type MercuryFundsMutationApiCreateBenefitItemArgs = {
|
|
@@ -138040,6 +139233,9 @@ export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
|
|
|
138040
139233
|
export declare type MercuryFundsMutationApiCreateFiscalCalendarConfigurationArgs = {
|
|
138041
139234
|
input: MercuryCreateFiscalCalendarConfigurationInput;
|
|
138042
139235
|
};
|
|
139236
|
+
export declare type MercuryFundsMutationApiCreateFocusAreaBudgetArgs = {
|
|
139237
|
+
input: MercuryCreateFocusAreaBudgetInput;
|
|
139238
|
+
};
|
|
138043
139239
|
export declare type MercuryFundsMutationApiCreateInvestmentCategoryArgs = {
|
|
138044
139240
|
input: MercuryCreateInvestmentCategoryInput;
|
|
138045
139241
|
};
|
|
@@ -138061,6 +139257,9 @@ export declare type MercuryFundsMutationApiDeleteCostPeriodValueArgs = {
|
|
|
138061
139257
|
export declare type MercuryFundsMutationApiDeleteCostSubtypeArgs = {
|
|
138062
139258
|
input: MercuryDeleteCostSubtypeInput;
|
|
138063
139259
|
};
|
|
139260
|
+
export declare type MercuryFundsMutationApiDeleteFocusAreaBudgetArgs = {
|
|
139261
|
+
input: MercuryDeleteFocusAreaBudgetInput;
|
|
139262
|
+
};
|
|
138064
139263
|
export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
|
|
138065
139264
|
input: MercuryDeleteInvestmentCategoryInput;
|
|
138066
139265
|
};
|
|
@@ -138100,6 +139299,9 @@ export declare type MercuryFundsMutationApiUpdateCostPeriodValueAmountArgs = {
|
|
|
138100
139299
|
export declare type MercuryFundsMutationApiUpdateCostSubtypeNameArgs = {
|
|
138101
139300
|
input: MercuryUpdateCostSubtypeNameInput;
|
|
138102
139301
|
};
|
|
139302
|
+
export declare type MercuryFundsMutationApiUpdateFocusAreaBudgetAmountArgs = {
|
|
139303
|
+
input: MercuryUpdateFocusAreaBudgetAmountInput;
|
|
139304
|
+
};
|
|
138103
139305
|
export declare type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
|
|
138104
139306
|
input: MercuryUpdateInvestmentCategoryNameInput;
|
|
138105
139307
|
};
|
|
@@ -138127,6 +139329,9 @@ export declare type MercuryFundsQueryApi = {
|
|
|
138127
139329
|
fiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
138128
139330
|
fiscalCalendarConfigurations?: Maybe<Array<Maybe<MercuryFiscalCalendarConfiguration>>>;
|
|
138129
139331
|
fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
|
|
139332
|
+
focusAreaBudgets?: Maybe<Array<Maybe<MercuryFocusAreaBudget>>>;
|
|
139333
|
+
focusAreaBudgetsByFocusAreaIds?: Maybe<Array<Maybe<MercuryFocusAreaBudget>>>;
|
|
139334
|
+
focusAreaBudgetsSearch?: Maybe<MercuryFocusAreaBudgetConnection>;
|
|
138130
139335
|
focusAreaMonthlySummaries?: Maybe<Array<Maybe<MercuryFocusAreaFundsMonthlySummary>>>;
|
|
138131
139336
|
investmentCategories?: Maybe<Array<Maybe<MercuryInvestmentCategory>>>;
|
|
138132
139337
|
investmentCategoriesSearch?: Maybe<MercuryInvestmentCategoryConnection>;
|
|
@@ -138216,6 +139421,21 @@ export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsSearchArgs =
|
|
|
138216
139421
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138217
139422
|
sort?: InputMaybe<Array<InputMaybe<MercuryFiscalCalendarConfigurationSort>>>;
|
|
138218
139423
|
};
|
|
139424
|
+
export declare type MercuryFundsQueryApiFocusAreaBudgetsArgs = {
|
|
139425
|
+
ids: Array<Scalars['ID']['input']>;
|
|
139426
|
+
};
|
|
139427
|
+
export declare type MercuryFundsQueryApiFocusAreaBudgetsByFocusAreaIdsArgs = {
|
|
139428
|
+
endFiscalYear: Scalars['Int']['input'];
|
|
139429
|
+
ids: Array<Scalars['ID']['input']>;
|
|
139430
|
+
startFiscalYear: Scalars['Int']['input'];
|
|
139431
|
+
};
|
|
139432
|
+
export declare type MercuryFundsQueryApiFocusAreaBudgetsSearchArgs = {
|
|
139433
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
139434
|
+
cloudId: Scalars['ID']['input'];
|
|
139435
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139436
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
139437
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaBudgetSort>>>;
|
|
139438
|
+
};
|
|
138219
139439
|
export declare type MercuryFundsQueryApiFocusAreaMonthlySummariesArgs = {
|
|
138220
139440
|
costTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
138221
139441
|
endDateExclusive?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -138287,6 +139507,7 @@ export declare enum MercuryImportExecutionErrorEntityType {
|
|
|
138287
139507
|
FocusArea = "FOCUS_AREA",
|
|
138288
139508
|
FocusAreaFunds = "FOCUS_AREA_FUNDS",
|
|
138289
139509
|
FocusAreaLink = "FOCUS_AREA_LINK",
|
|
139510
|
+
FundsBenefitItem = "FUNDS_BENEFIT_ITEM",
|
|
138290
139511
|
FundsCostItem = "FUNDS_COST_ITEM",
|
|
138291
139512
|
PeopleBudget = "PEOPLE_BUDGET",
|
|
138292
139513
|
Team = "TEAM",
|
|
@@ -138622,6 +139843,11 @@ export declare type MercuryLinkWorkToRiskPayload = Payload & {
|
|
|
138622
139843
|
errors?: Maybe<Array<MutationError>>;
|
|
138623
139844
|
success: Scalars['Boolean']['output'];
|
|
138624
139845
|
};
|
|
139846
|
+
export declare type MercuryLinkedGoalOrWorkAiSummary = {
|
|
139847
|
+
__typename?: 'MercuryLinkedGoalOrWorkAiSummary';
|
|
139848
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
139849
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
139850
|
+
};
|
|
138625
139851
|
export declare type MercuryLinkedGoalOrWorkSummary = {
|
|
138626
139852
|
__typename?: 'MercuryLinkedGoalOrWorkSummary';
|
|
138627
139853
|
focusAreaId: Scalars['ID']['output'];
|
|
@@ -139217,6 +140443,15 @@ export declare type MercuryPositionCountByStatus = {
|
|
|
139217
140443
|
count?: Maybe<Scalars['Int']['output']>;
|
|
139218
140444
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
139219
140445
|
};
|
|
140446
|
+
export declare type MercuryPositionDataSummary = {
|
|
140447
|
+
__typename?: 'MercuryPositionDataSummary';
|
|
140448
|
+
filledPositions?: Maybe<Scalars['Int']['output']>;
|
|
140449
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
140450
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
140451
|
+
totalPositions?: Maybe<Scalars['Int']['output']>;
|
|
140452
|
+
unfilledPercentage?: Maybe<Scalars['Float']['output']>;
|
|
140453
|
+
unfilledPositions?: Maybe<Scalars['Int']['output']>;
|
|
140454
|
+
};
|
|
139220
140455
|
export declare type MercuryPositionDeltaByStatus = {
|
|
139221
140456
|
__typename?: 'MercuryPositionDeltaByStatus';
|
|
139222
140457
|
positionDelta?: Maybe<Scalars['Int']['output']>;
|
|
@@ -139523,7 +140758,8 @@ export declare type MercuryQueryApi = {
|
|
|
139523
140758
|
aiFocusAreaGoalContextData?: Maybe<MercuryFocusAreaGoalContext>;
|
|
139524
140759
|
aiFocusAreaSummary?: Maybe<MercuryFocusAreaSummary>;
|
|
139525
140760
|
aiFocusAreaWorkContextData?: Maybe<MercuryFocusAreaWorkContext>;
|
|
139526
|
-
aiLinkedGoalOrWorkInsightSummary?: Maybe<
|
|
140761
|
+
aiLinkedGoalOrWorkInsightSummary?: Maybe<MercuryLinkedGoalOrWorkAiSummary>;
|
|
140762
|
+
aiPositionInsightSummary?: Maybe<MercuryPositionDataSummary>;
|
|
139527
140763
|
comments?: Maybe<MercuryCommentConnection>;
|
|
139528
140764
|
commentsByAris?: Maybe<Array<Maybe<MercuryComment>>>;
|
|
139529
140765
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
@@ -139540,7 +140776,6 @@ export declare type MercuryQueryApi = {
|
|
|
139540
140776
|
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
139541
140777
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
139542
140778
|
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
139543
|
-
focusAreas_internalDoNotUse?: Maybe<MercuryFocusAreaConnection>;
|
|
139544
140779
|
linkedGoalOrWorkSummary?: Maybe<MercuryLinkedGoalOrWorkSummary>;
|
|
139545
140780
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
139546
140781
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
@@ -139573,6 +140808,10 @@ export declare type MercuryQueryApiAiLinkedGoalOrWorkInsightSummaryArgs = {
|
|
|
139573
140808
|
focusAreaId: Scalars['ID']['input'];
|
|
139574
140809
|
sowId: Scalars['ID']['input'];
|
|
139575
140810
|
};
|
|
140811
|
+
export declare type MercuryQueryApiAiPositionInsightSummaryArgs = {
|
|
140812
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
140813
|
+
focusAreaId: Scalars['ID']['input'];
|
|
140814
|
+
};
|
|
139576
140815
|
export declare type MercuryQueryApiCommentsArgs = {
|
|
139577
140816
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139578
140817
|
cloudId: Scalars['ID']['input'];
|
|
@@ -139645,12 +140884,6 @@ export declare type MercuryQueryApiFocusAreasByExternalIdsArgs = {
|
|
|
139645
140884
|
cloudId: Scalars['ID']['input'];
|
|
139646
140885
|
ids: Array<Scalars['String']['input']>;
|
|
139647
140886
|
};
|
|
139648
|
-
export declare type MercuryQueryApiFocusAreas_InternalDoNotUseArgs = {
|
|
139649
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
139650
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139651
|
-
hydrationContextId?: InputMaybe<Scalars['ID']['input']>;
|
|
139652
|
-
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
139653
|
-
};
|
|
139654
140887
|
export declare type MercuryQueryApiLinkedGoalOrWorkSummaryArgs = {
|
|
139655
140888
|
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
139656
140889
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -140422,7 +141655,6 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
140422
141655
|
changeSummaryByFocusAreaIds?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
140423
141656
|
changeSummaryForChangeProposal?: Maybe<MercuryChangeSummaryForChangeProposal>;
|
|
140424
141657
|
changeSummaryForStrategicEvent?: Maybe<MercuryFocusAreaChangeSummary>;
|
|
140425
|
-
changeSummaryInternal?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
140426
141658
|
changeTypes: Array<MercuryChangeType>;
|
|
140427
141659
|
changes?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
140428
141660
|
changesByPositionIds?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
@@ -140493,9 +141725,6 @@ export declare type MercuryStrategicEventsQueryApiChangeSummaryForChangeProposal
|
|
|
140493
141725
|
export declare type MercuryStrategicEventsQueryApiChangeSummaryForStrategicEventArgs = {
|
|
140494
141726
|
strategicEventId?: InputMaybe<Scalars['ID']['input']>;
|
|
140495
141727
|
};
|
|
140496
|
-
export declare type MercuryStrategicEventsQueryApiChangeSummaryInternalArgs = {
|
|
140497
|
-
inputs: Array<MercuryChangeSummaryInput>;
|
|
140498
|
-
};
|
|
140499
141728
|
export declare type MercuryStrategicEventsQueryApiChangeTypesArgs = {
|
|
140500
141729
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
140501
141730
|
};
|
|
@@ -140957,6 +142186,16 @@ export declare type MercuryUpdateFocusAreaAboutContentInput = {
|
|
|
140957
142186
|
cloudId: Scalars['ID']['input'];
|
|
140958
142187
|
id: Scalars['ID']['input'];
|
|
140959
142188
|
};
|
|
142189
|
+
export declare type MercuryUpdateFocusAreaBudgetAmountInput = {
|
|
142190
|
+
amount: Scalars['String']['input'];
|
|
142191
|
+
id: Scalars['ID']['input'];
|
|
142192
|
+
};
|
|
142193
|
+
export declare type MercuryUpdateFocusAreaBudgetPayload = Payload & {
|
|
142194
|
+
__typename?: 'MercuryUpdateFocusAreaBudgetPayload';
|
|
142195
|
+
errors?: Maybe<Array<MutationError>>;
|
|
142196
|
+
success: Scalars['Boolean']['output'];
|
|
142197
|
+
updatedFocusAreaBudget?: Maybe<MercuryFocusAreaBudget>;
|
|
142198
|
+
};
|
|
140960
142199
|
export declare type MercuryUpdateFocusAreaHierarchyNameInput = {
|
|
140961
142200
|
id: Scalars['ID']['input'];
|
|
140962
142201
|
name: Scalars['String']['input'];
|
|
@@ -141463,7 +142702,6 @@ export declare type Mutation = {
|
|
|
141463
142702
|
__typename?: 'Mutation';
|
|
141464
142703
|
actions?: Maybe<ActionsMutation>;
|
|
141465
142704
|
activatePaywallContent?: Maybe<ActivatePaywallContentPayload>;
|
|
141466
|
-
addBetaUserAsSiteCreator?: Maybe<AddBetaUserAsSiteCreatorPayload>;
|
|
141467
142705
|
addDefaultExCoSpacePermissions?: Maybe<AddDefaultExCoSpacePermissionsPayload>;
|
|
141468
142706
|
addLabels?: Maybe<AddLabelsPayload>;
|
|
141469
142707
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
@@ -141578,6 +142816,7 @@ export declare type Mutation = {
|
|
|
141578
142816
|
assetsDM_createDataSource?: Maybe<AssetsDmCreateDataSourcePayload>;
|
|
141579
142817
|
assetsDM_createDataSourceType?: Maybe<AssetsDmCreateDataSourceTypeResponse>;
|
|
141580
142818
|
assetsDM_createDefaultCleansingRule?: Maybe<AssetsDmCreateDefaultCleansingRuleResponse>;
|
|
142819
|
+
assetsDM_createObjectAttribute?: Maybe<AssetsDmCreateObjectAttributeResponse>;
|
|
141581
142820
|
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
141582
142821
|
assetsDM_createObjectsListExportRequest?: Maybe<AssetsDmObjectsListExportRequestCreateResponse>;
|
|
141583
142822
|
assetsDM_createSavedSearch?: Maybe<AssetsDmSavedSearchesCreateResponse>;
|
|
@@ -141606,6 +142845,7 @@ export declare type Mutation = {
|
|
|
141606
142845
|
assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
|
|
141607
142846
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
141608
142847
|
assetsDM_importDataDictionary?: Maybe<AssetsDmImportDataDictionaryResponse>;
|
|
142848
|
+
assetsDM_resetDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
141609
142849
|
assetsDM_updateAttributePriority?: Maybe<AssetsDmUpdateAttributePriorityPayload>;
|
|
141610
142850
|
assetsDM_updateAttributePriorityOrder?: Maybe<AssetsDmAttributePriorityResponse>;
|
|
141611
142851
|
assetsDM_updateCleansingReason?: Maybe<AssetsDmUpdateCleansingReasonResponse>;
|
|
@@ -141613,8 +142853,10 @@ export declare type Mutation = {
|
|
|
141613
142853
|
assetsDM_updateDataSourcePriority?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
141614
142854
|
assetsDM_updateDataSourceType?: Maybe<AssetsDmUpdateDataSourceTypeResponse>;
|
|
141615
142855
|
assetsDM_updateDefaultCleansingRule?: Maybe<AssetsDmUpdateDefaultCleansingRuleResponse>;
|
|
142856
|
+
assetsVertical_createVerticalInstantiation: AssetsVerticalVerticalInstantiationPayload;
|
|
141616
142857
|
assetsVertical_generateInsights?: Maybe<AssetsVerticalGenerateInsightsPayload>;
|
|
141617
142858
|
assetsVertical_instantiateBundleByType: AssetsVerticalAsyncTaskPayload;
|
|
142859
|
+
assetsVertical_updateVerticalInstantiation: AssetsVerticalVerticalInstantiationPayload;
|
|
141618
142860
|
assets_updateObjectAttributeValue?: Maybe<AssetsAttributeOnObject>;
|
|
141619
142861
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
141620
142862
|
attachDanglingComment?: Maybe<Comment>;
|
|
@@ -141686,10 +142928,12 @@ export declare type Mutation = {
|
|
|
141686
142928
|
channelPlatform_createQueues?: Maybe<ChannelPlatformConnectQueue>;
|
|
141687
142929
|
channelPlatform_deleteQueues?: Maybe<ChannelPlatformMutationStatus>;
|
|
141688
142930
|
channelPlatform_endChatIfTicketIsNotPresent?: Maybe<ChannelPlatformChatClosureResponse>;
|
|
142931
|
+
channelPlatform_initiateOtp?: Maybe<ChannelPlatformSendOtpResponse>;
|
|
141689
142932
|
channelPlatform_performPluginAction?: Maybe<ChannelPlatformPluginActionResponse>;
|
|
141690
142933
|
channelPlatform_relayMessage?: Maybe<ChannelPlatformMutationStatus>;
|
|
141691
142934
|
channelPlatform_updateTracMetrics?: Maybe<ChannelPlatformTracMetricsResponse>;
|
|
141692
142935
|
channelPlatform_uploadAttachmentMetadata?: Maybe<ChannelPlatformAttachmentMetadataResponse>;
|
|
142936
|
+
channelPlatform_verifyOtp?: Maybe<ChannelPlatformVerifyOtpResponse>;
|
|
141693
142937
|
clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
|
|
141694
142938
|
cloudify_addRecommendation: CloudifyRecommendation;
|
|
141695
142939
|
cloudify_deleteRecommendations: Array<CloudifyRecommendationId>;
|
|
@@ -141773,6 +143017,7 @@ export declare type Mutation = {
|
|
|
141773
143017
|
confluence_removeTrack?: Maybe<ConfluenceRemoveTrackPayload>;
|
|
141774
143018
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
141775
143019
|
confluence_reorderTracks?: Maybe<ConfluenceReorderTrackPayload>;
|
|
143020
|
+
confluence_resolveApprovalAgent?: Maybe<ConfluenceApprovalAgentPayload>;
|
|
141776
143021
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
141777
143022
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
141778
143023
|
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
@@ -142012,6 +143257,7 @@ export declare type Mutation = {
|
|
|
142012
143257
|
goals_addProjectLink?: Maybe<TownsquareAddProjectLinkPayload>;
|
|
142013
143258
|
goals_archiveMetric?: Maybe<TownsquareGoalsArchiveMetricPayload>;
|
|
142014
143259
|
goals_clone?: Maybe<TownsquareGoalsClonePayload>;
|
|
143260
|
+
goals_connectSlackChannel?: Maybe<TownsquareGoalsConnectSlackChannelPayload>;
|
|
142015
143261
|
goals_create?: Maybe<TownsquareGoalsCreatePayload>;
|
|
142016
143262
|
goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
|
|
142017
143263
|
goals_createComment?: Maybe<TownsquareGoalsCreateCommentPayload>;
|
|
@@ -142026,6 +143272,7 @@ export declare type Mutation = {
|
|
|
142026
143272
|
goals_deleteLearning?: Maybe<TownsquareGoalsDeleteLearningPayload>;
|
|
142027
143273
|
goals_deleteProjectLink?: Maybe<TownsquareGoalsDeleteProjectLinkPayload>;
|
|
142028
143274
|
goals_deleteRisk?: Maybe<TownsquareGoalsDeleteRiskPayload>;
|
|
143275
|
+
goals_disconnectSlackChannel?: Maybe<TownsquareGoalsDisconnectSlackChannelPayload>;
|
|
142029
143276
|
goals_edit?: Maybe<TownsquareGoalsEditPayload>;
|
|
142030
143277
|
goals_editComment?: Maybe<TownsquareGoalsEditCommentPayload>;
|
|
142031
143278
|
goals_editDecision?: Maybe<TownsquareGoalsEditDecisionPayload>;
|
|
@@ -142094,6 +143341,8 @@ export declare type Mutation = {
|
|
|
142094
143341
|
jira?: Maybe<JiraMutation>;
|
|
142095
143342
|
jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
|
|
142096
143343
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
143344
|
+
jiraOpenBeta_createFeature?: Maybe<JiraOpenBetaFeatureCreatePayload>;
|
|
143345
|
+
jiraOpenBeta_updateFeature?: Maybe<JiraOpenBetaFeatureUpdatePayload>;
|
|
142097
143346
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
142098
143347
|
jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
142099
143348
|
jira_archiveIssue?: Maybe<JiraIssueArchivePayload>;
|
|
@@ -142218,6 +143467,7 @@ export declare type Mutation = {
|
|
|
142218
143467
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
142219
143468
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
142220
143469
|
jpdViewsService_associateGlobalView?: Maybe<JpdViewsServiceAssociateGlobalViewPayload>;
|
|
143470
|
+
jpdViewsService_cloneViewIntoGlobal?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
142221
143471
|
jpdViewsService_createGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload>;
|
|
142222
143472
|
jpdViewsService_createGlobalViewV2?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
142223
143473
|
jpdViewsService_deleteGlobalView?: Maybe<JpdViewsServiceDeleteGlobalViewPayload>;
|
|
@@ -142225,6 +143475,7 @@ export declare type Mutation = {
|
|
|
142225
143475
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
142226
143476
|
jpdViewsService_publishGlobalView?: Maybe<JpdViewsServicePublishGlobalViewPayload>;
|
|
142227
143477
|
jpdViewsService_rerankGlobalView?: Maybe<JpdViewsServiceRerankGlobalViewPayload>;
|
|
143478
|
+
jpdViewsService_setAssocToNewSpaces?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
142228
143479
|
jpdViewsService_unassociateGlobalView?: Maybe<JpdViewsServiceUnassociateGlobalViewPayload>;
|
|
142229
143480
|
jpdViewsService_updateGlobalView?: Maybe<JpdViewsServiceUpdateGlobalViewPayload>;
|
|
142230
143481
|
jpdViewsService_updateGlobalViewV2?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
@@ -142258,6 +143509,7 @@ export declare type Mutation = {
|
|
|
142258
143509
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
142259
143510
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
142260
143511
|
kitsune_updateInsight?: Maybe<KitsuneInsight>;
|
|
143512
|
+
kitsune_updateOrganization?: Maybe<KitsuneOrganizationNode>;
|
|
142261
143513
|
kitsune_updateSection?: Maybe<KitsuneSection>;
|
|
142262
143514
|
kitsune_updateSnippet?: Maybe<KitsuneSnippet>;
|
|
142263
143515
|
kitsune_updateSpace?: Maybe<KitsuneSpace>;
|
|
@@ -142543,6 +143795,7 @@ export declare type Mutation = {
|
|
|
142543
143795
|
stakeholderComms_validateSubscriberToken?: Maybe<Scalars['Boolean']['output']>;
|
|
142544
143796
|
stakeholderComms_verifyDns?: Maybe<StakeholderCommsVerifyDnsResponse>;
|
|
142545
143797
|
startSprint?: Maybe<SprintResponse>;
|
|
143798
|
+
studio_createDraftBuild?: Maybe<StudioCreateDraftBuildPayload>;
|
|
142546
143799
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
142547
143800
|
team?: Maybe<TeamMutation>;
|
|
142548
143801
|
templateMigration?: Maybe<TemplateMigration>;
|
|
@@ -142632,9 +143885,6 @@ export declare type Mutation = {
|
|
|
142632
143885
|
export declare type MutationActivatePaywallContentArgs = {
|
|
142633
143886
|
input: ActivatePaywallContentInput;
|
|
142634
143887
|
};
|
|
142635
|
-
export declare type MutationAddBetaUserAsSiteCreatorArgs = {
|
|
142636
|
-
input: AddBetaUserAsSiteCreatorInput;
|
|
142637
|
-
};
|
|
142638
143888
|
export declare type MutationAddDefaultExCoSpacePermissionsArgs = {
|
|
142639
143889
|
spacePermissionsInput: AddDefaultExCoSpacePermissionsInput;
|
|
142640
143890
|
};
|
|
@@ -143081,6 +144331,11 @@ export declare type MutationAssetsDm_CreateDefaultCleansingRuleArgs = {
|
|
|
143081
144331
|
input: AssetsDmCreateDefaultCleansingRuleInput;
|
|
143082
144332
|
workspaceId: Scalars['ID']['input'];
|
|
143083
144333
|
};
|
|
144334
|
+
export declare type MutationAssetsDm_CreateObjectAttributeArgs = {
|
|
144335
|
+
cloudId: Scalars['ID']['input'];
|
|
144336
|
+
payload: AssetsDmCreateObjectAttributeInput;
|
|
144337
|
+
workspaceId: Scalars['ID']['input'];
|
|
144338
|
+
};
|
|
143084
144339
|
export declare type MutationAssetsDm_CreateObjectTagArgs = {
|
|
143085
144340
|
cloudId: Scalars['ID']['input'];
|
|
143086
144341
|
input: AssetsDmObjectTagCreateInput;
|
|
@@ -143231,6 +144486,11 @@ export declare type MutationAssetsDm_ImportDataDictionaryArgs = {
|
|
|
143231
144486
|
payload: AssetsDmImportDataDictionaryInput;
|
|
143232
144487
|
workspaceId: Scalars['ID']['input'];
|
|
143233
144488
|
};
|
|
144489
|
+
export declare type MutationAssetsDm_ResetDataSourceMappingArgs = {
|
|
144490
|
+
cloudId: Scalars['ID']['input'];
|
|
144491
|
+
dataSourceId: Scalars['ID']['input'];
|
|
144492
|
+
workspaceId: Scalars['ID']['input'];
|
|
144493
|
+
};
|
|
143234
144494
|
export declare type MutationAssetsDm_UpdateAttributePriorityArgs = {
|
|
143235
144495
|
cloudId: Scalars['ID']['input'];
|
|
143236
144496
|
input: AssetsDmUpdateAttributePriorityInput;
|
|
@@ -143266,12 +144526,18 @@ export declare type MutationAssetsDm_UpdateDefaultCleansingRuleArgs = {
|
|
|
143266
144526
|
input: AssetsDmUpdateDefaultCleansingRuleInput;
|
|
143267
144527
|
workspaceId: Scalars['ID']['input'];
|
|
143268
144528
|
};
|
|
144529
|
+
export declare type MutationAssetsVertical_CreateVerticalInstantiationArgs = {
|
|
144530
|
+
input: AssetsVerticalCreateVerticalInstantiationInput;
|
|
144531
|
+
};
|
|
143269
144532
|
export declare type MutationAssetsVertical_GenerateInsightsArgs = {
|
|
143270
144533
|
input: AssetsVerticalGenerateInsightsInput;
|
|
143271
144534
|
};
|
|
143272
144535
|
export declare type MutationAssetsVertical_InstantiateBundleByTypeArgs = {
|
|
143273
144536
|
input: AssetsVerticalInstantiateBundleByTypeInput;
|
|
143274
144537
|
};
|
|
144538
|
+
export declare type MutationAssetsVertical_UpdateVerticalInstantiationArgs = {
|
|
144539
|
+
input: AssetsVerticalUpdateVerticalInstantiationInput;
|
|
144540
|
+
};
|
|
143275
144541
|
export declare type MutationAssets_UpdateObjectAttributeValueArgs = {
|
|
143276
144542
|
cloudId: Scalars['ID']['input'];
|
|
143277
144543
|
id: Scalars['ID']['input'];
|
|
@@ -143496,6 +144762,9 @@ export declare type MutationChannelPlatform_DeleteQueuesArgs = {
|
|
|
143496
144762
|
export declare type MutationChannelPlatform_EndChatIfTicketIsNotPresentArgs = {
|
|
143497
144763
|
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
143498
144764
|
};
|
|
144765
|
+
export declare type MutationChannelPlatform_InitiateOtpArgs = {
|
|
144766
|
+
conversationId: Scalars['String']['input'];
|
|
144767
|
+
};
|
|
143499
144768
|
export declare type MutationChannelPlatform_PerformPluginActionArgs = {
|
|
143500
144769
|
pluginActionRequest?: InputMaybe<ChannelPlatformPluginActionRequest>;
|
|
143501
144770
|
};
|
|
@@ -143509,6 +144778,10 @@ export declare type MutationChannelPlatform_UploadAttachmentMetadataArgs = {
|
|
|
143509
144778
|
attachmentId: Scalars['String']['input'];
|
|
143510
144779
|
metadata: Scalars['JSON']['input'];
|
|
143511
144780
|
};
|
|
144781
|
+
export declare type MutationChannelPlatform_VerifyOtpArgs = {
|
|
144782
|
+
conversationId: Scalars['String']['input'];
|
|
144783
|
+
otp: Scalars['String']['input'];
|
|
144784
|
+
};
|
|
143512
144785
|
export declare type MutationClearRestrictionsForFreeArgs = {
|
|
143513
144786
|
contentId: Scalars['ID']['input'];
|
|
143514
144787
|
};
|
|
@@ -143812,6 +145085,9 @@ export declare type MutationConfluence_ReorderTracksArgs = {
|
|
|
143812
145085
|
cloudId: Scalars['ID']['input'];
|
|
143813
145086
|
input: ConfluenceReorderTrackInput;
|
|
143814
145087
|
};
|
|
145088
|
+
export declare type MutationConfluence_ResolveApprovalAgentArgs = {
|
|
145089
|
+
cloudId: Scalars['ID']['input'];
|
|
145090
|
+
};
|
|
143815
145091
|
export declare type MutationConfluence_ResolveCommentsArgs = {
|
|
143816
145092
|
cloudId: Scalars['ID']['input'];
|
|
143817
145093
|
commentIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
@@ -144677,6 +145953,9 @@ export declare type MutationGoals_ArchiveMetricArgs = {
|
|
|
144677
145953
|
export declare type MutationGoals_CloneArgs = {
|
|
144678
145954
|
input: TownsquareGoalsCloneInput;
|
|
144679
145955
|
};
|
|
145956
|
+
export declare type MutationGoals_ConnectSlackChannelArgs = {
|
|
145957
|
+
input: TownsquareGoalsConnectSlackChannelInput;
|
|
145958
|
+
};
|
|
144680
145959
|
export declare type MutationGoals_CreateArgs = {
|
|
144681
145960
|
input: TownsquareGoalsCreateInput;
|
|
144682
145961
|
};
|
|
@@ -144719,6 +145998,9 @@ export declare type MutationGoals_DeleteProjectLinkArgs = {
|
|
|
144719
145998
|
export declare type MutationGoals_DeleteRiskArgs = {
|
|
144720
145999
|
input: TownsquareGoalsDeleteRiskInput;
|
|
144721
146000
|
};
|
|
146001
|
+
export declare type MutationGoals_DisconnectSlackChannelArgs = {
|
|
146002
|
+
input: TownsquareGoalsDisconnectSlackChannelInput;
|
|
146003
|
+
};
|
|
144722
146004
|
export declare type MutationGoals_EditArgs = {
|
|
144723
146005
|
input?: InputMaybe<TownsquareGoalsEditInput>;
|
|
144724
146006
|
};
|
|
@@ -144906,6 +146188,14 @@ export declare type MutationInvokeExtensionArgs = {
|
|
|
144906
146188
|
export declare type MutationInvokePolarisObjectArgs = {
|
|
144907
146189
|
input: InvokePolarisObjectInput;
|
|
144908
146190
|
};
|
|
146191
|
+
export declare type MutationJiraOpenBeta_CreateFeatureArgs = {
|
|
146192
|
+
cloudId: Scalars['ID']['input'];
|
|
146193
|
+
input?: InputMaybe<JiraOpenBetaFeatureCreateInput>;
|
|
146194
|
+
};
|
|
146195
|
+
export declare type MutationJiraOpenBeta_UpdateFeatureArgs = {
|
|
146196
|
+
cloudId: Scalars['ID']['input'];
|
|
146197
|
+
input?: InputMaybe<JiraOpenBetaFeatureUpdateInput>;
|
|
146198
|
+
};
|
|
144909
146199
|
export declare type MutationJira_AddFieldsToFieldSchemeArgs = {
|
|
144910
146200
|
cloudId: Scalars['ID']['input'];
|
|
144911
146201
|
input: JiraAddFieldsToFieldSchemeInput;
|
|
@@ -145307,6 +146597,9 @@ export declare type MutationJira_UpdateSchemeFieldPerWorkTypeCustomizationsArgs
|
|
|
145307
146597
|
export declare type MutationJpdViewsService_AssociateGlobalViewArgs = {
|
|
145308
146598
|
input: JpdViewsServiceAssociateGlobalViewInput;
|
|
145309
146599
|
};
|
|
146600
|
+
export declare type MutationJpdViewsService_CloneViewIntoGlobalArgs = {
|
|
146601
|
+
input: JpdViewsServiceCloneViewIntoGlobalInput;
|
|
146602
|
+
};
|
|
145310
146603
|
export declare type MutationJpdViewsService_CreateGlobalViewArgs = {
|
|
145311
146604
|
cloudId: Scalars['ID']['input'];
|
|
145312
146605
|
input: JpdViewsServiceCreateGlobalViewInput;
|
|
@@ -145331,6 +146624,9 @@ export declare type MutationJpdViewsService_PublishGlobalViewArgs = {
|
|
|
145331
146624
|
export declare type MutationJpdViewsService_RerankGlobalViewArgs = {
|
|
145332
146625
|
input: JpdViewsServiceRerankGlobalViewInput;
|
|
145333
146626
|
};
|
|
146627
|
+
export declare type MutationJpdViewsService_SetAssocToNewSpacesArgs = {
|
|
146628
|
+
input: JpdViewsServiceSetAssocToNewSpacesInput;
|
|
146629
|
+
};
|
|
145334
146630
|
export declare type MutationJpdViewsService_UnassociateGlobalViewArgs = {
|
|
145335
146631
|
input: JpdViewsServiceUnassociateGlobalViewInput;
|
|
145336
146632
|
};
|
|
@@ -145469,6 +146765,12 @@ export declare type MutationKitsune_UpdateInsightArgs = {
|
|
|
145469
146765
|
id: Scalars['ID']['input'];
|
|
145470
146766
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
145471
146767
|
};
|
|
146768
|
+
export declare type MutationKitsune_UpdateOrganizationArgs = {
|
|
146769
|
+
defaultCustomerId?: InputMaybe<Scalars['ID']['input']>;
|
|
146770
|
+
id: Scalars['ID']['input'];
|
|
146771
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
146772
|
+
workspaceAri: Scalars['ID']['input'];
|
|
146773
|
+
};
|
|
145472
146774
|
export declare type MutationKitsune_UpdateSectionArgs = {
|
|
145473
146775
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
145474
146776
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -146397,6 +147699,9 @@ export declare type MutationStakeholderComms_VerifyDnsArgs = {
|
|
|
146397
147699
|
export declare type MutationStartSprintArgs = {
|
|
146398
147700
|
input?: InputMaybe<StartSprintInput>;
|
|
146399
147701
|
};
|
|
147702
|
+
export declare type MutationStudio_CreateDraftBuildArgs = {
|
|
147703
|
+
input: StudioCreateDraftBuildInput;
|
|
147704
|
+
};
|
|
146400
147705
|
export declare type MutationSubscribeToAppArgs = {
|
|
146401
147706
|
input: AppSubscribeInput;
|
|
146402
147707
|
};
|
|
@@ -148451,6 +149756,7 @@ export declare type PlaybookDetailsForView = {
|
|
|
148451
149756
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
148452
149757
|
executedOnIssues?: Maybe<Array<PlaybookExecutedIssue>>;
|
|
148453
149758
|
id: Scalars['ID']['output'];
|
|
149759
|
+
isAiCreated?: Maybe<Scalars['Boolean']['output']>;
|
|
148454
149760
|
lastUpdatedAt?: Maybe<Scalars['String']['output']>;
|
|
148455
149761
|
name?: Maybe<Scalars['String']['output']>;
|
|
148456
149762
|
owner?: Maybe<User>;
|
|
@@ -148488,6 +149794,7 @@ export declare enum PlaybookTemplateIcon {
|
|
|
148488
149794
|
ChangeManagement_4Icon = "CHANGE_MANAGEMENT_4_ICON",
|
|
148489
149795
|
Chat_5Icon = "CHAT_5_ICON",
|
|
148490
149796
|
DataPrivacyIcon = "DATA_PRIVACY_ICON",
|
|
149797
|
+
HourglassIcon = "HOURGLASS_ICON",
|
|
148491
149798
|
OnboardingIcon = "ONBOARDING_ICON",
|
|
148492
149799
|
RainstormIncidentIcon = "RAINSTORM_INCIDENT_ICON",
|
|
148493
149800
|
RefreshUpdateIcon = "REFRESH_UPDATE_ICON"
|
|
@@ -149237,6 +150544,11 @@ export declare type PostOfficeSubscriptionMatchersInput = {
|
|
|
149237
150544
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
149238
150545
|
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
149239
150546
|
};
|
|
150547
|
+
export declare type PreferredIndexInputType = {
|
|
150548
|
+
allowSelectAllAsFallback?: InputMaybe<Scalars['Boolean']['input']>;
|
|
150549
|
+
gqlSchemaName?: InputMaybe<Scalars['String']['input']>;
|
|
150550
|
+
indexName?: InputMaybe<Scalars['String']['input']>;
|
|
150551
|
+
};
|
|
149240
150552
|
export declare type PremiumExtensionsFeature = {
|
|
149241
150553
|
__typename?: 'PremiumExtensionsFeature';
|
|
149242
150554
|
isEntitled: Scalars['Boolean']['output'];
|
|
@@ -149633,6 +150945,7 @@ export declare type Query = {
|
|
|
149633
150945
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
149634
150946
|
admin_auditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
149635
150947
|
admin_auditLogProductMapping?: Maybe<Array<AdminAuditLogProductMapping>>;
|
|
150948
|
+
admin_auditLogUsers?: Maybe<AdminUserConnection>;
|
|
149636
150949
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
149637
150950
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
149638
150951
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
@@ -149651,6 +150964,7 @@ export declare type Query = {
|
|
|
149651
150964
|
admin_tokens?: Maybe<AdminTokenConnection>;
|
|
149652
150965
|
admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
|
|
149653
150966
|
admin_unitProfile?: Maybe<AdminUnit>;
|
|
150967
|
+
admin_unitSettings?: Maybe<AdminOrgUnitsSettings>;
|
|
149654
150968
|
admin_unitValidateName?: Maybe<AdminUnitValidateName>;
|
|
149655
150969
|
admin_unitsForOrg?: Maybe<AdminUnitConnection>;
|
|
149656
150970
|
admin_user?: Maybe<AdminUser>;
|
|
@@ -149834,10 +151148,14 @@ export declare type Query = {
|
|
|
149834
151148
|
assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
|
|
149835
151149
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
149836
151150
|
assetsVertical_attributeValues?: Maybe<AssetsVerticalAttributeValuesResult>;
|
|
151151
|
+
assetsVertical_attributesByTypes?: Maybe<AssetsVerticalAttributesResult>;
|
|
149837
151152
|
assetsVertical_bundle: AssetsVerticalBundleResult;
|
|
149838
151153
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
149839
151154
|
assetsVertical_insights?: Maybe<AssetsVerticalInsights>;
|
|
151155
|
+
assetsVertical_instantiatedBundle?: Maybe<AssetsVerticalBundleInstantiationResult>;
|
|
149840
151156
|
assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
|
|
151157
|
+
assetsVertical_verticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationResult>;
|
|
151158
|
+
assetsVertical_verticalInstantiations: AssetsVerticalVerticalInstantiationConnection;
|
|
149841
151159
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
149842
151160
|
assets_objectTypeAttributesByObjectTypeIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
149843
151161
|
assets_objectTypeAttributesBySchemaIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
@@ -149857,6 +151175,7 @@ export declare type Query = {
|
|
|
149857
151175
|
avpPermissions_getResourcePermission?: Maybe<AvpPermissionsResourcePermission>;
|
|
149858
151176
|
avpPermissions_hasCapability?: Maybe<AvpPermissionsHasCapabilityResponse>;
|
|
149859
151177
|
avp_getChart?: Maybe<AvpChart>;
|
|
151178
|
+
avp_getChartByConfigId?: Maybe<AvpChart>;
|
|
149860
151179
|
avp_getChartTemplatePreview?: Maybe<AvpChartTemplatePreview>;
|
|
149861
151180
|
avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
|
|
149862
151181
|
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
@@ -149913,6 +151232,7 @@ export declare type Query = {
|
|
|
149913
151232
|
changeManagement_rovoRiskAssessmentSettings: ChangeManagementRovoRiskAssessmentSettingsPayload;
|
|
149914
151233
|
changeManagement_rovoRiskAssessmentSettingsByIssue?: Maybe<ChangeManagementRovoRiskAssessmentSettingsPayload>;
|
|
149915
151234
|
channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
151235
|
+
channelPlatform_checkOtpVerified?: Maybe<ChannelPlatformCheckOtpVerifiedResponse>;
|
|
149916
151236
|
channelPlatform_createContact?: Maybe<ChannelPlatformCreateContactResponse>;
|
|
149917
151237
|
channelPlatform_downloadTranscript?: Maybe<ChannelPlatformDownloadTranscriptResponse>;
|
|
149918
151238
|
channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
|
|
@@ -150290,6 +151610,7 @@ export declare type Query = {
|
|
|
150290
151610
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
150291
151611
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
150292
151612
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
151613
|
+
goals_allWatchedGoalUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
150293
151614
|
goals_allWatchedGoalUpdatesCount?: Maybe<Scalars['Int']['output']>;
|
|
150294
151615
|
goals_appSettings?: Maybe<TownsquareGoalsAppSettings>;
|
|
150295
151616
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
@@ -150377,6 +151698,9 @@ export declare type Query = {
|
|
|
150377
151698
|
jiraAlignAgg_sitesByOrgId?: Maybe<Array<Maybe<JiraAlignAggSite>>>;
|
|
150378
151699
|
jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
|
|
150379
151700
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
151701
|
+
jiraOpenBeta_featureGetById?: Maybe<JiraOpenBetaFeature>;
|
|
151702
|
+
jiraOpenBeta_featureGetByIds?: Maybe<Array<Maybe<JiraOpenBetaFeature>>>;
|
|
151703
|
+
jiraOpenBeta_featureQuery?: Maybe<JiraOpenBetaFeatureConnection>;
|
|
150380
151704
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
150381
151705
|
jiraReleases?: Maybe<JiraReleases>;
|
|
150382
151706
|
jiraServers?: Maybe<JiraServersResult>;
|
|
@@ -150490,6 +151814,7 @@ export declare type Query = {
|
|
|
150490
151814
|
loomUserStatus?: Maybe<LoomUserStatus>;
|
|
150491
151815
|
loom_comment?: Maybe<LoomComment>;
|
|
150492
151816
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
151817
|
+
loom_connectedCalendars?: Maybe<Array<Maybe<LoomConnectedCalendar>>>;
|
|
150493
151818
|
loom_createSpace?: Maybe<LoomSpace>;
|
|
150494
151819
|
loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
|
|
150495
151820
|
loom_joinableWorkspaces?: Maybe<Array<Maybe<LoomJoinableWorkspace>>>;
|
|
@@ -150507,7 +151832,9 @@ export declare type Query = {
|
|
|
150507
151832
|
loom_videoDurations?: Maybe<LoomVideoDurations>;
|
|
150508
151833
|
loom_videos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
150509
151834
|
loom_viewableVideo?: Maybe<LoomVideo>;
|
|
151835
|
+
loom_workspace?: Maybe<LoomWorkspace>;
|
|
150510
151836
|
loom_workspaceTrendingVideos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
151837
|
+
loom_workspaces?: Maybe<Array<Maybe<LoomWorkspace>>>;
|
|
150511
151838
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
150512
151839
|
macroBodyRenderer?: Maybe<MacroBody>;
|
|
150513
151840
|
macros?: Maybe<MacroConnection>;
|
|
@@ -150599,6 +151926,7 @@ export declare type Query = {
|
|
|
150599
151926
|
productListing?: Maybe<ProductListingResult>;
|
|
150600
151927
|
productListings: Array<ProductListingResult>;
|
|
150601
151928
|
projects_allWatchedProjectUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
151929
|
+
projects_allWatchedProjectUpdatesCount?: Maybe<Scalars['Int']['output']>;
|
|
150602
151930
|
projects_appSettings?: Maybe<TownsquareProjectsAppSettings>;
|
|
150603
151931
|
projects_byAri?: Maybe<TownsquareProject>;
|
|
150604
151932
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
@@ -150876,7 +152204,8 @@ export declare type QueryAdmin_AccessUrlsArgs = {
|
|
|
150876
152204
|
};
|
|
150877
152205
|
export declare type QueryAdmin_AppModulesArgs = {
|
|
150878
152206
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
150879
|
-
|
|
152207
|
+
appIdentifier?: InputMaybe<AdminAppModulesKey>;
|
|
152208
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
150880
152209
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
150881
152210
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
150882
152211
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -150916,6 +152245,13 @@ export declare type QueryAdmin_AuditLogEventsArgs = {
|
|
|
150916
152245
|
export declare type QueryAdmin_AuditLogProductMappingArgs = {
|
|
150917
152246
|
container: AdminAuditLogContainer;
|
|
150918
152247
|
};
|
|
152248
|
+
export declare type QueryAdmin_AuditLogUsersArgs = {
|
|
152249
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
152250
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
152251
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
152252
|
+
input: AdminAuditLogSearchUsersInput;
|
|
152253
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
152254
|
+
};
|
|
150919
152255
|
export declare type QueryAdmin_CheckLicensesCapacityArgs = {
|
|
150920
152256
|
input: AdminLicenseInput;
|
|
150921
152257
|
orgId: Scalars['ID']['input'];
|
|
@@ -151023,6 +152359,9 @@ export declare type QueryAdmin_UnitProfileArgs = {
|
|
|
151023
152359
|
orgId: Scalars['ID']['input'];
|
|
151024
152360
|
unitId?: InputMaybe<Scalars['ID']['input']>;
|
|
151025
152361
|
};
|
|
152362
|
+
export declare type QueryAdmin_UnitSettingsArgs = {
|
|
152363
|
+
orgId: Scalars['ID']['input'];
|
|
152364
|
+
};
|
|
151026
152365
|
export declare type QueryAdmin_UnitValidateNameArgs = {
|
|
151027
152366
|
orgId: Scalars['ID']['input'];
|
|
151028
152367
|
unitName: Scalars['String']['input'];
|
|
@@ -151990,6 +153329,10 @@ export declare type QueryAssetsVertical_AttributeValuesArgs = {
|
|
|
151990
153329
|
cloudId: Scalars['ID']['input'];
|
|
151991
153330
|
input: AssetsVerticalAttributeValuesInput;
|
|
151992
153331
|
};
|
|
153332
|
+
export declare type QueryAssetsVertical_AttributesByTypesArgs = {
|
|
153333
|
+
cloudId: Scalars['ID']['input'];
|
|
153334
|
+
input: AssetsVerticalAttributesInput;
|
|
153335
|
+
};
|
|
151993
153336
|
export declare type QueryAssetsVertical_BundleArgs = {
|
|
151994
153337
|
cloudId: Scalars['ID']['input'];
|
|
151995
153338
|
type: AssetsVerticalBundleType;
|
|
@@ -152002,10 +153345,24 @@ export declare type QueryAssetsVertical_InsightsArgs = {
|
|
|
152002
153345
|
cloudId: Scalars['ID']['input'];
|
|
152003
153346
|
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
152004
153347
|
};
|
|
153348
|
+
export declare type QueryAssetsVertical_InstantiatedBundleArgs = {
|
|
153349
|
+
cloudId: Scalars['ID']['input'];
|
|
153350
|
+
type: AssetsVerticalBundleType;
|
|
153351
|
+
};
|
|
152005
153352
|
export declare type QueryAssetsVertical_ObjectsArgs = {
|
|
152006
153353
|
cloudId: Scalars['ID']['input'];
|
|
152007
153354
|
input?: InputMaybe<AssetsVerticalObjectsInput>;
|
|
152008
153355
|
};
|
|
153356
|
+
export declare type QueryAssetsVertical_VerticalInstantiationArgs = {
|
|
153357
|
+
cloudId: Scalars['ID']['input'];
|
|
153358
|
+
id: Scalars['ID']['input'];
|
|
153359
|
+
};
|
|
153360
|
+
export declare type QueryAssetsVertical_VerticalInstantiationsArgs = {
|
|
153361
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
153362
|
+
cloudId: Scalars['ID']['input'];
|
|
153363
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
153364
|
+
type?: InputMaybe<AssetsVerticalVerticalType>;
|
|
153365
|
+
};
|
|
152009
153366
|
export declare type QueryAssets_ObjectByIdArgs = {
|
|
152010
153367
|
id: Scalars['ID']['input'];
|
|
152011
153368
|
};
|
|
@@ -152069,6 +153426,11 @@ export declare type QueryAvpPermissions_HasCapabilityArgs = {
|
|
|
152069
153426
|
export declare type QueryAvp_GetChartArgs = {
|
|
152070
153427
|
chartAri: Scalars['ID']['input'];
|
|
152071
153428
|
};
|
|
153429
|
+
export declare type QueryAvp_GetChartByConfigIdArgs = {
|
|
153430
|
+
chartConfigId: Scalars['ID']['input'];
|
|
153431
|
+
cloudId: Scalars['ID']['input'];
|
|
153432
|
+
workspaceId: Scalars['ID']['input'];
|
|
153433
|
+
};
|
|
152072
153434
|
export declare type QueryAvp_GetChartTemplatePreviewArgs = {
|
|
152073
153435
|
cloudId: Scalars['ID']['input'];
|
|
152074
153436
|
templateFileName: Scalars['String']['input'];
|
|
@@ -152272,6 +153634,9 @@ export declare type QueryChangeManagement_RovoRiskAssessmentSettingsByIssueArgs
|
|
|
152272
153634
|
export declare type QueryChannelPlatform_ChatRequestDetailsArgs = {
|
|
152273
153635
|
request?: InputMaybe<ChannelPlatformChatRequestDetailsRequest>;
|
|
152274
153636
|
};
|
|
153637
|
+
export declare type QueryChannelPlatform_CheckOtpVerifiedArgs = {
|
|
153638
|
+
conversationId: Scalars['String']['input'];
|
|
153639
|
+
};
|
|
152275
153640
|
export declare type QueryChannelPlatform_CreateContactArgs = {
|
|
152276
153641
|
anonymousId?: InputMaybe<Scalars['String']['input']>;
|
|
152277
153642
|
request?: InputMaybe<ChannelPlatformSubmitRequestInput>;
|
|
@@ -153965,6 +155330,14 @@ export declare type QueryGetSummaryArgs = {
|
|
|
153965
155330
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
153966
155331
|
responseType?: InputMaybe<ResponseType>;
|
|
153967
155332
|
};
|
|
155333
|
+
export declare type QueryGoals_AllWatchedGoalUpdatesArgs = {
|
|
155334
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
155335
|
+
containerId: Scalars['ID']['input'];
|
|
155336
|
+
createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
155337
|
+
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
155338
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
155339
|
+
stateFilter?: InputMaybe<TownsquareUpdateStateFilter>;
|
|
155340
|
+
};
|
|
153968
155341
|
export declare type QueryGoals_AllWatchedGoalUpdatesCountArgs = {
|
|
153969
155342
|
containerId: Scalars['ID']['input'];
|
|
153970
155343
|
createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -154284,6 +155657,23 @@ export declare type QueryJiraAlignAgg_SitesByOrgIdArgs = {
|
|
|
154284
155657
|
env: Scalars['String']['input'];
|
|
154285
155658
|
orgId: Scalars['String']['input'];
|
|
154286
155659
|
};
|
|
155660
|
+
export declare type QueryJiraOpenBeta_FeatureGetByIdArgs = {
|
|
155661
|
+
cloudId: Scalars['ID']['input'];
|
|
155662
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
155663
|
+
shardingContext?: InputMaybe<Scalars['String']['input']>;
|
|
155664
|
+
};
|
|
155665
|
+
export declare type QueryJiraOpenBeta_FeatureGetByIdsArgs = {
|
|
155666
|
+
cloudId: Scalars['ID']['input'];
|
|
155667
|
+
ids?: InputMaybe<Array<InputMaybe<SkyBridgeIdInput>>>;
|
|
155668
|
+
};
|
|
155669
|
+
export declare type QueryJiraOpenBeta_FeatureQueryArgs = {
|
|
155670
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
155671
|
+
aqlQuery?: InputMaybe<Scalars['String']['input']>;
|
|
155672
|
+
cloudId: Scalars['ID']['input'];
|
|
155673
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
155674
|
+
shardingContext?: InputMaybe<Scalars['String']['input']>;
|
|
155675
|
+
sort?: InputMaybe<Scalars['String']['input']>;
|
|
155676
|
+
};
|
|
154287
155677
|
export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
154288
155678
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
154289
155679
|
filter?: InputMaybe<DevOpsServiceAndJiraProjectRelationshipFilter>;
|
|
@@ -154704,6 +156094,9 @@ export declare type QueryLoom_CommentArgs = {
|
|
|
154704
156094
|
export declare type QueryLoom_CommentsArgs = {
|
|
154705
156095
|
ids: Array<Scalars['ID']['input']>;
|
|
154706
156096
|
};
|
|
156097
|
+
export declare type QueryLoom_ConnectedCalendarsArgs = {
|
|
156098
|
+
siteId: Scalars['ID']['input'];
|
|
156099
|
+
};
|
|
154707
156100
|
export declare type QueryLoom_CreateSpaceArgs = {
|
|
154708
156101
|
analyticsSource?: InputMaybe<Scalars['String']['input']>;
|
|
154709
156102
|
name: Scalars['String']['input'];
|
|
@@ -154760,9 +156153,15 @@ export declare type QueryLoom_ViewableVideoArgs = {
|
|
|
154760
156153
|
feature: Scalars['String']['input'];
|
|
154761
156154
|
id: Scalars['ID']['input'];
|
|
154762
156155
|
};
|
|
156156
|
+
export declare type QueryLoom_WorkspaceArgs = {
|
|
156157
|
+
id: Scalars['ID']['input'];
|
|
156158
|
+
};
|
|
154763
156159
|
export declare type QueryLoom_WorkspaceTrendingVideosArgs = {
|
|
154764
156160
|
id: Scalars['ID']['input'];
|
|
154765
156161
|
};
|
|
156162
|
+
export declare type QueryLoom_WorkspacesArgs = {
|
|
156163
|
+
ids: Array<Scalars['ID']['input']>;
|
|
156164
|
+
};
|
|
154766
156165
|
export declare type QueryMacroBodyRendererArgs = {
|
|
154767
156166
|
adf: Scalars['String']['input'];
|
|
154768
156167
|
containedRender?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -155046,6 +156445,12 @@ export declare type QueryProjects_AllWatchedProjectUpdatesArgs = {
|
|
|
155046
156445
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
155047
156446
|
stateFilter?: InputMaybe<TownsquareUpdateStateFilter>;
|
|
155048
156447
|
};
|
|
156448
|
+
export declare type QueryProjects_AllWatchedProjectUpdatesCountArgs = {
|
|
156449
|
+
containerId: Scalars['ID']['input'];
|
|
156450
|
+
createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
156451
|
+
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
156452
|
+
stateFilter?: InputMaybe<TownsquareUpdateStateFilter>;
|
|
156453
|
+
};
|
|
155049
156454
|
export declare type QueryProjects_AppSettingsArgs = {
|
|
155050
156455
|
containerId: Scalars['ID']['input'];
|
|
155051
156456
|
};
|
|
@@ -158430,6 +159835,10 @@ export declare enum Scope {
|
|
|
158430
159835
|
ReadAppInstallation = "READ_APP_INSTALLATION",
|
|
158431
159836
|
ReadAppLogs = "READ_APP_LOGS",
|
|
158432
159837
|
ReadAppSystemToken = "READ_APP_SYSTEM_TOKEN",
|
|
159838
|
+
ReadCmdbAttributeJira = "READ_CMDB_ATTRIBUTE_JIRA",
|
|
159839
|
+
ReadCmdbObjectJira = "READ_CMDB_OBJECT_JIRA",
|
|
159840
|
+
ReadCmdbSchemaJira = "READ_CMDB_SCHEMA_JIRA",
|
|
159841
|
+
ReadCmdbTypeJira = "READ_CMDB_TYPE_JIRA",
|
|
158433
159842
|
ReadCompassAttentionItem = "READ_COMPASS_ATTENTION_ITEM",
|
|
158434
159843
|
ReadCompassComponent = "READ_COMPASS_COMPONENT",
|
|
158435
159844
|
ReadCompassEvent = "READ_COMPASS_EVENT",
|
|
@@ -158466,6 +159875,7 @@ export declare enum Scope {
|
|
|
158466
159875
|
ReadCustomer = "READ_CUSTOMER",
|
|
158467
159876
|
ReadDesign = "READ_DESIGN",
|
|
158468
159877
|
ReadDeveloperSpace = "READ_DEVELOPER_SPACE",
|
|
159878
|
+
ReadDevInfoJira = "READ_DEV_INFO_JIRA",
|
|
158469
159879
|
ReadFeedbackFeedback = "READ_FEEDBACK_FEEDBACK",
|
|
158470
159880
|
ReadInsightJpd = "READ_INSIGHT_JPD",
|
|
158471
159881
|
ReadJiraUser = "READ_JIRA_USER",
|
|
@@ -158482,6 +159892,7 @@ export declare enum Scope {
|
|
|
158482
159892
|
ReadJswSprint = "READ_JSW_SPRINT",
|
|
158483
159893
|
ReadKnowledgebase = "READ_KNOWLEDGEBASE",
|
|
158484
159894
|
ReadMe = "READ_ME",
|
|
159895
|
+
ReadMeetingLoom = "READ_MEETING_LOOM",
|
|
158485
159896
|
ReadNotifications = "READ_NOTIFICATIONS",
|
|
158486
159897
|
ReadOrganization = "READ_ORGANIZATION",
|
|
158487
159898
|
ReadOrganizationProperty = "READ_ORGANIZATION_PROPERTY",
|
|
@@ -158504,6 +159915,8 @@ export declare enum Scope {
|
|
|
158504
159915
|
ReadServicedeskOrganization = "READ_SERVICEDESK_ORGANIZATION",
|
|
158505
159916
|
ReadServicedeskProperty = "READ_SERVICEDESK_PROPERTY",
|
|
158506
159917
|
ReadServicedeskRequest = "READ_SERVICEDESK_REQUEST",
|
|
159918
|
+
ReadSettingsLoom = "READ_SETTINGS_LOOM",
|
|
159919
|
+
ReadSpaceLoom = "READ_SPACE_LOOM",
|
|
158507
159920
|
ReadStakeholderCommsAssignment = "READ_STAKEHOLDER_COMMS_ASSIGNMENT",
|
|
158508
159921
|
ReadStakeholderCommsComponent = "READ_STAKEHOLDER_COMMS_COMPONENT",
|
|
158509
159922
|
ReadStakeholderCommsIncident = "READ_STAKEHOLDER_COMMS_INCIDENT",
|
|
@@ -158518,6 +159931,7 @@ export declare enum Scope {
|
|
|
158518
159931
|
ReadTownsquareGoal = "READ_TOWNSQUARE_GOAL",
|
|
158519
159932
|
ReadTownsquareProject = "READ_TOWNSQUARE_PROJECT",
|
|
158520
159933
|
ReadTownsquareWorkspace = "READ_TOWNSQUARE_WORKSPACE",
|
|
159934
|
+
ReadVideoLoom = "READ_VIDEO_LOOM",
|
|
158521
159935
|
ReadViewJpd = "READ_VIEW_JPD",
|
|
158522
159936
|
ResolutionRead = "RESOLUTION_READ",
|
|
158523
159937
|
RovoAtlassianExternal = "ROVO_ATLASSIAN_EXTERNAL",
|
|
@@ -158559,6 +159973,7 @@ export declare enum Scope {
|
|
|
158559
159973
|
WorkflowSchemeWrite = "WORKFLOW_SCHEME_WRITE",
|
|
158560
159974
|
WorkflowWrite = "WORKFLOW_WRITE",
|
|
158561
159975
|
WriteAppDetails = "WRITE_APP_DETAILS",
|
|
159976
|
+
WriteCmdbAttributeJira = "WRITE_CMDB_ATTRIBUTE_JIRA",
|
|
158562
159977
|
WriteCompassComponent = "WRITE_COMPASS_COMPONENT",
|
|
158563
159978
|
WriteCompassEvent = "WRITE_COMPASS_EVENT",
|
|
158564
159979
|
WriteCompassMetric = "WRITE_COMPASS_METRIC",
|
|
@@ -158603,6 +160018,7 @@ export declare enum Scope {
|
|
|
158603
160018
|
WriteJswRemoteLink = "WRITE_JSW_REMOTE_LINK",
|
|
158604
160019
|
WriteJswSourceCode = "WRITE_JSW_SOURCE_CODE",
|
|
158605
160020
|
WriteJswSprint = "WRITE_JSW_SPRINT",
|
|
160021
|
+
WriteMeetingLoom = "WRITE_MEETING_LOOM",
|
|
158606
160022
|
WriteNotifications = "WRITE_NOTIFICATIONS",
|
|
158607
160023
|
WriteOrganization = "WRITE_ORGANIZATION",
|
|
158608
160024
|
WriteOrganizationProperty = "WRITE_ORGANIZATION_PROPERTY",
|
|
@@ -158622,6 +160038,8 @@ export declare enum Scope {
|
|
|
158622
160038
|
WriteServicedeskOrganization = "WRITE_SERVICEDESK_ORGANIZATION",
|
|
158623
160039
|
WriteServicedeskProperty = "WRITE_SERVICEDESK_PROPERTY",
|
|
158624
160040
|
WriteServicedeskRequest = "WRITE_SERVICEDESK_REQUEST",
|
|
160041
|
+
WriteSettingsLoom = "WRITE_SETTINGS_LOOM",
|
|
160042
|
+
WriteSpaceLoom = "WRITE_SPACE_LOOM",
|
|
158625
160043
|
WriteStakeholderCommsComponent = "WRITE_STAKEHOLDER_COMMS_COMPONENT",
|
|
158626
160044
|
WriteStakeholderCommsIncident = "WRITE_STAKEHOLDER_COMMS_INCIDENT",
|
|
158627
160045
|
WriteStakeholderCommsPage = "WRITE_STAKEHOLDER_COMMS_PAGE",
|
|
@@ -158633,6 +160051,7 @@ export declare enum Scope {
|
|
|
158633
160051
|
WriteTownsquareGoal = "WRITE_TOWNSQUARE_GOAL",
|
|
158634
160052
|
WriteTownsquareProject = "WRITE_TOWNSQUARE_PROJECT",
|
|
158635
160053
|
WriteTownsquareRelationship = "WRITE_TOWNSQUARE_RELATIONSHIP",
|
|
160054
|
+
WriteVideoLoom = "WRITE_VIDEO_LOOM",
|
|
158636
160055
|
WriteViewJpd = "WRITE_VIEW_JPD"
|
|
158637
160056
|
}
|
|
158638
160057
|
export declare type ScopeSprintIssue = {
|
|
@@ -180149,6 +181568,7 @@ export declare type SpfAsk = Node & {
|
|
|
180149
181568
|
__typename?: 'SpfAsk';
|
|
180150
181569
|
activities?: Maybe<SpfAskActivityConnection>;
|
|
180151
181570
|
comments?: Maybe<SpfAskCommentConnection>;
|
|
181571
|
+
connectedWork?: Maybe<SpfAskConnectedWorkConnection>;
|
|
180152
181572
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
180153
181573
|
createdBy?: Maybe<User>;
|
|
180154
181574
|
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
@@ -180191,6 +181611,11 @@ export declare type SpfAskCommentsArgs = {
|
|
|
180191
181611
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
180192
181612
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
180193
181613
|
};
|
|
181614
|
+
export declare type SpfAskConnectedWorkArgs = {
|
|
181615
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
181616
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
181617
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
181618
|
+
};
|
|
180194
181619
|
export declare type SpfAskFocusAreasArgs = {
|
|
180195
181620
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
180196
181621
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -180362,6 +181787,18 @@ export declare type SpfAskCommentEdge = {
|
|
|
180362
181787
|
node?: Maybe<SpfAskCommentResult>;
|
|
180363
181788
|
};
|
|
180364
181789
|
export declare type SpfAskCommentResult = QueryError | SpfAskComment;
|
|
181790
|
+
export declare type SpfAskConnectedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
181791
|
+
export declare type SpfAskConnectedWorkConnection = {
|
|
181792
|
+
__typename?: 'SpfAskConnectedWorkConnection';
|
|
181793
|
+
edges?: Maybe<Array<Maybe<SpfAskConnectedWorkEdge>>>;
|
|
181794
|
+
pageInfo: PageInfo;
|
|
181795
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
181796
|
+
};
|
|
181797
|
+
export declare type SpfAskConnectedWorkEdge = {
|
|
181798
|
+
__typename?: 'SpfAskConnectedWorkEdge';
|
|
181799
|
+
cursor: Scalars['String']['output'];
|
|
181800
|
+
node?: Maybe<SpfAskConnectedWork>;
|
|
181801
|
+
};
|
|
180365
181802
|
export declare type SpfAskConnection = {
|
|
180366
181803
|
__typename?: 'SpfAskConnection';
|
|
180367
181804
|
edges?: Maybe<Array<Maybe<SpfAskEdge>>>;
|
|
@@ -182581,6 +184018,7 @@ export declare type StudioBuild = {
|
|
|
182581
184018
|
__typename?: 'StudioBuild';
|
|
182582
184019
|
buildId?: Maybe<Scalars['UUID']['output']>;
|
|
182583
184020
|
dependencies?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
|
|
184021
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
182584
184022
|
number?: Maybe<Scalars['Int']['output']>;
|
|
182585
184023
|
overview?: Maybe<Scalars['String']['output']>;
|
|
182586
184024
|
specification?: Maybe<StudioBuildSpecification>;
|
|
@@ -182606,6 +184044,25 @@ export declare type StudioBuilds = {
|
|
|
182606
184044
|
__typename?: 'StudioBuilds';
|
|
182607
184045
|
sequence?: Maybe<Array<Maybe<StudioBuild>>>;
|
|
182608
184046
|
};
|
|
184047
|
+
export declare type StudioCreateDraftBuildDetails = {
|
|
184048
|
+
__typename?: 'StudioCreateDraftBuildDetails';
|
|
184049
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
184050
|
+
buildId?: Maybe<Scalars['UUID']['output']>;
|
|
184051
|
+
state?: Maybe<StudioBuildState>;
|
|
184052
|
+
type?: Maybe<StudioBuildType>;
|
|
184053
|
+
};
|
|
184054
|
+
export declare type StudioCreateDraftBuildInput = {
|
|
184055
|
+
buildNumber: Scalars['Int']['input'];
|
|
184056
|
+
solutionId: Scalars['UUID']['input'];
|
|
184057
|
+
solutionVersion: Scalars['Int']['input'];
|
|
184058
|
+
workspaceId: Scalars['ID']['input'];
|
|
184059
|
+
};
|
|
184060
|
+
export declare type StudioCreateDraftBuildPayload = Payload & {
|
|
184061
|
+
__typename?: 'StudioCreateDraftBuildPayload';
|
|
184062
|
+
build?: Maybe<StudioCreateDraftBuildDetails>;
|
|
184063
|
+
errors?: Maybe<Array<MutationError>>;
|
|
184064
|
+
success: Scalars['Boolean']['output'];
|
|
184065
|
+
};
|
|
182609
184066
|
export declare enum StudioPlanState {
|
|
182610
184067
|
Completed = "COMPLETED",
|
|
182611
184068
|
Disabled = "DISABLED",
|
|
@@ -183607,7 +185064,7 @@ export declare type TeamMutation = {
|
|
|
183607
185064
|
createTeam?: Maybe<TeamCreatePayload>;
|
|
183608
185065
|
createTeamType?: Maybe<TeamType>;
|
|
183609
185066
|
deleteCustomField?: Maybe<Scalars['Boolean']['output']>;
|
|
183610
|
-
deleteCustomFieldValue?: Maybe<
|
|
185067
|
+
deleteCustomFieldValue?: Maybe<TeamCustomFieldKeyValues>;
|
|
183611
185068
|
deleteTeam?: Maybe<TeamDeletePayload>;
|
|
183612
185069
|
deleteTeamType?: Maybe<TeamType>;
|
|
183613
185070
|
linkCustomFieldToOption?: Maybe<TeamCustomFieldKeyValues>;
|
|
@@ -184733,7 +186190,7 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
184733
186190
|
Create = "CREATE"
|
|
184734
186191
|
}
|
|
184735
186192
|
export declare type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
|
|
184736
|
-
export declare type TownsquareActivityChange = TownsquareEditorsAddedChange | TownsquareEditorsRemovedChange | TownsquareFollowersAddedChange | TownsquareFollowersRemovedChange | TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalRenamedChange | TownsquareGoalRestoredChange | TownsquareStartDateAddedChange | TownsquareStartDateEditedChange | TownsquareTargetDateAddedChange | TownsquareUpdateDeletedChange;
|
|
186193
|
+
export declare type TownsquareActivityChange = TownsquareEditorsAddedChange | TownsquareEditorsRemovedChange | TownsquareFollowersAddedChange | TownsquareFollowersRemovedChange | TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalRenamedChange | TownsquareGoalRestoredChange | TownsquareStartDateAddedChange | TownsquareStartDateEditedChange | TownsquareTargetDateAddedChange | TownsquareTargetDateEditedChange | TownsquareUpdateDeletedChange;
|
|
184737
186194
|
export declare type TownsquareActivityItem = {
|
|
184738
186195
|
__typename?: 'TownsquareActivityItem';
|
|
184739
186196
|
actor?: Maybe<User>;
|
|
@@ -184856,6 +186313,9 @@ export declare type TownsquareCompletionProjectState = {
|
|
|
184856
186313
|
localizedLabel?: Maybe<TownsquareLocalizationField>;
|
|
184857
186314
|
value?: Maybe<TownsquareProjectStateValue>;
|
|
184858
186315
|
};
|
|
186316
|
+
export declare type TownsquareConnectSlackChannelInputMetadata = {
|
|
186317
|
+
fieldTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
186318
|
+
};
|
|
184859
186319
|
export declare type TownsquareContributor = {
|
|
184860
186320
|
__typename?: 'TownsquareContributor';
|
|
184861
186321
|
teamContributor?: Maybe<TownsquareTeamContributor>;
|
|
@@ -185774,6 +187234,20 @@ export declare type TownsquareGoalsClonePayload = {
|
|
|
185774
187234
|
goal?: Maybe<TownsquareGoal>;
|
|
185775
187235
|
success: Scalars['Boolean']['output'];
|
|
185776
187236
|
};
|
|
187237
|
+
export declare type TownsquareGoalsConnectSlackChannelInput = {
|
|
187238
|
+
containerId: Scalars['ID']['input'];
|
|
187239
|
+
goalId: Scalars['ID']['input'];
|
|
187240
|
+
metadata?: InputMaybe<TownsquareConnectSlackChannelInputMetadata>;
|
|
187241
|
+
slackChannelIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
187242
|
+
slackTeamId: Scalars['String']['input'];
|
|
187243
|
+
types: Array<InputMaybe<Scalars['String']['input']>>;
|
|
187244
|
+
};
|
|
187245
|
+
export declare type TownsquareGoalsConnectSlackChannelPayload = {
|
|
187246
|
+
__typename?: 'TownsquareGoalsConnectSlackChannelPayload';
|
|
187247
|
+
errors?: Maybe<Array<MutationError>>;
|
|
187248
|
+
slackChannels?: Maybe<Array<Maybe<TownsquareSlackChannelConnectionResult>>>;
|
|
187249
|
+
success: Scalars['Boolean']['output'];
|
|
187250
|
+
};
|
|
185777
187251
|
export declare type TownsquareGoalsCreateAddMetricTargetInput = {
|
|
185778
187252
|
createMetric?: InputMaybe<TownsquareGoalCreateMetricInput>;
|
|
185779
187253
|
goalId: Scalars['ID']['input'];
|
|
@@ -185922,6 +187396,16 @@ export declare type TownsquareGoalsDeleteRiskPayload = {
|
|
|
185922
187396
|
errors?: Maybe<Array<MutationError>>;
|
|
185923
187397
|
success: Scalars['Boolean']['output'];
|
|
185924
187398
|
};
|
|
187399
|
+
export declare type TownsquareGoalsDisconnectSlackChannelInput = {
|
|
187400
|
+
goalId: Scalars['ID']['input'];
|
|
187401
|
+
slackConnectionId: Scalars['String']['input'];
|
|
187402
|
+
};
|
|
187403
|
+
export declare type TownsquareGoalsDisconnectSlackChannelPayload = {
|
|
187404
|
+
__typename?: 'TownsquareGoalsDisconnectSlackChannelPayload';
|
|
187405
|
+
errors?: Maybe<Array<MutationError>>;
|
|
187406
|
+
slackConnectionId?: Maybe<Scalars['String']['output']>;
|
|
187407
|
+
success: Scalars['Boolean']['output'];
|
|
187408
|
+
};
|
|
185925
187409
|
export declare type TownsquareGoalsEditCommentInput = {
|
|
185926
187410
|
commentId: Scalars['ID']['input'];
|
|
185927
187411
|
commentText: Scalars['String']['input'];
|
|
@@ -186453,6 +187937,34 @@ export declare enum TownsquareMetricValueSortEnum {
|
|
|
186453
187937
|
TimeAsc = "TIME_ASC",
|
|
186454
187938
|
TimeDesc = "TIME_DESC"
|
|
186455
187939
|
}
|
|
187940
|
+
export declare type TownsquareMilestone = Node & {
|
|
187941
|
+
__typename?: 'TownsquareMilestone';
|
|
187942
|
+
completionDate?: Maybe<Scalars['Date']['output']>;
|
|
187943
|
+
creationDatetime?: Maybe<Scalars['DateTime']['output']>;
|
|
187944
|
+
id: Scalars['ID']['output'];
|
|
187945
|
+
lastModifiedDatetime?: Maybe<Scalars['DateTime']['output']>;
|
|
187946
|
+
status: TownsquareMilestoneStatus;
|
|
187947
|
+
targetDate: Scalars['Date']['output'];
|
|
187948
|
+
targetDateType: TownsquareTargetDateType;
|
|
187949
|
+
title: Scalars['String']['output'];
|
|
187950
|
+
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
187951
|
+
};
|
|
187952
|
+
export declare type TownsquareMilestoneConnection = {
|
|
187953
|
+
__typename?: 'TownsquareMilestoneConnection';
|
|
187954
|
+
count: Scalars['Int']['output'];
|
|
187955
|
+
edges?: Maybe<Array<Maybe<TownsquareMilestoneEdge>>>;
|
|
187956
|
+
pageInfo: PageInfo;
|
|
187957
|
+
};
|
|
187958
|
+
export declare type TownsquareMilestoneEdge = {
|
|
187959
|
+
__typename?: 'TownsquareMilestoneEdge';
|
|
187960
|
+
cursor: Scalars['String']['output'];
|
|
187961
|
+
node?: Maybe<TownsquareMilestone>;
|
|
187962
|
+
};
|
|
187963
|
+
export declare enum TownsquareMilestoneStatus {
|
|
187964
|
+
Completed = "COMPLETED",
|
|
187965
|
+
InProgress = "IN_PROGRESS",
|
|
187966
|
+
NotStarted = "NOT_STARTED"
|
|
187967
|
+
}
|
|
186456
187968
|
export declare type TownsquareMsteamsConnectedChannelChannelInfo = {
|
|
186457
187969
|
__typename?: 'TownsquareMsteamsConnectedChannelChannelInfo';
|
|
186458
187970
|
channelId?: Maybe<Scalars['String']['output']>;
|
|
@@ -186952,6 +188464,7 @@ export declare enum TownsquareProjectStateValue {
|
|
|
186952
188464
|
export declare type TownsquareProjectUpdate = Node & {
|
|
186953
188465
|
__typename?: 'TownsquareProjectUpdate';
|
|
186954
188466
|
ari: Scalars['String']['output'];
|
|
188467
|
+
changelog?: Maybe<Array<Maybe<TownsquareProjectChangelogItem>>>;
|
|
186955
188468
|
comments?: Maybe<TownsquareCommentConnection>;
|
|
186956
188469
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
186957
188470
|
creator?: Maybe<User>;
|
|
@@ -186959,6 +188472,7 @@ export declare type TownsquareProjectUpdate = Node & {
|
|
|
186959
188472
|
highlights?: Maybe<TownsquareHighlightConnection>;
|
|
186960
188473
|
id: Scalars['ID']['output'];
|
|
186961
188474
|
lastEditedBy?: Maybe<User>;
|
|
188475
|
+
milestones?: Maybe<TownsquareMilestoneConnection>;
|
|
186962
188476
|
missedUpdate: Scalars['Boolean']['output'];
|
|
186963
188477
|
newDueDate?: Maybe<TownsquareTargetDate>;
|
|
186964
188478
|
newPhase?: Maybe<TownsquareProjectPhaseDetails>;
|
|
@@ -186988,6 +188502,10 @@ export declare type TownsquareProjectUpdateHighlightsArgs = {
|
|
|
186988
188502
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
186989
188503
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
186990
188504
|
};
|
|
188505
|
+
export declare type TownsquareProjectUpdateMilestonesArgs = {
|
|
188506
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
188507
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
188508
|
+
};
|
|
186991
188509
|
export declare type TownsquareProjectUpdateUpdateNotesArgs = {
|
|
186992
188510
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
186993
188511
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -187558,6 +189076,7 @@ export declare type TownsquareQueryApi = {
|
|
|
187558
189076
|
goalTypesByAri?: Maybe<Array<Maybe<TownsquareGoalType>>>;
|
|
187559
189077
|
goalUpdatesByAris?: Maybe<Array<Maybe<TownsquareGoalUpdate>>>;
|
|
187560
189078
|
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
189079
|
+
milestonesByAri?: Maybe<Array<Maybe<TownsquareMilestone>>>;
|
|
187561
189080
|
project?: Maybe<TownsquareProject>;
|
|
187562
189081
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
187563
189082
|
projectTql?: Maybe<TownsquareProjectConnection>;
|
|
@@ -187620,6 +189139,9 @@ export declare type TownsquareQueryApiGoalUpdatesByArisArgs = {
|
|
|
187620
189139
|
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
187621
189140
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
187622
189141
|
};
|
|
189142
|
+
export declare type TownsquareQueryApiMilestonesByAriArgs = {
|
|
189143
|
+
aris: Array<Scalars['ID']['input']>;
|
|
189144
|
+
};
|
|
187623
189145
|
export declare type TownsquareQueryApiProjectArgs = {
|
|
187624
189146
|
ari: Scalars['String']['input'];
|
|
187625
189147
|
};
|
|
@@ -187724,6 +189246,24 @@ export declare type TownsquareSlackChannel = {
|
|
|
187724
189246
|
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
187725
189247
|
slackTeamName?: Maybe<Scalars['String']['output']>;
|
|
187726
189248
|
};
|
|
189249
|
+
export declare type TownsquareSlackChannelConnectionResult = {
|
|
189250
|
+
__typename?: 'TownsquareSlackChannelConnectionResult';
|
|
189251
|
+
creationDate?: Maybe<Scalars['String']['output']>;
|
|
189252
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
189253
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
189254
|
+
metadata?: Maybe<TownsquareSlackChannelMetadata>;
|
|
189255
|
+
private?: Maybe<Scalars['Boolean']['output']>;
|
|
189256
|
+
resourceId?: Maybe<Scalars['String']['output']>;
|
|
189257
|
+
slackChannelId?: Maybe<Scalars['String']['output']>;
|
|
189258
|
+
slackChannelName?: Maybe<Scalars['String']['output']>;
|
|
189259
|
+
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
189260
|
+
subscriberId?: Maybe<Scalars['String']['output']>;
|
|
189261
|
+
types?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
189262
|
+
};
|
|
189263
|
+
export declare type TownsquareSlackChannelMetadata = {
|
|
189264
|
+
__typename?: 'TownsquareSlackChannelMetadata';
|
|
189265
|
+
fieldTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
189266
|
+
};
|
|
187727
189267
|
export declare type TownsquareSlackConnection = {
|
|
187728
189268
|
__typename?: 'TownsquareSlackConnection';
|
|
187729
189269
|
channel?: Maybe<TownsquareSlackChannel>;
|
|
@@ -187818,6 +189358,11 @@ export declare type TownsquareTargetDateAddedChange = {
|
|
|
187818
189358
|
__typename?: 'TownsquareTargetDateAddedChange';
|
|
187819
189359
|
newTargetDate?: Maybe<TownsquareTargetDate>;
|
|
187820
189360
|
};
|
|
189361
|
+
export declare type TownsquareTargetDateEditedChange = {
|
|
189362
|
+
__typename?: 'TownsquareTargetDateEditedChange';
|
|
189363
|
+
newTargetDate?: Maybe<TownsquareTargetDate>;
|
|
189364
|
+
oldTargetDate?: Maybe<TownsquareTargetDate>;
|
|
189365
|
+
};
|
|
187821
189366
|
export declare type TownsquareTargetDateInput = {
|
|
187822
189367
|
confidence?: InputMaybe<TownsquareTargetDateType>;
|
|
187823
189368
|
date?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -188866,6 +190411,10 @@ export declare type TrelloBoardId = TrelloBaseBoardId & {
|
|
|
188866
190411
|
id: Scalars['ID']['output'];
|
|
188867
190412
|
objectId: Scalars['ID']['output'];
|
|
188868
190413
|
};
|
|
190414
|
+
export declare enum TrelloBoardInvitePermissionsInput {
|
|
190415
|
+
Admins = "ADMINS",
|
|
190416
|
+
Members = "MEMBERS"
|
|
190417
|
+
}
|
|
188869
190418
|
export declare type TrelloBoardLabelsLimits = {
|
|
188870
190419
|
__typename?: 'TrelloBoardLabelsLimits';
|
|
188871
190420
|
perBoard?: Maybe<TrelloLimitProps>;
|
|
@@ -190159,6 +191708,7 @@ export declare type TrelloDeleteCustomFieldInput = {
|
|
|
190159
191708
|
};
|
|
190160
191709
|
export declare type TrelloDeleteCustomFieldPayload = Payload & {
|
|
190161
191710
|
__typename?: 'TrelloDeleteCustomFieldPayload';
|
|
191711
|
+
customField?: Maybe<TrelloCustomFieldDeleted>;
|
|
190162
191712
|
errors?: Maybe<Array<MutationError>>;
|
|
190163
191713
|
success: Scalars['Boolean']['output'];
|
|
190164
191714
|
};
|
|
@@ -190506,7 +192056,7 @@ export declare type TrelloLabelConnectionUpdated = {
|
|
|
190506
192056
|
};
|
|
190507
192057
|
export declare type TrelloLabelDeleted = {
|
|
190508
192058
|
__typename?: 'TrelloLabelDeleted';
|
|
190509
|
-
id
|
|
192059
|
+
id: Scalars['ID']['output'];
|
|
190510
192060
|
};
|
|
190511
192061
|
export declare type TrelloLabelEdge = {
|
|
190512
192062
|
__typename?: 'TrelloLabelEdge';
|
|
@@ -191031,6 +192581,7 @@ export declare type TrelloMutationApi = {
|
|
|
191031
192581
|
updateBoardBackground?: Maybe<TrelloUpdateBoardBackgroundPayload>;
|
|
191032
192582
|
updateBoardCommentingPermissions?: Maybe<TrelloUpdateBoardCommentingPermissionsPayload>;
|
|
191033
192583
|
updateBoardDescription?: Maybe<TrelloUpdateBoardDescriptionPayload>;
|
|
192584
|
+
updateBoardInvitePermissions?: Maybe<TrelloUpdateBoardInvitePermissionsPayload>;
|
|
191034
192585
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
191035
192586
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
191036
192587
|
updateBoardStarPosition?: Maybe<TrelloUpdateBoardStarPositionPayload>;
|
|
@@ -191244,6 +192795,9 @@ export declare type TrelloMutationApiUpdateBoardCommentingPermissionsArgs = {
|
|
|
191244
192795
|
export declare type TrelloMutationApiUpdateBoardDescriptionArgs = {
|
|
191245
192796
|
input: TrelloUpdateBoardDescriptionInput;
|
|
191246
192797
|
};
|
|
192798
|
+
export declare type TrelloMutationApiUpdateBoardInvitePermissionsArgs = {
|
|
192799
|
+
input: TrelloUpdateBoardInvitePermissionsInput;
|
|
192800
|
+
};
|
|
191247
192801
|
export declare type TrelloMutationApiUpdateBoardIsTemplateArgs = {
|
|
191248
192802
|
input: TrelloUpdateBoardIsTemplateInput;
|
|
191249
192803
|
};
|
|
@@ -192061,6 +193615,7 @@ export declare type TrelloProposedEvent = {
|
|
|
192061
193615
|
cards?: Maybe<TrelloProposedEventCardConnection>;
|
|
192062
193616
|
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
192063
193617
|
objectId: Scalars['ID']['output'];
|
|
193618
|
+
source?: Maybe<TrelloProposedEventSource>;
|
|
192064
193619
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
192065
193620
|
};
|
|
192066
193621
|
export declare type TrelloProposedEventCardsArgs = {
|
|
@@ -192106,11 +193661,17 @@ export declare type TrelloProposedEventInboxCardUpdated = TrelloProposedEventBas
|
|
|
192106
193661
|
name?: Maybe<Scalars['String']['output']>;
|
|
192107
193662
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
192108
193663
|
};
|
|
193664
|
+
export declare enum TrelloProposedEventSource {
|
|
193665
|
+
Manual = "MANUAL",
|
|
193666
|
+
PlanMyDay = "PLAN_MY_DAY",
|
|
193667
|
+
Proactive = "PROACTIVE"
|
|
193668
|
+
}
|
|
192109
193669
|
export declare type TrelloProposedEventUpdated = {
|
|
192110
193670
|
__typename?: 'TrelloProposedEventUpdated';
|
|
192111
193671
|
cards?: Maybe<TrelloProposedEventCardConnectionUpdated>;
|
|
192112
193672
|
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
192113
193673
|
objectId: Scalars['ID']['output'];
|
|
193674
|
+
source?: Maybe<TrelloProposedEventSource>;
|
|
192114
193675
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
192115
193676
|
};
|
|
192116
193677
|
export declare type TrelloProviderCalendarDeleted = {
|
|
@@ -192744,6 +194305,16 @@ export declare type TrelloUpdateBoardDescriptionPayload = Payload & {
|
|
|
192744
194305
|
errors?: Maybe<Array<MutationError>>;
|
|
192745
194306
|
success: Scalars['Boolean']['output'];
|
|
192746
194307
|
};
|
|
194308
|
+
export declare type TrelloUpdateBoardInvitePermissionsInput = {
|
|
194309
|
+
boardId: Scalars['ID']['input'];
|
|
194310
|
+
invitations: TrelloBoardInvitePermissionsInput;
|
|
194311
|
+
};
|
|
194312
|
+
export declare type TrelloUpdateBoardInvitePermissionsPayload = Payload & {
|
|
194313
|
+
__typename?: 'TrelloUpdateBoardInvitePermissionsPayload';
|
|
194314
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194315
|
+
errors?: Maybe<Array<MutationError>>;
|
|
194316
|
+
success: Scalars['Boolean']['output'];
|
|
194317
|
+
};
|
|
192747
194318
|
export declare type TrelloUpdateBoardIsTemplateInput = {
|
|
192748
194319
|
boardId: Scalars['ID']['input'];
|
|
192749
194320
|
value: Scalars['Boolean']['input'];
|
|
@@ -193872,8 +195443,12 @@ export declare type UnifiedCachingQueryGetSimpleCacheKeyArgs = {
|
|
|
193872
195443
|
};
|
|
193873
195444
|
export declare type UnifiedChampionConsentInput = {
|
|
193874
195445
|
aaid: Scalars['String']['input'];
|
|
195446
|
+
consentNda: Scalars['Boolean']['input'];
|
|
195447
|
+
consentPrivacyPolicy: Scalars['Boolean']['input'];
|
|
193875
195448
|
consentProgramAgreement: Scalars['Boolean']['input'];
|
|
193876
|
-
consentSuccessChampionAgreement
|
|
195449
|
+
consentSuccessChampionAgreement?: InputMaybe<Scalars['Boolean']['input']>;
|
|
195450
|
+
preferredEmailId?: InputMaybe<Scalars['String']['input']>;
|
|
195451
|
+
primaryEmailId?: InputMaybe<Scalars['String']['input']>;
|
|
193877
195452
|
};
|
|
193878
195453
|
export declare type UnifiedChampionConsentMutation = {
|
|
193879
195454
|
__typename?: 'UnifiedChampionConsentMutation';
|
|
@@ -195784,6 +197359,7 @@ export declare type UserOnboardingState = {
|
|
|
195784
197359
|
};
|
|
195785
197360
|
export declare type UserPreferences = {
|
|
195786
197361
|
__typename?: 'UserPreferences';
|
|
197362
|
+
commentsPanelSorting: ConfluenceCommentsPanelSorting;
|
|
195787
197363
|
confluenceEditorSettings?: Maybe<ConfluenceEditorSettings>;
|
|
195788
197364
|
contextualEmojiOptOut?: Maybe<Scalars['Boolean']['output']>;
|
|
195789
197365
|
endOfPageRecommendationsOptInStatus: Scalars['String']['output'];
|
|
@@ -195836,6 +197412,7 @@ export declare type UserPreferencesSpaceViewsPersistenceArgs = {
|
|
|
195836
197412
|
export declare type UserPreferencesInput = {
|
|
195837
197413
|
addUserSpaceNotifiedChangeBoardingOfExternalCollab?: InputMaybe<Scalars['String']['input']>;
|
|
195838
197414
|
addUserSpaceNotifiedOfExternalCollab?: InputMaybe<Scalars['String']['input']>;
|
|
197415
|
+
commentsPanelSorting?: InputMaybe<ConfluenceCommentsPanelSorting>;
|
|
195839
197416
|
confluenceEditorSettingsInput?: InputMaybe<ConfluenceEditorSettingsInput>;
|
|
195840
197417
|
contextualEmojiOptOut?: InputMaybe<Scalars['Boolean']['input']>;
|
|
195841
197418
|
endOfPageRecommendationsOptInStatus?: InputMaybe<Scalars['String']['input']>;
|