@forge/cli-shared 8.18.0-next.5 → 8.18.1-next.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 +21 -0
- package/out/graphql/graphql-types.d.ts +1722 -112
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +161 -43
- package/out/service/statsig-service.d.ts +2 -0
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +3 -0
- package/out/ui/command-line-ui.d.ts +9 -2
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +31 -28
- package/out/ui/text.d.ts +2 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -2
- 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']>;
|
|
@@ -33472,9 +33754,13 @@ export declare type CplsAddContributionsPayload = Payload & {
|
|
|
33472
33754
|
__typename?: 'CplsAddContributionsPayload';
|
|
33473
33755
|
contributors?: Maybe<Array<Maybe<CplsContributorEdge>>>;
|
|
33474
33756
|
errors?: Maybe<Array<MutationError>>;
|
|
33757
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
33475
33758
|
success: Scalars['Boolean']['output'];
|
|
33476
33759
|
works?: Maybe<Array<Maybe<CplsWorkEdge>>>;
|
|
33477
33760
|
};
|
|
33761
|
+
export declare type CplsAddContributionsPayloadPeopleViewArgs = {
|
|
33762
|
+
scopeId: Scalars['ID']['input'];
|
|
33763
|
+
};
|
|
33478
33764
|
export declare type CplsAddContributorScopeAssociationInput = {
|
|
33479
33765
|
cloudId: Scalars['ID']['input'];
|
|
33480
33766
|
contributorDataIds: Array<Scalars['ID']['input']>;
|
|
@@ -33484,8 +33770,12 @@ export declare type CplsAddContributorScopeAssociationPayload = Payload & {
|
|
|
33484
33770
|
__typename?: 'CplsAddContributorScopeAssociationPayload';
|
|
33485
33771
|
contributors?: Maybe<Array<Maybe<CplsContributorEdge>>>;
|
|
33486
33772
|
errors?: Maybe<Array<MutationError>>;
|
|
33773
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
33487
33774
|
success: Scalars['Boolean']['output'];
|
|
33488
33775
|
};
|
|
33776
|
+
export declare type CplsAddContributorScopeAssociationPayloadPeopleViewArgs = {
|
|
33777
|
+
scopeId: Scalars['ID']['input'];
|
|
33778
|
+
};
|
|
33489
33779
|
export declare type CplsAddContributorWorkAssociationInput = {
|
|
33490
33780
|
cloudId: Scalars['ID']['input'];
|
|
33491
33781
|
contributorWorkAssociations: Array<CplsContributorWorkAssociation>;
|
|
@@ -33495,6 +33785,7 @@ export declare type CplsAddContributorWorkAssociationPayload = Payload & {
|
|
|
33495
33785
|
contributorWorkAssociations?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
|
|
33496
33786
|
contributorWorkAssociationsByScope?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
|
|
33497
33787
|
errors?: Maybe<Array<MutationError>>;
|
|
33788
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
33498
33789
|
success: Scalars['Boolean']['output'];
|
|
33499
33790
|
workContributorAssociations?: Maybe<Array<Maybe<CplsWorkContributorEdge>>>;
|
|
33500
33791
|
workContributorAssociationsByScope?: Maybe<Array<Maybe<CplsWorkContributorEdge>>>;
|
|
@@ -33502,6 +33793,9 @@ export declare type CplsAddContributorWorkAssociationPayload = Payload & {
|
|
|
33502
33793
|
export declare type CplsAddContributorWorkAssociationPayloadContributorWorkAssociationsByScopeArgs = {
|
|
33503
33794
|
scopeId: Scalars['ID']['input'];
|
|
33504
33795
|
};
|
|
33796
|
+
export declare type CplsAddContributorWorkAssociationPayloadPeopleViewArgs = {
|
|
33797
|
+
scopeId: Scalars['ID']['input'];
|
|
33798
|
+
};
|
|
33505
33799
|
export declare type CplsAddContributorWorkAssociationPayloadWorkContributorAssociationsByScopeArgs = {
|
|
33506
33800
|
scopeId: Scalars['ID']['input'];
|
|
33507
33801
|
};
|
|
@@ -33537,6 +33831,7 @@ export declare type CplsCapacityPlanningPeopleView = {
|
|
|
33537
33831
|
contributorDataIds?: Maybe<CplsContributorDataIdConnection>;
|
|
33538
33832
|
contributors?: Maybe<CplsContributorConnection>;
|
|
33539
33833
|
filters?: Maybe<CplsFilters>;
|
|
33834
|
+
hasSuggestions: Scalars['Boolean']['output'];
|
|
33540
33835
|
id: Scalars['ID']['output'];
|
|
33541
33836
|
timeCells?: Maybe<Array<CplsTimeCell>>;
|
|
33542
33837
|
viewSettings?: Maybe<CplsViewSettings>;
|
|
@@ -33746,9 +34041,13 @@ export declare type CplsDeleteContributionSuggestionsPayload = Payload & {
|
|
|
33746
34041
|
__typename?: 'CplsDeleteContributionSuggestionsPayload';
|
|
33747
34042
|
contributors?: Maybe<Array<Maybe<CplsContributorEdge>>>;
|
|
33748
34043
|
errors?: Maybe<Array<MutationError>>;
|
|
34044
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
33749
34045
|
success: Scalars['Boolean']['output'];
|
|
33750
34046
|
works?: Maybe<Array<Maybe<CplsWorkEdge>>>;
|
|
33751
34047
|
};
|
|
34048
|
+
export declare type CplsDeleteContributionSuggestionsPayloadPeopleViewArgs = {
|
|
34049
|
+
scopeId: Scalars['ID']['input'];
|
|
34050
|
+
};
|
|
33752
34051
|
export declare type CplsDeleteContributorScopeAssociationInput = {
|
|
33753
34052
|
cloudId: Scalars['ID']['input'];
|
|
33754
34053
|
contributorDataIds: Array<Scalars['ID']['input']>;
|
|
@@ -33758,8 +34057,12 @@ export declare type CplsDeleteContributorScopeAssociationPayload = Payload & {
|
|
|
33758
34057
|
__typename?: 'CplsDeleteContributorScopeAssociationPayload';
|
|
33759
34058
|
errors?: Maybe<Array<MutationError>>;
|
|
33760
34059
|
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
34060
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
33761
34061
|
success: Scalars['Boolean']['output'];
|
|
33762
34062
|
};
|
|
34063
|
+
export declare type CplsDeleteContributorScopeAssociationPayloadPeopleViewArgs = {
|
|
34064
|
+
scopeId: Scalars['ID']['input'];
|
|
34065
|
+
};
|
|
33763
34066
|
export declare type CplsDeleteContributorScopeAssociationSuggestionForUserInput = {
|
|
33764
34067
|
contributorDataIds: Array<Scalars['ID']['input']>;
|
|
33765
34068
|
scopeId: Scalars['ID']['input'];
|
|
@@ -33768,8 +34071,12 @@ export declare type CplsDeleteContributorScopeAssociationSuggestionPayload = Pay
|
|
|
33768
34071
|
__typename?: 'CplsDeleteContributorScopeAssociationSuggestionPayload';
|
|
33769
34072
|
errors?: Maybe<Array<MutationError>>;
|
|
33770
34073
|
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
34074
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
33771
34075
|
success: Scalars['Boolean']['output'];
|
|
33772
34076
|
};
|
|
34077
|
+
export declare type CplsDeleteContributorScopeAssociationSuggestionPayloadPeopleViewArgs = {
|
|
34078
|
+
scopeId: Scalars['ID']['input'];
|
|
34079
|
+
};
|
|
33773
34080
|
export declare type CplsDeleteContributorWorkAssociationInput = {
|
|
33774
34081
|
cloudId: Scalars['ID']['input'];
|
|
33775
34082
|
contributorWorkAssociations: Array<CplsContributorWorkAssociation>;
|
|
@@ -33779,12 +34086,16 @@ export declare type CplsDeleteContributorWorkAssociationPayload = Payload & {
|
|
|
33779
34086
|
contributorsByScope?: Maybe<Array<Maybe<CplsContributor>>>;
|
|
33780
34087
|
errors?: Maybe<Array<MutationError>>;
|
|
33781
34088
|
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
34089
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
33782
34090
|
success: Scalars['Boolean']['output'];
|
|
33783
34091
|
worksByScope?: Maybe<Array<Maybe<CplsWork>>>;
|
|
33784
34092
|
};
|
|
33785
34093
|
export declare type CplsDeleteContributorWorkAssociationPayloadContributorsByScopeArgs = {
|
|
33786
34094
|
scopeId: Scalars['ID']['input'];
|
|
33787
34095
|
};
|
|
34096
|
+
export declare type CplsDeleteContributorWorkAssociationPayloadPeopleViewArgs = {
|
|
34097
|
+
scopeId: Scalars['ID']['input'];
|
|
34098
|
+
};
|
|
33788
34099
|
export declare type CplsDeleteContributorWorkAssociationPayloadWorksByScopeArgs = {
|
|
33789
34100
|
scopeId: Scalars['ID']['input'];
|
|
33790
34101
|
};
|
|
@@ -33797,12 +34108,16 @@ export declare type CplsDeleteContributorWorkAssociationSuggestionPayload = Payl
|
|
|
33797
34108
|
contributorsByScope?: Maybe<Array<Maybe<CplsContributor>>>;
|
|
33798
34109
|
errors?: Maybe<Array<MutationError>>;
|
|
33799
34110
|
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
34111
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
33800
34112
|
success: Scalars['Boolean']['output'];
|
|
33801
34113
|
worksByScope?: Maybe<Array<Maybe<CplsWork>>>;
|
|
33802
34114
|
};
|
|
33803
34115
|
export declare type CplsDeleteContributorWorkAssociationSuggestionPayloadContributorsByScopeArgs = {
|
|
33804
34116
|
scopeId: Scalars['ID']['input'];
|
|
33805
34117
|
};
|
|
34118
|
+
export declare type CplsDeleteContributorWorkAssociationSuggestionPayloadPeopleViewArgs = {
|
|
34119
|
+
scopeId: Scalars['ID']['input'];
|
|
34120
|
+
};
|
|
33806
34121
|
export declare type CplsDeleteContributorWorkAssociationSuggestionPayloadWorksByScopeArgs = {
|
|
33807
34122
|
scopeId: Scalars['ID']['input'];
|
|
33808
34123
|
};
|
|
@@ -34553,6 +34868,7 @@ export declare type CreateInvitationUrlPayload = {
|
|
|
34553
34868
|
export declare type CreateJiraPlaybookInput = {
|
|
34554
34869
|
cloudId: Scalars['ID']['input'];
|
|
34555
34870
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
34871
|
+
isAiCreated?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34556
34872
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
34557
34873
|
name: Scalars['String']['input'];
|
|
34558
34874
|
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -38479,6 +38795,46 @@ export declare type DevConsoleAppResourceUsageGroupedResponse = {
|
|
|
38479
38795
|
resourceUsage: Array<DevConsoleResourceUsagePeriod>;
|
|
38480
38796
|
};
|
|
38481
38797
|
export declare type DevConsoleAppResourceUsageResponse = DevConsoleAppResourceUsageFlatResponse | DevConsoleAppResourceUsageGroupedResponse;
|
|
38798
|
+
export declare type DevConsoleAppTransferDestination = {
|
|
38799
|
+
__typename?: 'DevConsoleAppTransferDestination';
|
|
38800
|
+
approvedByUser: Scalars['String']['output'];
|
|
38801
|
+
developerSpaceId: Scalars['String']['output'];
|
|
38802
|
+
};
|
|
38803
|
+
export declare type DevConsoleAppTransferRecord = {
|
|
38804
|
+
__typename?: 'DevConsoleAppTransferRecord';
|
|
38805
|
+
appId: Scalars['String']['output'];
|
|
38806
|
+
ccpOrderId: Scalars['String']['output'];
|
|
38807
|
+
destination: DevConsoleAppTransferDestination;
|
|
38808
|
+
source: DevConsoleAppTransferSource;
|
|
38809
|
+
state: DevConsoleAppTransferStateInfo;
|
|
38810
|
+
};
|
|
38811
|
+
export declare type DevConsoleAppTransferSource = {
|
|
38812
|
+
__typename?: 'DevConsoleAppTransferSource';
|
|
38813
|
+
developerSpaceId: Scalars['String']['output'];
|
|
38814
|
+
initiatedBy: Scalars['String']['output'];
|
|
38815
|
+
};
|
|
38816
|
+
export declare enum DevConsoleAppTransferState {
|
|
38817
|
+
Completed = "COMPLETED",
|
|
38818
|
+
DestinationApproved = "DESTINATION_APPROVED",
|
|
38819
|
+
Failed = "FAILED",
|
|
38820
|
+
Initiated = "INITIATED"
|
|
38821
|
+
}
|
|
38822
|
+
export declare type DevConsoleAppTransferStateInfo = {
|
|
38823
|
+
__typename?: 'DevConsoleAppTransferStateInfo';
|
|
38824
|
+
attempt: Scalars['Int']['output'];
|
|
38825
|
+
current: DevConsoleAppTransferState;
|
|
38826
|
+
lastUpdatedAt: Scalars['String']['output'];
|
|
38827
|
+
};
|
|
38828
|
+
export declare type DevConsoleAppTransferStatusResponse = {
|
|
38829
|
+
__typename?: 'DevConsoleAppTransferStatusResponse';
|
|
38830
|
+
error?: Maybe<QueryError>;
|
|
38831
|
+
transfer?: Maybe<DevConsoleAppTransferRecord>;
|
|
38832
|
+
};
|
|
38833
|
+
export declare type DevConsoleAppTransfersResponse = {
|
|
38834
|
+
__typename?: 'DevConsoleAppTransfersResponse';
|
|
38835
|
+
error?: Maybe<QueryError>;
|
|
38836
|
+
transfers?: Maybe<Array<DevConsoleAppTransferRecord>>;
|
|
38837
|
+
};
|
|
38482
38838
|
export declare type DevConsoleAppUsageFiltersInput = {
|
|
38483
38839
|
interval: DevConsoleDateIntervalInput;
|
|
38484
38840
|
resource: Array<DevConsoleResource>;
|
|
@@ -38546,6 +38902,17 @@ export declare enum DevConsoleComputeType {
|
|
|
38546
38902
|
Async = "async",
|
|
38547
38903
|
Sync = "sync"
|
|
38548
38904
|
}
|
|
38905
|
+
export declare type DevConsoleCreateAppTransferInput = {
|
|
38906
|
+
appId: Scalars['String']['input'];
|
|
38907
|
+
destinationDeveloperSpaceId: Scalars['String']['input'];
|
|
38908
|
+
sourceDeveloperSpaceId: Scalars['String']['input'];
|
|
38909
|
+
};
|
|
38910
|
+
export declare type DevConsoleCreateAppTransferPayload = Payload & {
|
|
38911
|
+
__typename?: 'DevConsoleCreateAppTransferPayload';
|
|
38912
|
+
ccpOrderId?: Maybe<Scalars['String']['output']>;
|
|
38913
|
+
errors?: Maybe<Array<MutationError>>;
|
|
38914
|
+
success: Scalars['Boolean']['output'];
|
|
38915
|
+
};
|
|
38549
38916
|
export declare type DevConsoleCreateDeveloperSpaceInput = {
|
|
38550
38917
|
name: Scalars['String']['input'];
|
|
38551
38918
|
};
|
|
@@ -38703,6 +39070,7 @@ export declare type DevConsoleMutation = {
|
|
|
38703
39070
|
acceptAppBillingConsent?: Maybe<DevConsoleResponsePayload>;
|
|
38704
39071
|
archiveDeveloperSpace?: Maybe<DevConsoleResponsePayload>;
|
|
38705
39072
|
assignDeveloperSpace?: Maybe<DevConsoleAssignDeveloperSpacePayload>;
|
|
39073
|
+
createAppTransfer?: Maybe<DevConsoleCreateAppTransferPayload>;
|
|
38706
39074
|
createDeveloperSpace?: Maybe<DevConsoleDeveloperSpacePayload>;
|
|
38707
39075
|
publishDeveloperSpace?: Maybe<DevConsoleResponsePayload>;
|
|
38708
39076
|
updateDeveloperSpaceMemberRoles?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
@@ -38718,6 +39086,9 @@ export declare type DevConsoleMutationArchiveDeveloperSpaceArgs = {
|
|
|
38718
39086
|
export declare type DevConsoleMutationAssignDeveloperSpaceArgs = {
|
|
38719
39087
|
input: DevConsoleAssignDeveloperSpaceInput;
|
|
38720
39088
|
};
|
|
39089
|
+
export declare type DevConsoleMutationCreateAppTransferArgs = {
|
|
39090
|
+
input: DevConsoleCreateAppTransferInput;
|
|
39091
|
+
};
|
|
38721
39092
|
export declare type DevConsoleMutationCreateDeveloperSpaceArgs = {
|
|
38722
39093
|
input: DevConsoleCreateDeveloperSpaceInput;
|
|
38723
39094
|
};
|
|
@@ -38749,6 +39120,7 @@ export declare type DevConsoleQuery = {
|
|
|
38749
39120
|
downloadAppInstallations?: Maybe<DevConsoleDownloadAppInstallationsResponse>;
|
|
38750
39121
|
fetchDownloadAppInstallationsStatus?: Maybe<DevConsoleFetchDownloadAppInstallationsStatusResponse>;
|
|
38751
39122
|
getAppEnforcementMetadata?: Maybe<DevConsoleAppEnforcementMetadataResponse>;
|
|
39123
|
+
getAppTransferStatus?: Maybe<DevConsoleAppTransferStatusResponse>;
|
|
38752
39124
|
getAppsWithoutConsent?: Maybe<DevConsoleAppsWithoutConsentResponse>;
|
|
38753
39125
|
getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
|
|
38754
39126
|
getDeveloperSpaceEnforcementMetadata?: Maybe<DevConsoleDeveloperSpaceEnforcementMetadataResponse>;
|
|
@@ -38757,6 +39129,7 @@ export declare type DevConsoleQuery = {
|
|
|
38757
39129
|
getDeveloperSpaceUserPermissions?: Maybe<DevConsoleDeveloperSpaceUserPermissionsResponse>;
|
|
38758
39130
|
getDeveloperSpaceWithLinkingAccess?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
38759
39131
|
getDeveloperSpaceWithRoles?: Maybe<Array<DevConsoleDeveloperSpaceWithRole>>;
|
|
39132
|
+
getTransfersByAppId?: Maybe<DevConsoleAppTransfersResponse>;
|
|
38760
39133
|
hasAnyConsoleAdmin?: Maybe<DevConsoleHasConsoleAdminResponse>;
|
|
38761
39134
|
tenantContexts?: Maybe<Array<Maybe<DevConsoleTenantContext>>>;
|
|
38762
39135
|
};
|
|
@@ -38790,6 +39163,9 @@ export declare type DevConsoleQueryFetchDownloadAppInstallationsStatusArgs = {
|
|
|
38790
39163
|
export declare type DevConsoleQueryGetAppEnforcementMetadataArgs = {
|
|
38791
39164
|
appId: Scalars['ID']['input'];
|
|
38792
39165
|
};
|
|
39166
|
+
export declare type DevConsoleQueryGetAppTransferStatusArgs = {
|
|
39167
|
+
ccpOrderId: Scalars['String']['input'];
|
|
39168
|
+
};
|
|
38793
39169
|
export declare type DevConsoleQueryGetAppsWithoutConsentArgs = {
|
|
38794
39170
|
developerSpaceId: Scalars['String']['input'];
|
|
38795
39171
|
};
|
|
@@ -38808,6 +39184,10 @@ export declare type DevConsoleQueryGetDeveloperSpaceTransactionAccountArgs = {
|
|
|
38808
39184
|
export declare type DevConsoleQueryGetDeveloperSpaceUserPermissionsArgs = {
|
|
38809
39185
|
developerSpaceId: Scalars['String']['input'];
|
|
38810
39186
|
};
|
|
39187
|
+
export declare type DevConsoleQueryGetTransfersByAppIdArgs = {
|
|
39188
|
+
appId: Scalars['String']['input'];
|
|
39189
|
+
status: Array<InputMaybe<DevConsoleAppTransferState>>;
|
|
39190
|
+
};
|
|
38811
39191
|
export declare type DevConsoleQueryHasAnyConsoleAdminArgs = {
|
|
38812
39192
|
developerSpaceId: Scalars['String']['input'];
|
|
38813
39193
|
};
|
|
@@ -41723,6 +42103,10 @@ export declare type ExternalCommit = Node & {
|
|
|
41723
42103
|
export declare enum ExternalCommitFlags {
|
|
41724
42104
|
MergeCommit = "MERGE_COMMIT"
|
|
41725
42105
|
}
|
|
42106
|
+
export declare enum ExternalContentRepresentation {
|
|
42107
|
+
Base64 = "BASE64",
|
|
42108
|
+
Plaintext = "PLAINTEXT"
|
|
42109
|
+
}
|
|
41726
42110
|
export declare type ExternalContributor = {
|
|
41727
42111
|
__typename?: 'ExternalContributor';
|
|
41728
42112
|
interactionCount?: Maybe<Scalars['Long']['output']>;
|
|
@@ -41953,6 +42337,8 @@ export declare type ExternalCustomerOrgLifeTimeValue = {
|
|
|
41953
42337
|
export declare type ExternalDashboard = Node & {
|
|
41954
42338
|
__typename?: 'ExternalDashboard';
|
|
41955
42339
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
42340
|
+
container?: Maybe<ExternalEntity>;
|
|
42341
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
41956
42342
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
41957
42343
|
createdBy?: Maybe<ExternalUser>;
|
|
41958
42344
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -41964,6 +42350,8 @@ export declare type ExternalDashboard = Node & {
|
|
|
41964
42350
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
41965
42351
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
41966
42352
|
pages?: Maybe<Array<Maybe<ExternalDashboardPage>>>;
|
|
42353
|
+
parent?: Maybe<ExternalEntity>;
|
|
42354
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
41967
42355
|
provider?: Maybe<ExternalProvider>;
|
|
41968
42356
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
41969
42357
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
@@ -42364,6 +42752,7 @@ export declare type ExternalLargeContent = {
|
|
|
42364
42752
|
mediaTextUrl?: Maybe<Scalars['String']['output']>;
|
|
42365
42753
|
mediaThumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
42366
42754
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
42755
|
+
representation?: Maybe<ExternalContentRepresentation>;
|
|
42367
42756
|
};
|
|
42368
42757
|
export declare type ExternalLocation = {
|
|
42369
42758
|
__typename?: 'ExternalLocation';
|
|
@@ -44604,6 +44993,7 @@ export declare type GlobalSpaceIdentifier = {
|
|
|
44604
44993
|
spaceIdentifier?: Maybe<Scalars['String']['output']>;
|
|
44605
44994
|
};
|
|
44606
44995
|
export declare enum GrantCheckProduct {
|
|
44996
|
+
Assets = "ASSETS",
|
|
44607
44997
|
Compass = "COMPASS",
|
|
44608
44998
|
Confluence = "CONFLUENCE",
|
|
44609
44999
|
Feedback = "FEEDBACK",
|
|
@@ -45780,6 +46170,7 @@ export declare type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNo
|
|
|
45780
46170
|
description?: Maybe<Scalars['String']['output']>;
|
|
45781
46171
|
displayName: Scalars['String']['output'];
|
|
45782
46172
|
documentationUrl?: Maybe<Scalars['String']['output']>;
|
|
46173
|
+
extraInputs: Array<GraphIntegrationMcpAdminManagementMcpServerExtraInput>;
|
|
45783
46174
|
iconKey?: Maybe<Scalars['String']['output']>;
|
|
45784
46175
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
45785
46176
|
isInstalled: Scalars['Boolean']['output'];
|
|
@@ -45798,6 +46189,14 @@ export declare type GraphIntegrationMcpAdminManagementMcpServerEdge = {
|
|
|
45798
46189
|
cursor: Scalars['String']['output'];
|
|
45799
46190
|
node?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
|
|
45800
46191
|
};
|
|
46192
|
+
export declare type GraphIntegrationMcpAdminManagementMcpServerExtraInput = {
|
|
46193
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerExtraInput';
|
|
46194
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
46195
|
+
displayName: Scalars['String']['output'];
|
|
46196
|
+
key: Scalars['String']['output'];
|
|
46197
|
+
required: Scalars['Boolean']['output'];
|
|
46198
|
+
validationPattern?: Maybe<Scalars['String']['output']>;
|
|
46199
|
+
};
|
|
45801
46200
|
export declare type GraphIntegrationMcpAdminManagementMcpServerMetaData = {
|
|
45802
46201
|
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerMetaData';
|
|
45803
46202
|
iconKey: Scalars['String']['output'];
|
|
@@ -48899,6 +49298,8 @@ export declare type GraphStore = {
|
|
|
48899
49298
|
atlassianUserDismissedJiraForYouRecommendationEntityBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
48900
49299
|
atlassianUserDismissedJiraForYouRecommendationEntityInverse?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection>;
|
|
48901
49300
|
atlassianUserDismissedJiraForYouRecommendationEntityInverseBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
49301
|
+
atlassianUserFollowsAtlassianHomeTag?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagConnection>;
|
|
49302
|
+
atlassianUserFollowsAtlassianHomeTagInverse?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection>;
|
|
48902
49303
|
atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
48903
49304
|
atlassianUserInvitedToLoomMeetingBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
|
|
48904
49305
|
atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
@@ -48921,6 +49322,7 @@ export declare type GraphStore = {
|
|
|
48921
49322
|
atlassianUserOwnsExternalTestRunInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunInverseConnection>;
|
|
48922
49323
|
atlassianUserOwnsExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusConnection>;
|
|
48923
49324
|
atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
|
|
49325
|
+
atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
|
|
48924
49326
|
atlassianUserUpdatedExternalCustomerContact?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection>;
|
|
48925
49327
|
atlassianUserUpdatedExternalCustomerContactInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseConnection>;
|
|
48926
49328
|
atlassianUserUpdatedExternalCustomerOrgCategory?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryConnection>;
|
|
@@ -49131,6 +49533,7 @@ export declare type GraphStore = {
|
|
|
49131
49533
|
incidentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullIncidentLinkedJswIssueConnection>;
|
|
49132
49534
|
incidentLinkedJswIssueRelationship?: Maybe<GraphStoreFullIncidentLinkedJswIssueConnection>;
|
|
49133
49535
|
inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
|
|
49536
|
+
inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
49134
49537
|
issueAssociatedBranch?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchConnection>;
|
|
49135
49538
|
issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
|
|
49136
49539
|
issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
@@ -49430,6 +49833,12 @@ export declare type GraphStore = {
|
|
|
49430
49833
|
riskHasProjectInverseBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
|
|
49431
49834
|
scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
|
|
49432
49835
|
scorecardHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection>;
|
|
49836
|
+
secodaDownstreamLineageBatch?: Maybe<GraphStoreBatchSecodaDownstreamLineageConnection>;
|
|
49837
|
+
secodaDownstreamLineageInverseBatch?: Maybe<GraphStoreBatchSecodaDownstreamLineageConnection>;
|
|
49838
|
+
secodaSourceLineageBatch?: Maybe<GraphStoreBatchSecodaSourceLineageConnection>;
|
|
49839
|
+
secodaSourceLineageInverseBatch?: Maybe<GraphStoreBatchSecodaSourceLineageConnection>;
|
|
49840
|
+
secodaTargetLineageBatch?: Maybe<GraphStoreBatchSecodaTargetLineageConnection>;
|
|
49841
|
+
secodaTargetLineageInverseBatch?: Maybe<GraphStoreBatchSecodaTargetLineageConnection>;
|
|
49433
49842
|
securityContainerAssociatedToVulnerability?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
49434
49843
|
securityContainerAssociatedToVulnerabilityBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
49435
49844
|
securityContainerAssociatedToVulnerabilityInverse?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityInverseConnection>;
|
|
@@ -50519,6 +50928,22 @@ export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEnti
|
|
|
50519
50928
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50520
50929
|
sort?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortInput>;
|
|
50521
50930
|
};
|
|
50931
|
+
export declare type GraphStoreAtlassianUserFollowsAtlassianHomeTagArgs = {
|
|
50932
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
50933
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50934
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50935
|
+
id: Scalars['ID']['input'];
|
|
50936
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50937
|
+
sort?: InputMaybe<GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
50938
|
+
};
|
|
50939
|
+
export declare type GraphStoreAtlassianUserFollowsAtlassianHomeTagInverseArgs = {
|
|
50940
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
50941
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50942
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50943
|
+
id: Scalars['ID']['input'];
|
|
50944
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50945
|
+
sort?: InputMaybe<GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
50946
|
+
};
|
|
50522
50947
|
export declare type GraphStoreAtlassianUserInvitedToLoomMeetingArgs = {
|
|
50523
50948
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
50524
50949
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -50693,6 +51118,14 @@ export declare type GraphStoreAtlassianUserOwnsExternalTestStatusInverseArgs = {
|
|
|
50693
51118
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50694
51119
|
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTestStatusSortInput>;
|
|
50695
51120
|
};
|
|
51121
|
+
export declare type GraphStoreAtlassianUserOwnsInferredProjectInverseArgs = {
|
|
51122
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51123
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51124
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51125
|
+
id: Scalars['ID']['input'];
|
|
51126
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51127
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsInferredProjectSortInput>;
|
|
51128
|
+
};
|
|
50696
51129
|
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerContactArgs = {
|
|
50697
51130
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
50698
51131
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52309,6 +52742,14 @@ export declare type GraphStoreInferredProjectLinksEntityArgs = {
|
|
|
52309
52742
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52310
52743
|
sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
|
|
52311
52744
|
};
|
|
52745
|
+
export declare type GraphStoreInferredTeamCollaboratesOnInferredProjectInverseArgs = {
|
|
52746
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52747
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52748
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52749
|
+
id: Scalars['ID']['input'];
|
|
52750
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52751
|
+
sort?: InputMaybe<GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput>;
|
|
52752
|
+
};
|
|
52312
52753
|
export declare type GraphStoreIssueAssociatedBranchArgs = {
|
|
52313
52754
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52314
52755
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -54557,6 +54998,48 @@ export declare type GraphStoreScorecardHasAtlasGoalInverseArgs = {
|
|
|
54557
54998
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54558
54999
|
sort?: InputMaybe<GraphStoreScorecardHasAtlasGoalSortInput>;
|
|
54559
55000
|
};
|
|
55001
|
+
export declare type GraphStoreSecodaDownstreamLineageBatchArgs = {
|
|
55002
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55003
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55004
|
+
ids: Array<Scalars['ID']['input']>;
|
|
55005
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55006
|
+
sort?: InputMaybe<GraphStoreSecodaDownstreamLineageSortInput>;
|
|
55007
|
+
};
|
|
55008
|
+
export declare type GraphStoreSecodaDownstreamLineageInverseBatchArgs = {
|
|
55009
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55010
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55011
|
+
ids: Array<Scalars['ID']['input']>;
|
|
55012
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55013
|
+
sort?: InputMaybe<GraphStoreSecodaDownstreamLineageSortInput>;
|
|
55014
|
+
};
|
|
55015
|
+
export declare type GraphStoreSecodaSourceLineageBatchArgs = {
|
|
55016
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55017
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55018
|
+
ids: Array<Scalars['ID']['input']>;
|
|
55019
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55020
|
+
sort?: InputMaybe<GraphStoreSecodaSourceLineageSortInput>;
|
|
55021
|
+
};
|
|
55022
|
+
export declare type GraphStoreSecodaSourceLineageInverseBatchArgs = {
|
|
55023
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55024
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55025
|
+
ids: Array<Scalars['ID']['input']>;
|
|
55026
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55027
|
+
sort?: InputMaybe<GraphStoreSecodaSourceLineageSortInput>;
|
|
55028
|
+
};
|
|
55029
|
+
export declare type GraphStoreSecodaTargetLineageBatchArgs = {
|
|
55030
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55031
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55032
|
+
ids: Array<Scalars['ID']['input']>;
|
|
55033
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55034
|
+
sort?: InputMaybe<GraphStoreSecodaTargetLineageSortInput>;
|
|
55035
|
+
};
|
|
55036
|
+
export declare type GraphStoreSecodaTargetLineageInverseBatchArgs = {
|
|
55037
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55038
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55039
|
+
ids: Array<Scalars['ID']['input']>;
|
|
55040
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55041
|
+
sort?: InputMaybe<GraphStoreSecodaTargetLineageSortInput>;
|
|
55042
|
+
};
|
|
54560
55043
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityArgs = {
|
|
54561
55044
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54562
55045
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -58147,6 +58630,9 @@ export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEnti
|
|
|
58147
58630
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
58148
58631
|
to_dismissedCategories?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalSortInput>;
|
|
58149
58632
|
};
|
|
58633
|
+
export declare type GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput = {
|
|
58634
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58635
|
+
};
|
|
58150
58636
|
export declare type GraphStoreAtlassianUserInvitedToLoomMeetingSortInput = {
|
|
58151
58637
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58152
58638
|
};
|
|
@@ -58177,6 +58663,9 @@ export declare type GraphStoreAtlassianUserOwnsExternalTestRunSortInput = {
|
|
|
58177
58663
|
export declare type GraphStoreAtlassianUserOwnsExternalTestStatusSortInput = {
|
|
58178
58664
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58179
58665
|
};
|
|
58666
|
+
export declare type GraphStoreAtlassianUserOwnsInferredProjectSortInput = {
|
|
58667
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58668
|
+
};
|
|
58180
58669
|
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerContactSortInput = {
|
|
58181
58670
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58182
58671
|
};
|
|
@@ -59362,7 +59851,7 @@ export declare type GraphStoreBatchProjectLinksToEntityEndNode = {
|
|
|
59362
59851
|
data?: Maybe<GraphStoreBatchProjectLinksToEntityEndUnion>;
|
|
59363
59852
|
id: Scalars['ID']['output'];
|
|
59364
59853
|
};
|
|
59365
|
-
export declare type GraphStoreBatchProjectLinksToEntityEndUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomSpace | LoomVideo;
|
|
59854
|
+
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
59855
|
export declare type GraphStoreBatchProjectLinksToEntityInnerConnection = {
|
|
59367
59856
|
__typename?: 'GraphStoreBatchProjectLinksToEntityInnerConnection';
|
|
59368
59857
|
edges: Array<Maybe<GraphStoreBatchProjectLinksToEntityInnerEdge>>;
|
|
@@ -59429,6 +59918,117 @@ export declare type GraphStoreBatchRiskHasProjectStartNode = {
|
|
|
59429
59918
|
id: Scalars['ID']['output'];
|
|
59430
59919
|
};
|
|
59431
59920
|
export declare type GraphStoreBatchRiskHasProjectStartUnion = MercuryRisk;
|
|
59921
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageConnection = HasPageInfo & {
|
|
59922
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageConnection';
|
|
59923
|
+
edges: Array<Maybe<GraphStoreBatchSecodaDownstreamLineageEdge>>;
|
|
59924
|
+
nodes: Array<Maybe<GraphStoreBatchSecodaDownstreamLineageNode>>;
|
|
59925
|
+
pageInfo: PageInfo;
|
|
59926
|
+
};
|
|
59927
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageEdge = {
|
|
59928
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageEdge';
|
|
59929
|
+
node: GraphStoreBatchSecodaDownstreamLineageInnerConnection;
|
|
59930
|
+
};
|
|
59931
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageEndNode = {
|
|
59932
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageEndNode';
|
|
59933
|
+
id: Scalars['ID']['output'];
|
|
59934
|
+
};
|
|
59935
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageInnerConnection = {
|
|
59936
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageInnerConnection';
|
|
59937
|
+
edges: Array<Maybe<GraphStoreBatchSecodaDownstreamLineageInnerEdge>>;
|
|
59938
|
+
nodes: Array<Maybe<GraphStoreBatchSecodaDownstreamLineageNode>>;
|
|
59939
|
+
requestedId: Scalars['ID']['output'];
|
|
59940
|
+
};
|
|
59941
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageInnerEdge = {
|
|
59942
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageInnerEdge';
|
|
59943
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
59944
|
+
node: GraphStoreBatchSecodaDownstreamLineageNode;
|
|
59945
|
+
};
|
|
59946
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageNode = Node & {
|
|
59947
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageNode';
|
|
59948
|
+
createdAt: Scalars['DateTime']['output'];
|
|
59949
|
+
from: GraphStoreBatchSecodaDownstreamLineageStartNode;
|
|
59950
|
+
id: Scalars['ID']['output'];
|
|
59951
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
59952
|
+
to: GraphStoreBatchSecodaDownstreamLineageEndNode;
|
|
59953
|
+
};
|
|
59954
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageStartNode = {
|
|
59955
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageStartNode';
|
|
59956
|
+
id: Scalars['ID']['output'];
|
|
59957
|
+
};
|
|
59958
|
+
export declare type GraphStoreBatchSecodaSourceLineageConnection = HasPageInfo & {
|
|
59959
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageConnection';
|
|
59960
|
+
edges: Array<Maybe<GraphStoreBatchSecodaSourceLineageEdge>>;
|
|
59961
|
+
nodes: Array<Maybe<GraphStoreBatchSecodaSourceLineageNode>>;
|
|
59962
|
+
pageInfo: PageInfo;
|
|
59963
|
+
};
|
|
59964
|
+
export declare type GraphStoreBatchSecodaSourceLineageEdge = {
|
|
59965
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageEdge';
|
|
59966
|
+
node: GraphStoreBatchSecodaSourceLineageInnerConnection;
|
|
59967
|
+
};
|
|
59968
|
+
export declare type GraphStoreBatchSecodaSourceLineageEndNode = {
|
|
59969
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageEndNode';
|
|
59970
|
+
id: Scalars['ID']['output'];
|
|
59971
|
+
};
|
|
59972
|
+
export declare type GraphStoreBatchSecodaSourceLineageInnerConnection = {
|
|
59973
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageInnerConnection';
|
|
59974
|
+
edges: Array<Maybe<GraphStoreBatchSecodaSourceLineageInnerEdge>>;
|
|
59975
|
+
nodes: Array<Maybe<GraphStoreBatchSecodaSourceLineageNode>>;
|
|
59976
|
+
requestedId: Scalars['ID']['output'];
|
|
59977
|
+
};
|
|
59978
|
+
export declare type GraphStoreBatchSecodaSourceLineageInnerEdge = {
|
|
59979
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageInnerEdge';
|
|
59980
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
59981
|
+
node: GraphStoreBatchSecodaSourceLineageNode;
|
|
59982
|
+
};
|
|
59983
|
+
export declare type GraphStoreBatchSecodaSourceLineageNode = Node & {
|
|
59984
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageNode';
|
|
59985
|
+
createdAt: Scalars['DateTime']['output'];
|
|
59986
|
+
from: GraphStoreBatchSecodaSourceLineageStartNode;
|
|
59987
|
+
id: Scalars['ID']['output'];
|
|
59988
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
59989
|
+
to: GraphStoreBatchSecodaSourceLineageEndNode;
|
|
59990
|
+
};
|
|
59991
|
+
export declare type GraphStoreBatchSecodaSourceLineageStartNode = {
|
|
59992
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageStartNode';
|
|
59993
|
+
id: Scalars['ID']['output'];
|
|
59994
|
+
};
|
|
59995
|
+
export declare type GraphStoreBatchSecodaTargetLineageConnection = HasPageInfo & {
|
|
59996
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageConnection';
|
|
59997
|
+
edges: Array<Maybe<GraphStoreBatchSecodaTargetLineageEdge>>;
|
|
59998
|
+
nodes: Array<Maybe<GraphStoreBatchSecodaTargetLineageNode>>;
|
|
59999
|
+
pageInfo: PageInfo;
|
|
60000
|
+
};
|
|
60001
|
+
export declare type GraphStoreBatchSecodaTargetLineageEdge = {
|
|
60002
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageEdge';
|
|
60003
|
+
node: GraphStoreBatchSecodaTargetLineageInnerConnection;
|
|
60004
|
+
};
|
|
60005
|
+
export declare type GraphStoreBatchSecodaTargetLineageEndNode = {
|
|
60006
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageEndNode';
|
|
60007
|
+
id: Scalars['ID']['output'];
|
|
60008
|
+
};
|
|
60009
|
+
export declare type GraphStoreBatchSecodaTargetLineageInnerConnection = {
|
|
60010
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageInnerConnection';
|
|
60011
|
+
edges: Array<Maybe<GraphStoreBatchSecodaTargetLineageInnerEdge>>;
|
|
60012
|
+
nodes: Array<Maybe<GraphStoreBatchSecodaTargetLineageNode>>;
|
|
60013
|
+
requestedId: Scalars['ID']['output'];
|
|
60014
|
+
};
|
|
60015
|
+
export declare type GraphStoreBatchSecodaTargetLineageInnerEdge = {
|
|
60016
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageInnerEdge';
|
|
60017
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
60018
|
+
node: GraphStoreBatchSecodaTargetLineageNode;
|
|
60019
|
+
};
|
|
60020
|
+
export declare type GraphStoreBatchSecodaTargetLineageNode = Node & {
|
|
60021
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageNode';
|
|
60022
|
+
createdAt: Scalars['DateTime']['output'];
|
|
60023
|
+
from: GraphStoreBatchSecodaTargetLineageStartNode;
|
|
60024
|
+
id: Scalars['ID']['output'];
|
|
60025
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
60026
|
+
to: GraphStoreBatchSecodaTargetLineageEndNode;
|
|
60027
|
+
};
|
|
60028
|
+
export declare type GraphStoreBatchSecodaTargetLineageStartNode = {
|
|
60029
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageStartNode';
|
|
60030
|
+
id: Scalars['ID']['output'];
|
|
60031
|
+
};
|
|
59432
60032
|
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
|
|
59433
60033
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection';
|
|
59434
60034
|
edges: Array<Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEdge>>;
|
|
@@ -64634,6 +65234,9 @@ export declare type GraphStoreIncidentLinkedJswIssueSortInput = {
|
|
|
64634
65234
|
export declare type GraphStoreInferredProjectLinksEntitySortInput = {
|
|
64635
65235
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
64636
65236
|
};
|
|
65237
|
+
export declare type GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput = {
|
|
65238
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65239
|
+
};
|
|
64637
65240
|
export declare type GraphStoreIntFilterInput = {
|
|
64638
65241
|
greaterThan?: InputMaybe<Scalars['Int']['input']>;
|
|
64639
65242
|
greaterThanOrEqual?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -65870,6 +66473,15 @@ export declare type GraphStoreRiskHasProjectSortInput = {
|
|
|
65870
66473
|
export declare type GraphStoreScorecardHasAtlasGoalSortInput = {
|
|
65871
66474
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65872
66475
|
};
|
|
66476
|
+
export declare type GraphStoreSecodaDownstreamLineageSortInput = {
|
|
66477
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66478
|
+
};
|
|
66479
|
+
export declare type GraphStoreSecodaSourceLineageSortInput = {
|
|
66480
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66481
|
+
};
|
|
66482
|
+
export declare type GraphStoreSecodaTargetLineageSortInput = {
|
|
66483
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66484
|
+
};
|
|
65873
66485
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput = {
|
|
65874
66486
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65875
66487
|
};
|
|
@@ -66966,6 +67578,34 @@ export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommen
|
|
|
66966
67578
|
};
|
|
66967
67579
|
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
66968
67580
|
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityUnion = DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
|
|
67581
|
+
export declare type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagConnection = HasPageInfo & {
|
|
67582
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagConnection';
|
|
67583
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagEdge>>>;
|
|
67584
|
+
pageInfo: PageInfo;
|
|
67585
|
+
};
|
|
67586
|
+
export declare type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagEdge = {
|
|
67587
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagEdge';
|
|
67588
|
+
createdAt: Scalars['DateTime']['output'];
|
|
67589
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
67590
|
+
id: Scalars['ID']['output'];
|
|
67591
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
67592
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagUnion>;
|
|
67593
|
+
};
|
|
67594
|
+
export declare type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection = HasPageInfo & {
|
|
67595
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection';
|
|
67596
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge>>>;
|
|
67597
|
+
pageInfo: PageInfo;
|
|
67598
|
+
};
|
|
67599
|
+
export declare type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge = {
|
|
67600
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge';
|
|
67601
|
+
createdAt: Scalars['DateTime']['output'];
|
|
67602
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
67603
|
+
id: Scalars['ID']['output'];
|
|
67604
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
67605
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseUnion>;
|
|
67606
|
+
};
|
|
67607
|
+
export declare type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
67608
|
+
export declare type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagUnion = TownsquareTag;
|
|
66969
67609
|
export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection = HasPageInfo & {
|
|
66970
67610
|
__typename?: 'GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection';
|
|
66971
67611
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingEdge>>>;
|
|
@@ -67246,6 +67886,20 @@ export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInver
|
|
|
67246
67886
|
};
|
|
67247
67887
|
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
67248
67888
|
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusUnion = ExternalTestStatus;
|
|
67889
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection = HasPageInfo & {
|
|
67890
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection';
|
|
67891
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseEdge>>>;
|
|
67892
|
+
pageInfo: PageInfo;
|
|
67893
|
+
};
|
|
67894
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseEdge = {
|
|
67895
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseEdge';
|
|
67896
|
+
createdAt: Scalars['DateTime']['output'];
|
|
67897
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
67898
|
+
id: Scalars['ID']['output'];
|
|
67899
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
67900
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion>;
|
|
67901
|
+
};
|
|
67902
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
67249
67903
|
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection = HasPageInfo & {
|
|
67250
67904
|
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection';
|
|
67251
67905
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactEdge>>>;
|
|
@@ -69546,6 +70200,20 @@ export declare type GraphStoreSimplifiedInferredProjectLinksEntityEdge = {
|
|
|
69546
70200
|
node?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityUnion>;
|
|
69547
70201
|
};
|
|
69548
70202
|
export declare type GraphStoreSimplifiedInferredProjectLinksEntityUnion = JiraIssue | JiraProject;
|
|
70203
|
+
export declare type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
|
|
70204
|
+
__typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection';
|
|
70205
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge>>>;
|
|
70206
|
+
pageInfo: PageInfo;
|
|
70207
|
+
};
|
|
70208
|
+
export declare type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge = {
|
|
70209
|
+
__typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge';
|
|
70210
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70211
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70212
|
+
id: Scalars['ID']['output'];
|
|
70213
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70214
|
+
node?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion>;
|
|
70215
|
+
};
|
|
70216
|
+
export declare type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = JiraProject;
|
|
69549
70217
|
export declare type GraphStoreSimplifiedIssueAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
69550
70218
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchConnection';
|
|
69551
70219
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBranchEdge>>>;
|
|
@@ -72187,7 +72855,7 @@ export declare type GraphStoreSimplifiedProjectLinksToEntityInverseEdge = {
|
|
|
72187
72855
|
node?: Maybe<GraphStoreSimplifiedProjectLinksToEntityInverseUnion>;
|
|
72188
72856
|
};
|
|
72189
72857
|
export declare type GraphStoreSimplifiedProjectLinksToEntityInverseUnion = TownsquareProject;
|
|
72190
|
-
export declare type GraphStoreSimplifiedProjectLinksToEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomSpace | LoomVideo;
|
|
72858
|
+
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
72859
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceConnection = HasPageInfo & {
|
|
72192
72860
|
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceConnection';
|
|
72193
72861
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceEdge>>>;
|
|
@@ -78425,6 +79093,8 @@ export declare type GraphStoreV2 = {
|
|
|
78425
79093
|
atlassianProjectHasAtlassianProjectUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianProjectHasAtlassianProjectUpdateConnection>;
|
|
78426
79094
|
atlassianProjectHasAtlassianProjectUpdateInverse?: Maybe<GraphStoreV2SimplifiedAtlassianProjectHasAtlassianProjectUpdateInverseConnection>;
|
|
78427
79095
|
atlassianProjectLinksAtlassianProject?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectConnection>;
|
|
79096
|
+
atlassianProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityConnection>;
|
|
79097
|
+
atlassianProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseConnection>;
|
|
78428
79098
|
atlassianTeamAssignedJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection>;
|
|
78429
79099
|
atlassianTeamAssignedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemInverseConnection>;
|
|
78430
79100
|
atlassianTeamContributesToAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalConnection>;
|
|
@@ -78459,6 +79129,7 @@ export declare type GraphStoreV2 = {
|
|
|
78459
79129
|
atlassianUserAuthoritativelyLinkedExternalUserInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserAuthoritativelyLinkedExternalUserInverseConnection>;
|
|
78460
79130
|
atlassianUserCanViewConfluenceSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceConnection>;
|
|
78461
79131
|
atlassianUserCanViewConfluenceSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInverseConnection>;
|
|
79132
|
+
atlassianUserCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection>;
|
|
78462
79133
|
atlassianUserContributedToConfluenceBlogpost?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection>;
|
|
78463
79134
|
atlassianUserContributedToConfluenceBlogpostInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostInverseConnection>;
|
|
78464
79135
|
atlassianUserContributedToConfluenceDatabase?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceDatabaseConnection>;
|
|
@@ -78535,6 +79206,8 @@ export declare type GraphStoreV2 = {
|
|
|
78535
79206
|
atlassianUserFavoritedFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedFocusFocusAreaInverseConnection>;
|
|
78536
79207
|
atlassianUserFollowsAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianGoalConnection>;
|
|
78537
79208
|
atlassianUserFollowsAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianGoalInverseConnection>;
|
|
79209
|
+
atlassianUserFollowsAtlassianHomeTag?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagConnection>;
|
|
79210
|
+
atlassianUserFollowsAtlassianHomeTagInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection>;
|
|
78538
79211
|
atlassianUserFollowsAtlassianProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianProjectConnection>;
|
|
78539
79212
|
atlassianUserFollowsAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianProjectInverseConnection>;
|
|
78540
79213
|
atlassianUserHasConfluenceMeetingNotesFolder?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasConfluenceMeetingNotesFolderConnection>;
|
|
@@ -78547,7 +79220,6 @@ export declare type GraphStoreV2 = {
|
|
|
78547
79220
|
atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
78548
79221
|
atlassianUserIsInAtlassianTeam?: Maybe<GraphStoreV2SimplifiedAtlassianUserIsInAtlassianTeamConnection>;
|
|
78549
79222
|
atlassianUserIsInAtlassianTeamInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserIsInAtlassianTeamInverseConnection>;
|
|
78550
|
-
atlassianUserIsInInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserIsInInferredProjectInverseConnection>;
|
|
78551
79223
|
atlassianUserLaunchedJiraRelease?: Maybe<GraphStoreV2SimplifiedAtlassianUserLaunchedJiraReleaseConnection>;
|
|
78552
79224
|
atlassianUserLaunchedJiraReleaseInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserLaunchedJiraReleaseInverseConnection>;
|
|
78553
79225
|
atlassianUserLikedConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserLikedConfluencePageConnection>;
|
|
@@ -78584,6 +79256,7 @@ export declare type GraphStoreV2 = {
|
|
|
78584
79256
|
atlassianUserOwnsFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaInverseConnection>;
|
|
78585
79257
|
atlassianUserOwnsFocusStrategicPlan?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanConnection>;
|
|
78586
79258
|
atlassianUserOwnsFocusStrategicPlanInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseConnection>;
|
|
79259
|
+
atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
|
|
78587
79260
|
atlassianUserReactedToJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection>;
|
|
78588
79261
|
atlassianUserReactedToJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentInverseConnection>;
|
|
78589
79262
|
atlassianUserReactedToLoomVideo?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToLoomVideoConnection>;
|
|
@@ -78955,6 +79628,7 @@ export declare type GraphStoreV2 = {
|
|
|
78955
79628
|
focusStrategicPlanScenarioInvestmentHasInvestmentEntity?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityConnection>;
|
|
78956
79629
|
focusStrategicPlanScenarioInvestmentHasInvestmentEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityInverseConnection>;
|
|
78957
79630
|
inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
|
|
79631
|
+
inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
78958
79632
|
jiraEpicTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection>;
|
|
78959
79633
|
jiraEpicTracksAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectInverseConnection>;
|
|
78960
79634
|
jiraSpaceExplicitlyLinksExternalRepository?: Maybe<GraphStoreV2SimplifiedJiraSpaceExplicitlyLinksExternalRepositoryConnection>;
|
|
@@ -79059,8 +79733,8 @@ export declare type GraphStoreV2 = {
|
|
|
79059
79733
|
jiraWorkItemHasJiraPriorityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraPriorityInverseConnection>;
|
|
79060
79734
|
jiraWorkItemHasJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentConnection>;
|
|
79061
79735
|
jiraWorkItemHasJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseConnection>;
|
|
79062
|
-
|
|
79063
|
-
|
|
79736
|
+
jiraWorkItemLinksAssetsObject?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection>;
|
|
79737
|
+
jiraWorkItemLinksAssetsObjectInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseConnection>;
|
|
79064
79738
|
jiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection>;
|
|
79065
79739
|
jiraWorkItemLinksConfluenceWhiteboardInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardInverseConnection>;
|
|
79066
79740
|
jiraWorkItemLinksExternalBranch?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalBranchConnection>;
|
|
@@ -79304,6 +79978,20 @@ export declare type GraphStoreV2AtlassianProjectLinksAtlassianProjectArgs = {
|
|
|
79304
79978
|
id: Scalars['ID']['input'];
|
|
79305
79979
|
sort?: InputMaybe<GraphStoreV2AtlassianProjectLinksAtlassianProjectSortInput>;
|
|
79306
79980
|
};
|
|
79981
|
+
export declare type GraphStoreV2AtlassianProjectLinksEntityArgs = {
|
|
79982
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
79983
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
79984
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79985
|
+
id: Scalars['ID']['input'];
|
|
79986
|
+
sort?: InputMaybe<GraphStoreV2AtlassianProjectLinksEntitySortInput>;
|
|
79987
|
+
};
|
|
79988
|
+
export declare type GraphStoreV2AtlassianProjectLinksEntityInverseArgs = {
|
|
79989
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
79990
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
79991
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79992
|
+
id: Scalars['ID']['input'];
|
|
79993
|
+
sort?: InputMaybe<GraphStoreV2AtlassianProjectLinksEntitySortInput>;
|
|
79994
|
+
};
|
|
79307
79995
|
export declare type GraphStoreV2AtlassianTeamAssignedJiraWorkItemArgs = {
|
|
79308
79996
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
79309
79997
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -79544,6 +80232,13 @@ export declare type GraphStoreV2AtlassianUserCanViewConfluenceSpaceInverseArgs =
|
|
|
79544
80232
|
id: Scalars['ID']['input'];
|
|
79545
80233
|
sort?: InputMaybe<GraphStoreV2AtlassianUserCanViewConfluenceSpaceSortInput>;
|
|
79546
80234
|
};
|
|
80235
|
+
export declare type GraphStoreV2AtlassianUserCollaboratesOnInferredProjectInverseArgs = {
|
|
80236
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80237
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80238
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80239
|
+
id: Scalars['ID']['input'];
|
|
80240
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserCollaboratesOnInferredProjectSortInput>;
|
|
80241
|
+
};
|
|
79547
80242
|
export declare type GraphStoreV2AtlassianUserContributedToConfluenceBlogpostArgs = {
|
|
79548
80243
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
79549
80244
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -80078,6 +80773,20 @@ export declare type GraphStoreV2AtlassianUserFollowsAtlassianGoalInverseArgs = {
|
|
|
80078
80773
|
id: Scalars['ID']['input'];
|
|
80079
80774
|
sort?: InputMaybe<GraphStoreV2AtlassianUserFollowsAtlassianGoalSortInput>;
|
|
80080
80775
|
};
|
|
80776
|
+
export declare type GraphStoreV2AtlassianUserFollowsAtlassianHomeTagArgs = {
|
|
80777
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80778
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80779
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80780
|
+
id: Scalars['ID']['input'];
|
|
80781
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
80782
|
+
};
|
|
80783
|
+
export declare type GraphStoreV2AtlassianUserFollowsAtlassianHomeTagInverseArgs = {
|
|
80784
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80785
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80786
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80787
|
+
id: Scalars['ID']['input'];
|
|
80788
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
80789
|
+
};
|
|
80081
80790
|
export declare type GraphStoreV2AtlassianUserFollowsAtlassianProjectArgs = {
|
|
80082
80791
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80083
80792
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -80162,13 +80871,6 @@ export declare type GraphStoreV2AtlassianUserIsInAtlassianTeamInverseArgs = {
|
|
|
80162
80871
|
id: Scalars['ID']['input'];
|
|
80163
80872
|
sort?: InputMaybe<GraphStoreV2AtlassianUserIsInAtlassianTeamSortInput>;
|
|
80164
80873
|
};
|
|
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
80874
|
export declare type GraphStoreV2AtlassianUserLaunchedJiraReleaseArgs = {
|
|
80173
80875
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80174
80876
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -80425,6 +81127,13 @@ export declare type GraphStoreV2AtlassianUserOwnsFocusStrategicPlanInverseArgs =
|
|
|
80425
81127
|
id: Scalars['ID']['input'];
|
|
80426
81128
|
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsFocusStrategicPlanSortInput>;
|
|
80427
81129
|
};
|
|
81130
|
+
export declare type GraphStoreV2AtlassianUserOwnsInferredProjectInverseArgs = {
|
|
81131
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81132
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81133
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81134
|
+
id: Scalars['ID']['input'];
|
|
81135
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsInferredProjectSortInput>;
|
|
81136
|
+
};
|
|
80428
81137
|
export declare type GraphStoreV2AtlassianUserReactedToJiraWorkItemCommentArgs = {
|
|
80429
81138
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80430
81139
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -83029,6 +83738,13 @@ export declare type GraphStoreV2InferredProjectLinksEntityArgs = {
|
|
|
83029
83738
|
id: Scalars['ID']['input'];
|
|
83030
83739
|
sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
|
|
83031
83740
|
};
|
|
83741
|
+
export declare type GraphStoreV2InferredTeamCollaboratesOnInferredProjectInverseArgs = {
|
|
83742
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
83743
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83744
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83745
|
+
id: Scalars['ID']['input'];
|
|
83746
|
+
sort?: InputMaybe<GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput>;
|
|
83747
|
+
};
|
|
83032
83748
|
export declare type GraphStoreV2JiraEpicTracksAtlassianProjectArgs = {
|
|
83033
83749
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
83034
83750
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -83789,19 +84505,19 @@ export declare type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentInverseArgs =
|
|
|
83789
84505
|
id: Scalars['ID']['input'];
|
|
83790
84506
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput>;
|
|
83791
84507
|
};
|
|
83792
|
-
export declare type
|
|
84508
|
+
export declare type GraphStoreV2JiraWorkItemLinksAssetsObjectArgs = {
|
|
83793
84509
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
83794
84510
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83795
84511
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83796
84512
|
id: Scalars['ID']['input'];
|
|
83797
|
-
sort?: InputMaybe<
|
|
84513
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksAssetsObjectSortInput>;
|
|
83798
84514
|
};
|
|
83799
|
-
export declare type
|
|
84515
|
+
export declare type GraphStoreV2JiraWorkItemLinksAssetsObjectInverseArgs = {
|
|
83800
84516
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
83801
84517
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83802
84518
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83803
84519
|
id: Scalars['ID']['input'];
|
|
83804
|
-
sort?: InputMaybe<
|
|
84520
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksAssetsObjectSortInput>;
|
|
83805
84521
|
};
|
|
83806
84522
|
export declare type GraphStoreV2JiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
83807
84523
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -84322,6 +85038,9 @@ export declare type GraphStoreV2AtlassianProjectHasAtlassianProjectUpdateSortInp
|
|
|
84322
85038
|
export declare type GraphStoreV2AtlassianProjectLinksAtlassianProjectSortInput = {
|
|
84323
85039
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84324
85040
|
};
|
|
85041
|
+
export declare type GraphStoreV2AtlassianProjectLinksEntitySortInput = {
|
|
85042
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
85043
|
+
};
|
|
84325
85044
|
export declare type GraphStoreV2AtlassianTeamAssignedJiraWorkItemSortInput = {
|
|
84326
85045
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84327
85046
|
};
|
|
@@ -84401,6 +85120,9 @@ export declare type GraphStoreV2AtlassianUserAuthoritativelyLinkedExternalUserSo
|
|
|
84401
85120
|
export declare type GraphStoreV2AtlassianUserCanViewConfluenceSpaceSortInput = {
|
|
84402
85121
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84403
85122
|
};
|
|
85123
|
+
export declare type GraphStoreV2AtlassianUserCollaboratesOnInferredProjectSortInput = {
|
|
85124
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
85125
|
+
};
|
|
84404
85126
|
export declare type GraphStoreV2AtlassianUserContributedToConfluenceBlogpostSortInput = {
|
|
84405
85127
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84406
85128
|
};
|
|
@@ -84568,6 +85290,9 @@ export declare type GraphStoreV2AtlassianUserFavoritedFocusFocusAreaSortInput =
|
|
|
84568
85290
|
export declare type GraphStoreV2AtlassianUserFollowsAtlassianGoalSortInput = {
|
|
84569
85291
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84570
85292
|
};
|
|
85293
|
+
export declare type GraphStoreV2AtlassianUserFollowsAtlassianHomeTagSortInput = {
|
|
85294
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
85295
|
+
};
|
|
84571
85296
|
export declare type GraphStoreV2AtlassianUserFollowsAtlassianProjectSortInput = {
|
|
84572
85297
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84573
85298
|
};
|
|
@@ -84592,9 +85317,6 @@ export declare type GraphStoreV2AtlassianUserInvitedToLoomMeetingSortInput = {
|
|
|
84592
85317
|
export declare type GraphStoreV2AtlassianUserIsInAtlassianTeamSortInput = {
|
|
84593
85318
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84594
85319
|
};
|
|
84595
|
-
export declare type GraphStoreV2AtlassianUserIsInInferredProjectSortInput = {
|
|
84596
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84597
|
-
};
|
|
84598
85320
|
export declare type GraphStoreV2AtlassianUserLaunchedJiraReleaseSortInput = {
|
|
84599
85321
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84600
85322
|
};
|
|
@@ -84683,6 +85405,9 @@ export declare type GraphStoreV2AtlassianUserOwnsFocusFocusAreaSortInput = {
|
|
|
84683
85405
|
export declare type GraphStoreV2AtlassianUserOwnsFocusStrategicPlanSortInput = {
|
|
84684
85406
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84685
85407
|
};
|
|
85408
|
+
export declare type GraphStoreV2AtlassianUserOwnsInferredProjectSortInput = {
|
|
85409
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
85410
|
+
};
|
|
84686
85411
|
export declare type GraphStoreV2AtlassianUserReactedToJiraWorkItemCommentSortInput = {
|
|
84687
85412
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84688
85413
|
};
|
|
@@ -86268,6 +86993,9 @@ export declare type GraphStoreV2FocusStrategicPlanScenarioInvestmentHasInvestmen
|
|
|
86268
86993
|
export declare type GraphStoreV2InferredProjectLinksEntitySortInput = {
|
|
86269
86994
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86270
86995
|
};
|
|
86996
|
+
export declare type GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput = {
|
|
86997
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86998
|
+
};
|
|
86271
86999
|
export declare type GraphStoreV2JiraEpicTracksAtlassianProjectSortInput = {
|
|
86272
87000
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86273
87001
|
};
|
|
@@ -87229,7 +87957,7 @@ export declare type GraphStoreV2JiraWorkItemHasJiraPrioritySortInput = {
|
|
|
87229
87957
|
export declare type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput = {
|
|
87230
87958
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87231
87959
|
};
|
|
87232
|
-
export declare type
|
|
87960
|
+
export declare type GraphStoreV2JiraWorkItemLinksAssetsObjectSortInput = {
|
|
87233
87961
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87234
87962
|
};
|
|
87235
87963
|
export declare type GraphStoreV2JiraWorkItemLinksConfluenceWhiteboardConditionalFilterInput = {
|
|
@@ -88113,6 +88841,34 @@ export declare type GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectE
|
|
|
88113
88841
|
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectUnion>;
|
|
88114
88842
|
};
|
|
88115
88843
|
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectUnion = TownsquareProject;
|
|
88844
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityConnection = HasPageInfo & {
|
|
88845
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianProjectLinksEntityConnection';
|
|
88846
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityEdge>>>;
|
|
88847
|
+
pageInfo: PageInfo;
|
|
88848
|
+
};
|
|
88849
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityEdge = {
|
|
88850
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianProjectLinksEntityEdge';
|
|
88851
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88852
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88853
|
+
id: Scalars['ID']['output'];
|
|
88854
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88855
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityUnion>;
|
|
88856
|
+
};
|
|
88857
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseConnection = HasPageInfo & {
|
|
88858
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseConnection';
|
|
88859
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseEdge>>>;
|
|
88860
|
+
pageInfo: PageInfo;
|
|
88861
|
+
};
|
|
88862
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseEdge = {
|
|
88863
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseEdge';
|
|
88864
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88865
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88866
|
+
id: Scalars['ID']['output'];
|
|
88867
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88868
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseUnion>;
|
|
88869
|
+
};
|
|
88870
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseUnion = TownsquareProject;
|
|
88871
|
+
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
88872
|
export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection = HasPageInfo & {
|
|
88117
88873
|
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection';
|
|
88118
88874
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemEdge>>>;
|
|
@@ -88601,6 +89357,20 @@ export declare type GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInv
|
|
|
88601
89357
|
};
|
|
88602
89358
|
export declare type GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
88603
89359
|
export declare type GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceUnion = ConfluenceSpace;
|
|
89360
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
|
|
89361
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection';
|
|
89362
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseEdge>>>;
|
|
89363
|
+
pageInfo: PageInfo;
|
|
89364
|
+
};
|
|
89365
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseEdge = {
|
|
89366
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseEdge';
|
|
89367
|
+
createdAt: Scalars['DateTime']['output'];
|
|
89368
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
89369
|
+
id: Scalars['ID']['output'];
|
|
89370
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
89371
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseUnion>;
|
|
89372
|
+
};
|
|
89373
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
88604
89374
|
export declare type GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection = HasPageInfo & {
|
|
88605
89375
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection';
|
|
88606
89376
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostEdge>>>;
|
|
@@ -89681,6 +90451,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianGoalInver
|
|
|
89681
90451
|
};
|
|
89682
90452
|
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
89683
90453
|
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianGoalUnion = TownsquareGoal;
|
|
90454
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagConnection = HasPageInfo & {
|
|
90455
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagConnection';
|
|
90456
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagEdge>>>;
|
|
90457
|
+
pageInfo: PageInfo;
|
|
90458
|
+
};
|
|
90459
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagEdge = {
|
|
90460
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagEdge';
|
|
90461
|
+
createdAt: Scalars['DateTime']['output'];
|
|
90462
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
90463
|
+
id: Scalars['ID']['output'];
|
|
90464
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
90465
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagUnion>;
|
|
90466
|
+
};
|
|
90467
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection = HasPageInfo & {
|
|
90468
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection';
|
|
90469
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge>>>;
|
|
90470
|
+
pageInfo: PageInfo;
|
|
90471
|
+
};
|
|
90472
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge = {
|
|
90473
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge';
|
|
90474
|
+
createdAt: Scalars['DateTime']['output'];
|
|
90475
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
90476
|
+
id: Scalars['ID']['output'];
|
|
90477
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
90478
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseUnion>;
|
|
90479
|
+
};
|
|
90480
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
90481
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagUnion = TownsquareTag;
|
|
89684
90482
|
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianProjectConnection = HasPageInfo & {
|
|
89685
90483
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianProjectConnection';
|
|
89686
90484
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianProjectEdge>>>;
|
|
@@ -89857,20 +90655,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserIsInAtlassianTeamInverseE
|
|
|
89857
90655
|
};
|
|
89858
90656
|
export declare type GraphStoreV2SimplifiedAtlassianUserIsInAtlassianTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
89859
90657
|
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
90658
|
export declare type GraphStoreV2SimplifiedAtlassianUserLaunchedJiraReleaseConnection = HasPageInfo & {
|
|
89875
90659
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserLaunchedJiraReleaseConnection';
|
|
89876
90660
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserLaunchedJiraReleaseEdge>>>;
|
|
@@ -90383,6 +91167,20 @@ export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInv
|
|
|
90383
91167
|
};
|
|
90384
91168
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
90385
91169
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanUnion = SpfPlan;
|
|
91170
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection = HasPageInfo & {
|
|
91171
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection';
|
|
91172
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseEdge>>>;
|
|
91173
|
+
pageInfo: PageInfo;
|
|
91174
|
+
};
|
|
91175
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseEdge = {
|
|
91176
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseEdge';
|
|
91177
|
+
createdAt: Scalars['DateTime']['output'];
|
|
91178
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
91179
|
+
id: Scalars['ID']['output'];
|
|
91180
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
91181
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseUnion>;
|
|
91182
|
+
};
|
|
91183
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
90386
91184
|
export declare type GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection = HasPageInfo & {
|
|
90387
91185
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection';
|
|
90388
91186
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentEdge>>>;
|
|
@@ -95599,6 +96397,20 @@ export declare type GraphStoreV2SimplifiedInferredProjectLinksEntityEdge = {
|
|
|
95599
96397
|
node?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityUnion>;
|
|
95600
96398
|
};
|
|
95601
96399
|
export declare type GraphStoreV2SimplifiedInferredProjectLinksEntityUnion = JiraIssue | JiraProject;
|
|
96400
|
+
export declare type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
|
|
96401
|
+
__typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection';
|
|
96402
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge>>>;
|
|
96403
|
+
pageInfo: PageInfo;
|
|
96404
|
+
};
|
|
96405
|
+
export declare type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge = {
|
|
96406
|
+
__typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge';
|
|
96407
|
+
createdAt: Scalars['DateTime']['output'];
|
|
96408
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
96409
|
+
id: Scalars['ID']['output'];
|
|
96410
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
96411
|
+
node?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion>;
|
|
96412
|
+
};
|
|
96413
|
+
export declare type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = JiraProject;
|
|
95602
96414
|
export declare type GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection = HasPageInfo & {
|
|
95603
96415
|
__typename?: 'GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection';
|
|
95604
96416
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectEdge>>>;
|
|
@@ -95962,7 +96774,7 @@ export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseEdge = {
|
|
|
95962
96774
|
node?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseUnion>;
|
|
95963
96775
|
};
|
|
95964
96776
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseUnion = TownsquareProject;
|
|
95965
|
-
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomSpace | LoomVideo;
|
|
96777
|
+
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
96778
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchConnection = HasPageInfo & HasTotal & {
|
|
95967
96779
|
__typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchConnection';
|
|
95968
96780
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchEdge>>>;
|
|
@@ -97207,34 +98019,34 @@ export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInve
|
|
|
97207
98019
|
};
|
|
97208
98020
|
export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseUnion = JiraIssue;
|
|
97209
98021
|
export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
97210
|
-
export declare type
|
|
97211
|
-
__typename?: '
|
|
97212
|
-
edges?: Maybe<Array<Maybe<
|
|
98022
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection = HasPageInfo & {
|
|
98023
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection';
|
|
98024
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectEdge>>>;
|
|
97213
98025
|
pageInfo: PageInfo;
|
|
97214
98026
|
};
|
|
97215
|
-
export declare type
|
|
97216
|
-
__typename?: '
|
|
98027
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectEdge = {
|
|
98028
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectEdge';
|
|
97217
98029
|
createdAt: Scalars['DateTime']['output'];
|
|
97218
98030
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
97219
98031
|
id: Scalars['ID']['output'];
|
|
97220
98032
|
lastUpdated: Scalars['DateTime']['output'];
|
|
97221
|
-
node?: Maybe<
|
|
98033
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectUnion>;
|
|
97222
98034
|
};
|
|
97223
|
-
export declare type
|
|
97224
|
-
__typename?: '
|
|
97225
|
-
edges?: Maybe<Array<Maybe<
|
|
98035
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseConnection = HasPageInfo & {
|
|
98036
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseConnection';
|
|
98037
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseEdge>>>;
|
|
97226
98038
|
pageInfo: PageInfo;
|
|
97227
98039
|
};
|
|
97228
|
-
export declare type
|
|
97229
|
-
__typename?: '
|
|
98040
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseEdge = {
|
|
98041
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseEdge';
|
|
97230
98042
|
createdAt: Scalars['DateTime']['output'];
|
|
97231
98043
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
97232
98044
|
id: Scalars['ID']['output'];
|
|
97233
98045
|
lastUpdated: Scalars['DateTime']['output'];
|
|
97234
|
-
node?: Maybe<
|
|
98046
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseUnion>;
|
|
97235
98047
|
};
|
|
97236
|
-
export declare type
|
|
97237
|
-
export declare type
|
|
98048
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseUnion = JiraIssue;
|
|
98049
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectUnion = AssetsObject;
|
|
97238
98050
|
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection = HasPageInfo & HasTotal & {
|
|
97239
98051
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection';
|
|
97240
98052
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardEdge>>>;
|
|
@@ -98502,14 +99314,15 @@ export declare type GravityViewConfig = {
|
|
|
98502
99314
|
columnSize?: Maybe<GravityViewColumnSize>;
|
|
98503
99315
|
fieldRollups?: Maybe<Array<GravityFieldRollup>>;
|
|
98504
99316
|
fields: Array<Scalars['ID']['output']>;
|
|
98505
|
-
filter
|
|
99317
|
+
filter?: Maybe<Array<GravityViewFilter>>;
|
|
98506
99318
|
groupBy?: Maybe<Scalars['ID']['output']>;
|
|
98507
99319
|
groupsFilter?: Maybe<Array<GravityViewFilter>>;
|
|
98508
99320
|
hideEmptyColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
98509
99321
|
hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
|
|
98510
99322
|
layoutType?: Maybe<GravityViewLayoutType>;
|
|
98511
|
-
sort
|
|
99323
|
+
sort?: Maybe<Array<GravityViewSort>>;
|
|
98512
99324
|
sortMode?: Maybe<GravityViewSortMode>;
|
|
99325
|
+
tableColumnSizes?: Maybe<Array<GravityViewTableColumnSize>>;
|
|
98513
99326
|
verticalGroupBy?: Maybe<Scalars['ID']['output']>;
|
|
98514
99327
|
verticalGroupsFilter?: Maybe<Array<GravityViewFilter>>;
|
|
98515
99328
|
};
|
|
@@ -98569,6 +99382,11 @@ export declare enum GravityViewSortMode {
|
|
|
98569
99382
|
ProjectRank = "PROJECT_RANK",
|
|
98570
99383
|
ViewRank = "VIEW_RANK"
|
|
98571
99384
|
}
|
|
99385
|
+
export declare type GravityViewTableColumnSize = {
|
|
99386
|
+
__typename?: 'GravityViewTableColumnSize';
|
|
99387
|
+
field: Scalars['ID']['output'];
|
|
99388
|
+
size: Scalars['Int']['output'];
|
|
99389
|
+
};
|
|
98572
99390
|
export declare type GravityViewTemplate = {
|
|
98573
99391
|
__typename?: 'GravityViewTemplate';
|
|
98574
99392
|
colorScheme?: Maybe<GravityViewTemplateColorScheme>;
|
|
@@ -101933,6 +102751,9 @@ export declare type IncomingLinksCount = {
|
|
|
101933
102751
|
__typename?: 'IncomingLinksCount';
|
|
101934
102752
|
count?: Maybe<Scalars['Int']['output']>;
|
|
101935
102753
|
};
|
|
102754
|
+
export declare type IndexHintInputType = {
|
|
102755
|
+
hints?: InputMaybe<Array<InputMaybe<PreferredIndexInputType>>>;
|
|
102756
|
+
};
|
|
101936
102757
|
export declare type IndividualInlineTaskNotification = {
|
|
101937
102758
|
__typename?: 'IndividualInlineTaskNotification';
|
|
101938
102759
|
notificationAction?: Maybe<NotificationAction>;
|
|
@@ -102963,6 +103784,19 @@ export declare type JiraActivitySortOrderPayload = Payload & {
|
|
|
102963
103784
|
errors?: Maybe<Array<MutationError>>;
|
|
102964
103785
|
success: Scalars['Boolean']['output'];
|
|
102965
103786
|
};
|
|
103787
|
+
export declare type JiraActor = {
|
|
103788
|
+
user?: Maybe<User>;
|
|
103789
|
+
};
|
|
103790
|
+
export declare type JiraActorConnection = HasPageInfo & {
|
|
103791
|
+
__typename?: 'JiraActorConnection';
|
|
103792
|
+
edges?: Maybe<Array<Maybe<JiraActorEdge>>>;
|
|
103793
|
+
pageInfo: PageInfo;
|
|
103794
|
+
};
|
|
103795
|
+
export declare type JiraActorEdge = {
|
|
103796
|
+
__typename?: 'JiraActorEdge';
|
|
103797
|
+
cursor: Scalars['String']['output'];
|
|
103798
|
+
node?: Maybe<JiraActor>;
|
|
103799
|
+
};
|
|
102966
103800
|
export declare type JiraAddAttachmentInput = {
|
|
102967
103801
|
fileId: Scalars['String']['input'];
|
|
102968
103802
|
issue: Scalars['ID']['input'];
|
|
@@ -103212,6 +104046,13 @@ export declare type JiraAgentAssignableInput = {
|
|
|
103212
104046
|
agentAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
103213
104047
|
agentId?: InputMaybe<Scalars['ID']['input']>;
|
|
103214
104048
|
};
|
|
104049
|
+
export declare type JiraAgenticUser = JiraActor & {
|
|
104050
|
+
__typename?: 'JiraAgenticUser';
|
|
104051
|
+
createdByUser?: Maybe<User>;
|
|
104052
|
+
isAssignable?: Maybe<Scalars['Boolean']['output']>;
|
|
104053
|
+
isFavorite?: Maybe<Scalars['Boolean']['output']>;
|
|
104054
|
+
user?: Maybe<User>;
|
|
104055
|
+
};
|
|
103215
104056
|
export declare type JiraAggregatedDate = JiraDatePickerField | JiraDateTimePickerField;
|
|
103216
104057
|
export declare type JiraAggregatedStatusField = JiraIssueField & JiraListRowField & Node & {
|
|
103217
104058
|
__typename?: 'JiraAggregatedStatusField';
|
|
@@ -104766,9 +105607,13 @@ export declare type JiraBacklogViewCardFieldInput = {
|
|
|
104766
105607
|
id: Scalars['ID']['input'];
|
|
104767
105608
|
};
|
|
104768
105609
|
export declare type JiraBacklogViewCardList = {
|
|
105610
|
+
estimationDetails?: Maybe<JiraBacklogViewEstimationDetails>;
|
|
104769
105611
|
id: Scalars['ID']['output'];
|
|
104770
105612
|
issues?: Maybe<JiraIssueConnection>;
|
|
104771
105613
|
};
|
|
105614
|
+
export declare type JiraBacklogViewCardListEstimationDetailsArgs = {
|
|
105615
|
+
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
105616
|
+
};
|
|
104772
105617
|
export declare type JiraBacklogViewCardListIssuesArgs = {
|
|
104773
105618
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
104774
105619
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -104799,9 +105644,14 @@ export declare type JiraBacklogViewColumn = {
|
|
|
104799
105644
|
export declare type JiraBacklogViewColumnCardList = JiraBacklogViewCardList & Node & {
|
|
104800
105645
|
__typename?: 'JiraBacklogViewColumnCardList';
|
|
104801
105646
|
column?: Maybe<JiraBacklogViewColumn>;
|
|
105647
|
+
columnConstraintIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
105648
|
+
estimationDetails?: Maybe<JiraBacklogViewEstimationDetails>;
|
|
104802
105649
|
id: Scalars['ID']['output'];
|
|
104803
105650
|
issues?: Maybe<JiraIssueConnection>;
|
|
104804
105651
|
};
|
|
105652
|
+
export declare type JiraBacklogViewColumnCardListEstimationDetailsArgs = {
|
|
105653
|
+
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
105654
|
+
};
|
|
104805
105655
|
export declare type JiraBacklogViewColumnCardListIssuesArgs = {
|
|
104806
105656
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
104807
105657
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -104809,6 +105659,13 @@ export declare type JiraBacklogViewColumnCardListIssuesArgs = {
|
|
|
104809
105659
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
104810
105660
|
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
104811
105661
|
};
|
|
105662
|
+
export declare type JiraBacklogViewEstimationDetails = {
|
|
105663
|
+
__typename?: 'JiraBacklogViewEstimationDetails';
|
|
105664
|
+
doneEstimate?: Maybe<Scalars['String']['output']>;
|
|
105665
|
+
inProgressEstimate?: Maybe<Scalars['String']['output']>;
|
|
105666
|
+
toDoEstimate?: Maybe<Scalars['String']['output']>;
|
|
105667
|
+
totalEstimate?: Maybe<Scalars['String']['output']>;
|
|
105668
|
+
};
|
|
104812
105669
|
export declare type JiraBacklogViewGlobalConfig = {
|
|
104813
105670
|
__typename?: 'JiraBacklogViewGlobalConfig';
|
|
104814
105671
|
parentHierarchyLevel?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
@@ -104831,10 +105688,14 @@ export declare type JiraBacklogViewSettings = {
|
|
|
104831
105688
|
};
|
|
104832
105689
|
export declare type JiraBacklogViewSprintCardList = JiraBacklogViewCardList & Node & {
|
|
104833
105690
|
__typename?: 'JiraBacklogViewSprintCardList';
|
|
105691
|
+
estimationDetails?: Maybe<JiraBacklogViewEstimationDetails>;
|
|
104834
105692
|
id: Scalars['ID']['output'];
|
|
104835
105693
|
issues?: Maybe<JiraIssueConnection>;
|
|
104836
105694
|
sprint?: Maybe<JiraSprint>;
|
|
104837
105695
|
};
|
|
105696
|
+
export declare type JiraBacklogViewSprintCardListEstimationDetailsArgs = {
|
|
105697
|
+
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
105698
|
+
};
|
|
104838
105699
|
export declare type JiraBacklogViewSprintCardListIssuesArgs = {
|
|
104839
105700
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
104840
105701
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -105021,6 +105882,7 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
105021
105882
|
isEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
105022
105883
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
105023
105884
|
isWorkflowsMigrationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
105885
|
+
issuePositions?: Maybe<Array<JiraBoardViewIssuePositions>>;
|
|
105024
105886
|
layout?: Maybe<JiraBoardViewLayout>;
|
|
105025
105887
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
105026
105888
|
sprints?: Maybe<JiraSprintConnection>;
|
|
@@ -105058,6 +105920,12 @@ export declare type JiraBoardViewIsEmptyArgs = {
|
|
|
105058
105920
|
export declare type JiraBoardViewIsViewConfigModifiedArgs = {
|
|
105059
105921
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
105060
105922
|
};
|
|
105923
|
+
export declare type JiraBoardViewIssuePositionsArgs = {
|
|
105924
|
+
columns: Array<Scalars['ID']['input']>;
|
|
105925
|
+
issues: Array<Scalars['ID']['input']>;
|
|
105926
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
105927
|
+
swimlanes?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
105928
|
+
};
|
|
105061
105929
|
export declare type JiraBoardViewLayoutArgs = {
|
|
105062
105930
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
105063
105931
|
};
|
|
@@ -105151,6 +106019,11 @@ export declare type JiraBoardViewCellIssuePosition = {
|
|
|
105151
106019
|
issue?: Maybe<JiraIssue>;
|
|
105152
106020
|
previousIssue?: Maybe<JiraIssue>;
|
|
105153
106021
|
};
|
|
106022
|
+
export declare type JiraBoardViewCellIssuePositionMapping = {
|
|
106023
|
+
__typename?: 'JiraBoardViewCellIssuePositionMapping';
|
|
106024
|
+
cell?: Maybe<JiraBoardViewCell>;
|
|
106025
|
+
positions?: Maybe<Array<JiraBoardViewCellIssuePosition>>;
|
|
106026
|
+
};
|
|
105154
106027
|
export declare type JiraBoardViewColumn = {
|
|
105155
106028
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
105156
106029
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105206,12 +106079,17 @@ export declare type JiraBoardViewFieldSwimlaneUser = {
|
|
|
105206
106079
|
__typename?: 'JiraBoardViewFieldSwimlaneUser';
|
|
105207
106080
|
user?: Maybe<User>;
|
|
105208
106081
|
};
|
|
105209
|
-
export declare type JiraBoardViewFieldSwimlaneValue = JiraBoardViewFieldSwimlaneUser | JiraOption | JiraPriority | JiraTownsquareProject;
|
|
106082
|
+
export declare type JiraBoardViewFieldSwimlaneValue = JiraBoardViewFieldSwimlaneUser | JiraIssue | JiraOption | JiraPriority | JiraTownsquareProject;
|
|
105210
106083
|
export declare type JiraBoardViewInput = {
|
|
105211
106084
|
jiraBoardViewQueryInput?: InputMaybe<JiraBoardViewQueryInput>;
|
|
105212
106085
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
105213
106086
|
viewQueryInput?: InputMaybe<JiraViewQueryInput>;
|
|
105214
106087
|
};
|
|
106088
|
+
export declare type JiraBoardViewIssuePositions = {
|
|
106089
|
+
__typename?: 'JiraBoardViewIssuePositions';
|
|
106090
|
+
issuesToInsert?: Maybe<Array<JiraBoardViewCellIssuePositionMapping>>;
|
|
106091
|
+
swimlanesToInsert?: Maybe<Array<JiraBoardViewSwimlanePosition>>;
|
|
106092
|
+
};
|
|
105215
106093
|
export declare type JiraBoardViewLayout = JiraBoardViewColumnLayout | JiraBoardViewSwimlaneLayout;
|
|
105216
106094
|
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & Node & {
|
|
105217
106095
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
@@ -105339,6 +106217,11 @@ export declare type JiraBoardViewSwimlaneLayoutSwimlanesArgs = {
|
|
|
105339
106217
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
105340
106218
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
105341
106219
|
};
|
|
106220
|
+
export declare type JiraBoardViewSwimlanePosition = {
|
|
106221
|
+
__typename?: 'JiraBoardViewSwimlanePosition';
|
|
106222
|
+
previousSwimlane?: Maybe<JiraBoardViewSwimlane>;
|
|
106223
|
+
swimlane?: Maybe<JiraBoardViewSwimlane>;
|
|
106224
|
+
};
|
|
105342
106225
|
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
105343
106226
|
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
|
|
105344
106227
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107933,11 +108816,15 @@ export declare type JiraDateFieldOperationInput = {
|
|
|
107933
108816
|
date?: InputMaybe<Scalars['Date']['input']>;
|
|
107934
108817
|
operation: JiraSingleValueFieldOperations;
|
|
107935
108818
|
};
|
|
107936
|
-
export declare type JiraDateFieldPayload = Payload & {
|
|
108819
|
+
export declare type JiraDateFieldPayload = JiraSupportsUpdatedDependentFields & Payload & {
|
|
107937
108820
|
__typename?: 'JiraDateFieldPayload';
|
|
107938
108821
|
errors?: Maybe<Array<MutationError>>;
|
|
107939
108822
|
field?: Maybe<JiraDatePickerField>;
|
|
107940
108823
|
success: Scalars['Boolean']['output'];
|
|
108824
|
+
updatedDependentFields?: Maybe<JiraIssueFieldConnection>;
|
|
108825
|
+
};
|
|
108826
|
+
export declare type JiraDateFieldPayloadUpdatedDependentFieldsArgs = {
|
|
108827
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107941
108828
|
};
|
|
107942
108829
|
export declare type JiraDateFormulaField = JiraDateLikeField & JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
107943
108830
|
__typename?: 'JiraDateFormulaField';
|
|
@@ -107997,11 +108884,15 @@ export declare type JiraDateTimeFieldOperationInput = {
|
|
|
107997
108884
|
datetime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
107998
108885
|
operation: JiraSingleValueFieldOperations;
|
|
107999
108886
|
};
|
|
108000
|
-
export declare type JiraDateTimeFieldPayload = Payload & {
|
|
108887
|
+
export declare type JiraDateTimeFieldPayload = JiraSupportsUpdatedDependentFields & Payload & {
|
|
108001
108888
|
__typename?: 'JiraDateTimeFieldPayload';
|
|
108002
108889
|
errors?: Maybe<Array<MutationError>>;
|
|
108003
108890
|
field?: Maybe<JiraDateTimePickerField>;
|
|
108004
108891
|
success: Scalars['Boolean']['output'];
|
|
108892
|
+
updatedDependentFields?: Maybe<JiraIssueFieldConnection>;
|
|
108893
|
+
};
|
|
108894
|
+
export declare type JiraDateTimeFieldPayloadUpdatedDependentFieldsArgs = {
|
|
108895
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108005
108896
|
};
|
|
108006
108897
|
export declare type JiraDateTimeInput = {
|
|
108007
108898
|
formattedDateTime: Scalars['String']['input'];
|
|
@@ -110925,6 +111816,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
110925
111816
|
incidentActionItems?: Maybe<GraphIncidentHasActionItemRelationshipConnection>;
|
|
110926
111817
|
incidentLinkedJswIssues?: Maybe<GraphIncidentLinkedJswIssueRelationshipConnection>;
|
|
110927
111818
|
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
111819
|
+
isFlagged?: Maybe<Scalars['Boolean']['output']>;
|
|
110928
111820
|
isIncidentManagementEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
110929
111821
|
isRemoteIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
110930
111822
|
isResolved?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -110993,6 +111885,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
110993
111885
|
statusCategory?: Maybe<JiraStatusCategory>;
|
|
110994
111886
|
statusField?: Maybe<JiraStatusField>;
|
|
110995
111887
|
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
111888
|
+
storyPoints?: Maybe<Scalars['Float']['output']>;
|
|
110996
111889
|
storyPointsField?: Maybe<JiraNumberField>;
|
|
110997
111890
|
suggestFieldValues?: Maybe<JiraSuggestedIssueFieldValuesResult>;
|
|
110998
111891
|
summarisedBuilds?: Maybe<DevOpsSummarisedBuilds>;
|
|
@@ -113535,6 +114428,18 @@ export declare type JiraJirtEventPayload = {
|
|
|
113535
114428
|
resource: Scalars['String']['output'];
|
|
113536
114429
|
type: Scalars['String']['output'];
|
|
113537
114430
|
};
|
|
114431
|
+
export declare type JiraJourney = Node & {
|
|
114432
|
+
__typename?: 'JiraJourney';
|
|
114433
|
+
id: Scalars['ID']['output'];
|
|
114434
|
+
journeyConfigurationName?: Maybe<Scalars['String']['output']>;
|
|
114435
|
+
steps?: Maybe<JiraJourneyStepConnection>;
|
|
114436
|
+
};
|
|
114437
|
+
export declare type JiraJourneyStepsArgs = {
|
|
114438
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
114439
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
114440
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
114441
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
114442
|
+
};
|
|
113538
114443
|
export declare enum JiraJourneyActiveState {
|
|
113539
114444
|
Active = "ACTIVE",
|
|
113540
114445
|
Inactive = "INACTIVE",
|
|
@@ -113589,6 +114494,13 @@ export declare enum JiraJourneyConfigurationType {
|
|
|
113589
114494
|
CustomizableJourney = "CUSTOMIZABLE_JOURNEY",
|
|
113590
114495
|
JourneyType = "JOURNEY_TYPE"
|
|
113591
114496
|
}
|
|
114497
|
+
export declare type JiraJourneyConnection = {
|
|
114498
|
+
__typename?: 'JiraJourneyConnection';
|
|
114499
|
+
edges?: Maybe<Array<Maybe<JiraJourneyEdge>>>;
|
|
114500
|
+
errors?: Maybe<Array<QueryError>>;
|
|
114501
|
+
pageInfo: PageInfo;
|
|
114502
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
114503
|
+
};
|
|
113592
114504
|
export declare type JiraJourneyCustomizationSettings = {
|
|
113593
114505
|
__typename?: 'JiraJourneyCustomizationSettings';
|
|
113594
114506
|
agentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -113598,6 +114510,11 @@ export declare type JiraJourneyCustomizationSettingsInput = {
|
|
|
113598
114510
|
agentId: Scalars['ID']['input'];
|
|
113599
114511
|
timeout: Scalars['Int']['input'];
|
|
113600
114512
|
};
|
|
114513
|
+
export declare type JiraJourneyEdge = {
|
|
114514
|
+
__typename?: 'JiraJourneyEdge';
|
|
114515
|
+
cursor: Scalars['String']['output'];
|
|
114516
|
+
node?: Maybe<JiraJourney>;
|
|
114517
|
+
};
|
|
113601
114518
|
export declare type JiraJourneyItem = JiraJourneyStatusDependency | JiraJourneyWorkItem;
|
|
113602
114519
|
export declare type JiraJourneyItemCommon = {
|
|
113603
114520
|
id: Scalars['ID']['output'];
|
|
@@ -113735,6 +114652,29 @@ export declare enum JiraJourneyStatusDependencyType {
|
|
|
113735
114652
|
Status = "STATUS",
|
|
113736
114653
|
StatusCategory = "STATUS_CATEGORY"
|
|
113737
114654
|
}
|
|
114655
|
+
export declare type JiraJourneyStep = {
|
|
114656
|
+
id: Scalars['ID']['output'];
|
|
114657
|
+
journeyItemName?: Maybe<Scalars['String']['output']>;
|
|
114658
|
+
status?: Maybe<JiraJourneyStepStatus>;
|
|
114659
|
+
};
|
|
114660
|
+
export declare type JiraJourneyStepConnection = {
|
|
114661
|
+
__typename?: 'JiraJourneyStepConnection';
|
|
114662
|
+
edges?: Maybe<Array<Maybe<JiraJourneyStepEdge>>>;
|
|
114663
|
+
errors?: Maybe<Array<QueryError>>;
|
|
114664
|
+
pageInfo: PageInfo;
|
|
114665
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
114666
|
+
};
|
|
114667
|
+
export declare type JiraJourneyStepEdge = {
|
|
114668
|
+
__typename?: 'JiraJourneyStepEdge';
|
|
114669
|
+
cursor: Scalars['String']['output'];
|
|
114670
|
+
node?: Maybe<JiraJourneyStep>;
|
|
114671
|
+
};
|
|
114672
|
+
export declare enum JiraJourneyStepStatus {
|
|
114673
|
+
StepExecuted = "STEP_EXECUTED",
|
|
114674
|
+
StepExpired = "STEP_EXPIRED",
|
|
114675
|
+
StepPending = "STEP_PENDING",
|
|
114676
|
+
StepSkipped = "STEP_SKIPPED"
|
|
114677
|
+
}
|
|
113738
114678
|
export declare type JiraJourneyTrigger = {
|
|
113739
114679
|
__typename?: 'JiraJourneyTrigger';
|
|
113740
114680
|
type: JiraJourneyTriggerType;
|
|
@@ -113813,6 +114753,14 @@ export declare type JiraJourneyWorkItemFieldValueKeyValuePairInput = {
|
|
|
113813
114753
|
key: Scalars['String']['input'];
|
|
113814
114754
|
value: Array<InputMaybe<Scalars['String']['input']>>;
|
|
113815
114755
|
};
|
|
114756
|
+
export declare type JiraJourneyWorkItemStep = JiraJourneyStep & Node & {
|
|
114757
|
+
__typename?: 'JiraJourneyWorkItemStep';
|
|
114758
|
+
id: Scalars['ID']['output'];
|
|
114759
|
+
journeyItemName?: Maybe<Scalars['String']['output']>;
|
|
114760
|
+
status?: Maybe<JiraJourneyStepStatus>;
|
|
114761
|
+
workItem?: Maybe<JiraIssue>;
|
|
114762
|
+
workItemId?: Maybe<Scalars['ID']['output']>;
|
|
114763
|
+
};
|
|
113816
114764
|
export declare type JiraJourneyWorkdayIntegrationTriggerConfiguration = {
|
|
113817
114765
|
__typename?: 'JiraJourneyWorkdayIntegrationTriggerConfiguration';
|
|
113818
114766
|
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -116999,6 +117947,55 @@ export declare type JiraOnboardingStepInput = {
|
|
|
116999
117947
|
export declare enum JiraOnboardingTargetType {
|
|
117000
117948
|
TeamType = "TEAM_TYPE"
|
|
117001
117949
|
}
|
|
117950
|
+
export declare type JiraOpenBetaFeature = JiraOpenBetaFeatureNode & {
|
|
117951
|
+
__typename?: 'JiraOpenBetaFeature';
|
|
117952
|
+
_type?: Maybe<Scalars['String']['output']>;
|
|
117953
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
117954
|
+
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
117955
|
+
featureKey?: Maybe<Scalars['String']['output']>;
|
|
117956
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
117957
|
+
version?: Maybe<Scalars['Long']['output']>;
|
|
117958
|
+
};
|
|
117959
|
+
export declare type JiraOpenBetaFeatureConnection = {
|
|
117960
|
+
__typename?: 'JiraOpenBetaFeatureConnection';
|
|
117961
|
+
edges?: Maybe<Array<Maybe<JiraOpenBetaFeatureEdge>>>;
|
|
117962
|
+
nodes?: Maybe<Array<Maybe<JiraOpenBetaFeature>>>;
|
|
117963
|
+
pageInfo?: Maybe<PageInfo>;
|
|
117964
|
+
};
|
|
117965
|
+
export declare type JiraOpenBetaFeatureCreateInput = {
|
|
117966
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
117967
|
+
expireTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
117968
|
+
featureKey?: InputMaybe<Scalars['String']['input']>;
|
|
117969
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
117970
|
+
shardingContext: Scalars['String']['input'];
|
|
117971
|
+
};
|
|
117972
|
+
export declare type JiraOpenBetaFeatureCreatePayload = Payload & {
|
|
117973
|
+
__typename?: 'JiraOpenBetaFeatureCreatePayload';
|
|
117974
|
+
createdEntity?: Maybe<JiraOpenBetaFeature>;
|
|
117975
|
+
errors?: Maybe<Array<MutationError>>;
|
|
117976
|
+
success: Scalars['Boolean']['output'];
|
|
117977
|
+
};
|
|
117978
|
+
export declare type JiraOpenBetaFeatureEdge = {
|
|
117979
|
+
__typename?: 'JiraOpenBetaFeatureEdge';
|
|
117980
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
117981
|
+
node?: Maybe<JiraOpenBetaFeature>;
|
|
117982
|
+
};
|
|
117983
|
+
export declare type JiraOpenBetaFeatureNode = {
|
|
117984
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
117985
|
+
};
|
|
117986
|
+
export declare type JiraOpenBetaFeatureUpdateInput = {
|
|
117987
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
117988
|
+
expireTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
117989
|
+
featureKey?: InputMaybe<Scalars['String']['input']>;
|
|
117990
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
117991
|
+
shardingContext: Scalars['String']['input'];
|
|
117992
|
+
};
|
|
117993
|
+
export declare type JiraOpenBetaFeatureUpdatePayload = Payload & {
|
|
117994
|
+
__typename?: 'JiraOpenBetaFeatureUpdatePayload';
|
|
117995
|
+
errors?: Maybe<Array<MutationError>>;
|
|
117996
|
+
success: Scalars['Boolean']['output'];
|
|
117997
|
+
updatedEntity?: Maybe<JiraOpenBetaFeature>;
|
|
117998
|
+
};
|
|
117002
117999
|
export declare type JiraOpsgenieTeam = Node & {
|
|
117003
118000
|
__typename?: 'JiraOpsgenieTeam';
|
|
117004
118001
|
id: Scalars['ID']['output'];
|
|
@@ -117488,6 +118485,7 @@ export declare type JiraPlan = Node & {
|
|
|
117488
118485
|
__typename?: 'JiraPlan';
|
|
117489
118486
|
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
117490
118487
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
118488
|
+
hasPlanInvitePermission?: Maybe<Scalars['Boolean']['output']>;
|
|
117491
118489
|
hasReleaseUnsavedChanges?: Maybe<Scalars['Boolean']['output']>;
|
|
117492
118490
|
id: Scalars['ID']['output'];
|
|
117493
118491
|
isAutoSchedulerEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -117591,6 +118589,7 @@ export declare type JiraPlaybook = Node & {
|
|
|
117591
118589
|
__typename?: 'JiraPlaybook';
|
|
117592
118590
|
filters?: Maybe<Array<JiraPlaybookIssueFilter>>;
|
|
117593
118591
|
id: Scalars['ID']['output'];
|
|
118592
|
+
isAiCreated?: Maybe<Scalars['Boolean']['output']>;
|
|
117594
118593
|
jql?: Maybe<Scalars['String']['output']>;
|
|
117595
118594
|
labels?: Maybe<Array<JiraPlaybookLabel>>;
|
|
117596
118595
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -119151,6 +120150,7 @@ export declare type JiraQuery = {
|
|
|
119151
120150
|
isLinkingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
119152
120151
|
isNaturalLanguageSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
119153
120152
|
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
120153
|
+
isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
119154
120154
|
isSubtasksEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
119155
120155
|
isVotingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
119156
120156
|
issue?: Maybe<JiraIssue>;
|
|
@@ -119199,6 +120199,8 @@ export declare type JiraQuery = {
|
|
|
119199
120199
|
jiraProjectsMappedToHelpCenter?: Maybe<JiraProjectConnection>;
|
|
119200
120200
|
jiraServiceManagementRequestTypeCategoriesByProject?: Maybe<JiraServiceManagementRequestTypeCategoryConnection>;
|
|
119201
120201
|
jiraServiceManagementSlaIssue?: Maybe<JiraServiceManagementSlaIssueResult>;
|
|
120202
|
+
jiraWorkItemJourneys?: Maybe<JiraJourneyConnection>;
|
|
120203
|
+
jira_recommendedAgents?: Maybe<JiraActorConnection>;
|
|
119202
120204
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
119203
120205
|
jpdGlobalViewFields?: Maybe<JiraPolarisGlobalViewFields>;
|
|
119204
120206
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
@@ -119752,6 +120754,9 @@ export declare type JiraQueryIsNaturalLanguageSearchEnabledArgs = {
|
|
|
119752
120754
|
export declare type JiraQueryIsRovoEnabledArgs = {
|
|
119753
120755
|
cloudId: Scalars['ID']['input'];
|
|
119754
120756
|
};
|
|
120757
|
+
export declare type JiraQueryIsRovoLlmEnabledArgs = {
|
|
120758
|
+
cloudId: Scalars['ID']['input'];
|
|
120759
|
+
};
|
|
119755
120760
|
export declare type JiraQueryIsSubtasksEnabledArgs = {
|
|
119756
120761
|
cloudId: Scalars['ID']['input'];
|
|
119757
120762
|
};
|
|
@@ -119995,6 +121000,24 @@ export declare type JiraQueryJiraServiceManagementSlaIssueArgs = {
|
|
|
119995
121000
|
cloudId: Scalars['ID']['input'];
|
|
119996
121001
|
issueKey: Scalars['String']['input'];
|
|
119997
121002
|
};
|
|
121003
|
+
export declare type JiraQueryJiraWorkItemJourneysArgs = {
|
|
121004
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
121005
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
121006
|
+
cloudId: Scalars['ID']['input'];
|
|
121007
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
121008
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
121009
|
+
workItemKey: Scalars['String']['input'];
|
|
121010
|
+
};
|
|
121011
|
+
export declare type JiraQueryJira_RecommendedAgentsArgs = {
|
|
121012
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
121013
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
121014
|
+
cloudId: Scalars['ID']['input'];
|
|
121015
|
+
contextAri: Scalars['ID']['input'];
|
|
121016
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
121017
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
121018
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
121019
|
+
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
121020
|
+
};
|
|
119998
121021
|
export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
|
|
119999
121022
|
cloudId: Scalars['ID']['input'];
|
|
120000
121023
|
};
|
|
@@ -127876,6 +128899,9 @@ export declare type JpdViewsServiceAxisConfigInput = {
|
|
|
127876
128899
|
fieldOptions: Array<JpdViewsServiceOptionInput>;
|
|
127877
128900
|
reversed: Scalars['Boolean']['input'];
|
|
127878
128901
|
};
|
|
128902
|
+
export declare type JpdViewsServiceCloneViewIntoGlobalInput = {
|
|
128903
|
+
id: Scalars['ID']['input'];
|
|
128904
|
+
};
|
|
127879
128905
|
export declare enum JpdViewsServiceColorStyle {
|
|
127880
128906
|
Background = "BACKGROUND",
|
|
127881
128907
|
Highlight = "HIGHLIGHT"
|
|
@@ -128153,6 +129179,10 @@ export declare type JpdViewsServiceRerankGlobalViewPayload = Payload & {
|
|
|
128153
129179
|
errors?: Maybe<Array<MutationError>>;
|
|
128154
129180
|
success: Scalars['Boolean']['output'];
|
|
128155
129181
|
};
|
|
129182
|
+
export declare type JpdViewsServiceSetAssocToNewSpacesInput = {
|
|
129183
|
+
assocToNewSpaces: Scalars['Boolean']['input'];
|
|
129184
|
+
id: Scalars['ID']['input'];
|
|
129185
|
+
};
|
|
128156
129186
|
export declare type JpdViewsServiceSort = {
|
|
128157
129187
|
__typename?: 'JpdViewsServiceSort';
|
|
128158
129188
|
field: JpdViewsServiceField;
|
|
@@ -128336,6 +129366,11 @@ export declare enum JsmChannelsConnectionType {
|
|
|
128336
129366
|
Okta = "OKTA"
|
|
128337
129367
|
}
|
|
128338
129368
|
export declare type JsmChannelsConversationsByContainerAriResult = JsmChannelsOrchestratorConversationsConnection | QueryError;
|
|
129369
|
+
export declare type JsmChannelsCustomPlanGraphAttribute = {
|
|
129370
|
+
__typename?: 'JsmChannelsCustomPlanGraphAttribute';
|
|
129371
|
+
key: Scalars['String']['output'];
|
|
129372
|
+
value: Scalars['String']['output'];
|
|
129373
|
+
};
|
|
128339
129374
|
export declare type JsmChannelsCustomPlanNodeAttribute = {
|
|
128340
129375
|
__typename?: 'JsmChannelsCustomPlanNodeAttribute';
|
|
128341
129376
|
key: Scalars['String']['output'];
|
|
@@ -128525,6 +129560,7 @@ export declare type JsmChannelsResolutionPlanActionPayload = Payload & {
|
|
|
128525
129560
|
export declare type JsmChannelsResolutionPlanGraph = {
|
|
128526
129561
|
__typename?: 'JsmChannelsResolutionPlanGraph';
|
|
128527
129562
|
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
129563
|
+
customPlanGraphAttributes?: Maybe<Array<JsmChannelsCustomPlanGraphAttribute>>;
|
|
128528
129564
|
graph?: Maybe<Array<Array<Scalars['ID']['output']>>>;
|
|
128529
129565
|
isLoading: Scalars['Boolean']['output'];
|
|
128530
129566
|
nodes: Array<JsmChannelsPlanNodeMapEntry>;
|
|
@@ -129270,12 +130306,14 @@ export declare type JsmConversationSettings = {
|
|
|
129270
130306
|
__typename?: 'JsmConversationSettings';
|
|
129271
130307
|
assignedTeam?: Maybe<TeamV2>;
|
|
129272
130308
|
defaultRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
130309
|
+
issueLabel?: Maybe<Scalars['String']['output']>;
|
|
129273
130310
|
projectAri?: Maybe<Scalars['String']['output']>;
|
|
129274
130311
|
slaList?: Maybe<Array<Maybe<JsmConversationSla>>>;
|
|
129275
130312
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
129276
130313
|
};
|
|
129277
130314
|
export declare type JsmConversationSettingsInput = {
|
|
129278
130315
|
defaultRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
130316
|
+
issueLabel?: InputMaybe<Scalars['String']['input']>;
|
|
129279
130317
|
projectAri?: InputMaybe<Scalars['String']['input']>;
|
|
129280
130318
|
slaList?: InputMaybe<Array<JsmConversationSlaInput>>;
|
|
129281
130319
|
teamId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -129773,6 +130811,7 @@ export declare type KitsuneFeedback = Node & {
|
|
|
129773
130811
|
snippets: KitsuneSnippetConnection;
|
|
129774
130812
|
source: KitsuneSource;
|
|
129775
130813
|
sourceCategory: KitsuneSourceCategory;
|
|
130814
|
+
spaceId: Scalars['ID']['output'];
|
|
129776
130815
|
summary?: Maybe<KitsuneSummary>;
|
|
129777
130816
|
title?: Maybe<Scalars['String']['output']>;
|
|
129778
130817
|
type: KitsuneFeedbackType;
|
|
@@ -129943,6 +130982,11 @@ export declare type KitsuneOrganizationEdge = KitsuneEdge & {
|
|
|
129943
130982
|
cursor: Scalars['String']['output'];
|
|
129944
130983
|
node?: Maybe<KitsuneOrganization>;
|
|
129945
130984
|
};
|
|
130985
|
+
export declare type KitsuneOrganizationNode = {
|
|
130986
|
+
__typename?: 'KitsuneOrganizationNode';
|
|
130987
|
+
organization?: Maybe<CustomerServiceCsmCustomer>;
|
|
130988
|
+
organizationId: Scalars['ID']['output'];
|
|
130989
|
+
};
|
|
129946
130990
|
export declare type KitsunePaginationInput = {
|
|
129947
130991
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129948
130992
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -131877,6 +132921,10 @@ export declare type LoomAcceptOrganizationInvitation = {
|
|
|
131877
132921
|
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
131878
132922
|
success: Scalars['String']['output'];
|
|
131879
132923
|
};
|
|
132924
|
+
export declare enum LoomCalendarIntegrationType {
|
|
132925
|
+
GoogleCalendar = "GOOGLE_CALENDAR",
|
|
132926
|
+
MicrosoftOutlook = "MICROSOFT_OUTLOOK"
|
|
132927
|
+
}
|
|
131880
132928
|
export declare type LoomComment = Node & {
|
|
131881
132929
|
__typename?: 'LoomComment';
|
|
131882
132930
|
content?: Maybe<Scalars['String']['output']>;
|
|
@@ -131890,6 +132938,29 @@ export declare type LoomComment = Node & {
|
|
|
131890
132938
|
video?: Maybe<LoomVideo>;
|
|
131891
132939
|
videoId: Scalars['ID']['output'];
|
|
131892
132940
|
};
|
|
132941
|
+
export declare type LoomCommentConnection = {
|
|
132942
|
+
__typename?: 'LoomCommentConnection';
|
|
132943
|
+
edges?: Maybe<Array<Maybe<LoomCommentEdge>>>;
|
|
132944
|
+
pageInfo?: Maybe<LoomPageInfo>;
|
|
132945
|
+
};
|
|
132946
|
+
export declare type LoomCommentEdge = {
|
|
132947
|
+
__typename?: 'LoomCommentEdge';
|
|
132948
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
132949
|
+
node?: Maybe<LoomComment>;
|
|
132950
|
+
};
|
|
132951
|
+
export declare type LoomConnectedCalendar = {
|
|
132952
|
+
__typename?: 'LoomConnectedCalendar';
|
|
132953
|
+
guid: Scalars['ID']['output'];
|
|
132954
|
+
integrationType: LoomCalendarIntegrationType;
|
|
132955
|
+
meetings?: Maybe<LoomMeetingConnection>;
|
|
132956
|
+
};
|
|
132957
|
+
export declare type LoomConnectedCalendarMeetingsArgs = {
|
|
132958
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132959
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132960
|
+
order?: InputMaybe<LoomSortDirection>;
|
|
132961
|
+
rangeEnd?: InputMaybe<Scalars['String']['input']>;
|
|
132962
|
+
rangeStart?: InputMaybe<Scalars['String']['input']>;
|
|
132963
|
+
};
|
|
131893
132964
|
export declare type LoomDeleteVideo = {
|
|
131894
132965
|
__typename?: 'LoomDeleteVideo';
|
|
131895
132966
|
failed?: Maybe<Array<Maybe<LoomDeleteVideoFailure>>>;
|
|
@@ -131923,6 +132994,8 @@ export declare type LoomMeeting = Node & {
|
|
|
131923
132994
|
external?: Maybe<Scalars['Boolean']['output']>;
|
|
131924
132995
|
externalCalendarEventId?: Maybe<Scalars['String']['output']>;
|
|
131925
132996
|
id: Scalars['ID']['output'];
|
|
132997
|
+
inviteeAris?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
132998
|
+
invitees?: Maybe<Array<Maybe<User>>>;
|
|
131926
132999
|
recorder?: Maybe<User>;
|
|
131927
133000
|
recorderId?: Maybe<Scalars['ID']['output']>;
|
|
131928
133001
|
recurrenceAri?: Maybe<Scalars['ID']['output']>;
|
|
@@ -131932,15 +133005,33 @@ export declare type LoomMeeting = Node & {
|
|
|
131932
133005
|
title: Scalars['String']['output'];
|
|
131933
133006
|
video?: Maybe<LoomVideo>;
|
|
131934
133007
|
};
|
|
133008
|
+
export declare type LoomMeetingConnection = {
|
|
133009
|
+
__typename?: 'LoomMeetingConnection';
|
|
133010
|
+
edges?: Maybe<Array<Maybe<LoomMeetingEdge>>>;
|
|
133011
|
+
pageInfo?: Maybe<LoomPageInfo>;
|
|
133012
|
+
};
|
|
133013
|
+
export declare type LoomMeetingEdge = {
|
|
133014
|
+
__typename?: 'LoomMeetingEdge';
|
|
133015
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
133016
|
+
node?: Maybe<LoomMeeting>;
|
|
133017
|
+
};
|
|
131935
133018
|
export declare type LoomMeetingRecurrence = Node & {
|
|
131936
133019
|
__typename?: 'LoomMeetingRecurrence';
|
|
131937
133020
|
id: Scalars['ID']['output'];
|
|
131938
133021
|
meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
133022
|
+
meetingsConnections?: Maybe<LoomMeetingConnection>;
|
|
131939
133023
|
};
|
|
131940
133024
|
export declare type LoomMeetingRecurrenceMeetingsArgs = {
|
|
131941
133025
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131942
133026
|
meetingIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
131943
133027
|
};
|
|
133028
|
+
export declare type LoomMeetingRecurrenceMeetingsConnectionsArgs = {
|
|
133029
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
133030
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133031
|
+
order?: InputMaybe<LoomSortDirection>;
|
|
133032
|
+
rangeEnd?: InputMaybe<Scalars['String']['input']>;
|
|
133033
|
+
rangeStart?: InputMaybe<Scalars['String']['input']>;
|
|
133034
|
+
};
|
|
131944
133035
|
export declare enum LoomMeetingSource {
|
|
131945
133036
|
GoogleCalendar = "GOOGLE_CALENDAR",
|
|
131946
133037
|
MicrosoftOutlook = "MICROSOFT_OUTLOOK",
|
|
@@ -131951,6 +133042,13 @@ export declare type LoomMeetings = {
|
|
|
131951
133042
|
recurring?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
131952
133043
|
single?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
131953
133044
|
};
|
|
133045
|
+
export declare type LoomPageInfo = {
|
|
133046
|
+
__typename?: 'LoomPageInfo';
|
|
133047
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
133048
|
+
hasNextPage?: Maybe<Scalars['Boolean']['output']>;
|
|
133049
|
+
hasPreviousPage?: Maybe<Scalars['Boolean']['output']>;
|
|
133050
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
133051
|
+
};
|
|
131954
133052
|
export declare type LoomPhrase = {
|
|
131955
133053
|
__typename?: 'LoomPhrase';
|
|
131956
133054
|
ranges?: Maybe<Array<LoomPhraseRange>>;
|
|
@@ -131974,6 +133072,10 @@ export declare type LoomSettings = {
|
|
|
131974
133072
|
meetingNotesAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
131975
133073
|
meetingNotesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131976
133074
|
};
|
|
133075
|
+
export declare enum LoomSortDirection {
|
|
133076
|
+
Asc = "ASC",
|
|
133077
|
+
Desc = "DESC"
|
|
133078
|
+
}
|
|
131977
133079
|
export declare type LoomSpace = Node & {
|
|
131978
133080
|
__typename?: 'LoomSpace';
|
|
131979
133081
|
id: Scalars['ID']['output'];
|
|
@@ -132117,6 +133219,7 @@ export declare type LoomVideo = Node & {
|
|
|
132117
133219
|
__typename?: 'LoomVideo';
|
|
132118
133220
|
collaborators?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
132119
133221
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
133222
|
+
comments?: Maybe<LoomCommentConnection>;
|
|
132120
133223
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
132121
133224
|
description?: Maybe<Scalars['String']['output']>;
|
|
132122
133225
|
id: Scalars['ID']['output'];
|
|
@@ -132137,6 +133240,10 @@ export declare type LoomVideo = Node & {
|
|
|
132137
133240
|
url: Scalars['String']['output'];
|
|
132138
133241
|
viewCounts?: Maybe<LoomVideoViewCounts>;
|
|
132139
133242
|
};
|
|
133243
|
+
export declare type LoomVideoCommentsArgs = {
|
|
133244
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
133245
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133246
|
+
};
|
|
132140
133247
|
export declare type LoomVideoDefaultThumbnailsSources = {
|
|
132141
133248
|
__typename?: 'LoomVideoDefaultThumbnailsSources';
|
|
132142
133249
|
default?: Maybe<Scalars['String']['output']>;
|
|
@@ -132152,6 +133259,16 @@ export declare type LoomVideoViewCounts = {
|
|
|
132152
133259
|
distinct?: Maybe<Scalars['Int']['output']>;
|
|
132153
133260
|
total?: Maybe<Scalars['Int']['output']>;
|
|
132154
133261
|
};
|
|
133262
|
+
export declare type LoomWorkspace = Node & {
|
|
133263
|
+
__typename?: 'LoomWorkspace';
|
|
133264
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
133265
|
+
guid: Scalars['ID']['output'];
|
|
133266
|
+
hidden: Scalars['Boolean']['output'];
|
|
133267
|
+
id: Scalars['ID']['output'];
|
|
133268
|
+
memberCount: Scalars['Int']['output'];
|
|
133269
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
133270
|
+
type: Scalars['String']['output'];
|
|
133271
|
+
};
|
|
132155
133272
|
export declare type LpCertSort = {
|
|
132156
133273
|
sortDirection?: InputMaybe<SortDirection>;
|
|
132157
133274
|
sortField?: InputMaybe<LpCertSortField>;
|
|
@@ -135115,6 +136232,30 @@ export declare type MarketplaceStoreGetUserPreferencesResponse = {
|
|
|
135115
136232
|
preferences: MarketplaceStoreUserPreferences;
|
|
135116
136233
|
version: Scalars['Int']['output'];
|
|
135117
136234
|
};
|
|
136235
|
+
export declare type MarketplaceStoreGridBreakpointConfig = {
|
|
136236
|
+
__typename?: 'MarketplaceStoreGridBreakpointConfig';
|
|
136237
|
+
cells: Array<Array<MarketplaceStoreGridCell>>;
|
|
136238
|
+
columns?: Maybe<Scalars['Int']['output']>;
|
|
136239
|
+
};
|
|
136240
|
+
export declare type MarketplaceStoreGridCell = {
|
|
136241
|
+
__typename?: 'MarketplaceStoreGridCell';
|
|
136242
|
+
columnSpan?: Maybe<Scalars['Int']['output']>;
|
|
136243
|
+
content: MarketplaceStoreGridCellContent;
|
|
136244
|
+
rowSpan?: Maybe<Scalars['Int']['output']>;
|
|
136245
|
+
};
|
|
136246
|
+
export declare type MarketplaceStoreGridCellContent = MarketplaceStoreGridCellSlot | MarketplaceStoreMarketingSlot;
|
|
136247
|
+
export declare type MarketplaceStoreGridCellSlot = {
|
|
136248
|
+
__typename?: 'MarketplaceStoreGridCellSlot';
|
|
136249
|
+
theme?: Maybe<Scalars['String']['output']>;
|
|
136250
|
+
variant?: Maybe<Scalars['String']['output']>;
|
|
136251
|
+
widgetKind: MarketplaceStoreLayoutSlotWidgetKind;
|
|
136252
|
+
};
|
|
136253
|
+
export declare type MarketplaceStoreGridWidget = {
|
|
136254
|
+
__typename?: 'MarketplaceStoreGridWidget';
|
|
136255
|
+
lg: MarketplaceStoreGridBreakpointConfig;
|
|
136256
|
+
md: MarketplaceStoreGridBreakpointConfig;
|
|
136257
|
+
sm: MarketplaceStoreGridBreakpointConfig;
|
|
136258
|
+
};
|
|
135118
136259
|
export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
|
|
135119
136260
|
__typename?: 'MarketplaceStoreHomePageFeaturedSection';
|
|
135120
136261
|
description: Scalars['String']['output'];
|
|
@@ -135135,6 +136276,15 @@ export declare type MarketplaceStoreHomePageHighlightedSection = MarketplaceStor
|
|
|
135135
136276
|
export declare enum MarketplaceStoreHomePageHighlightedSectionVariation {
|
|
135136
136277
|
Prominent = "PROMINENT"
|
|
135137
136278
|
}
|
|
136279
|
+
export declare type MarketplaceStoreHomePageRecommendationsSection = MarketplaceStoreHomePageSection & {
|
|
136280
|
+
__typename?: 'MarketplaceStoreHomePageRecommendationsSection';
|
|
136281
|
+
description: Scalars['String']['output'];
|
|
136282
|
+
id: Scalars['ID']['output'];
|
|
136283
|
+
recommendationResultsCount: Scalars['Int']['output'];
|
|
136284
|
+
screenSpecificProperties: MarketplaceStoreHomePageSectionScreenSpecificProperties;
|
|
136285
|
+
searchMetadata: MarketplaceStoreSearchMetadata;
|
|
136286
|
+
title: Scalars['String']['output'];
|
|
136287
|
+
};
|
|
135138
136288
|
export declare type MarketplaceStoreHomePageRegularSection = MarketplaceStoreHomePageSection & {
|
|
135139
136289
|
__typename?: 'MarketplaceStoreHomePageRegularSection';
|
|
135140
136290
|
algoliaQueryMetadata: MarketplaceStoreAlgoliaQueryMetadata;
|
|
@@ -135255,9 +136405,10 @@ export declare type MarketplaceStoreLayoutRegularSection = MarketplaceStoreLayou
|
|
|
135255
136405
|
key: MarketplaceStoreLayoutSectionKeys;
|
|
135256
136406
|
navigationUrl?: Maybe<Scalars['String']['output']>;
|
|
135257
136407
|
objectsFetchCount?: Maybe<Scalars['Int']['output']>;
|
|
135258
|
-
screenSpecificProperties?: Maybe<MarketplaceStoreLayoutSectionScreenSpecificProperties>;
|
|
135259
136408
|
searchMetadata?: Maybe<MarketplaceStoreSearchMetadata>;
|
|
135260
136409
|
title: Scalars['String']['output'];
|
|
136410
|
+
type: MarketplaceStoreLayoutSectionType;
|
|
136411
|
+
widgets?: Maybe<Array<Maybe<MarketplaceStoreLayoutWidget>>>;
|
|
135261
136412
|
};
|
|
135262
136413
|
export declare type MarketplaceStoreLayoutSection = {
|
|
135263
136414
|
description: Scalars['String']['output'];
|
|
@@ -135265,22 +136416,19 @@ export declare type MarketplaceStoreLayoutSection = {
|
|
|
135265
136416
|
title: Scalars['String']['output'];
|
|
135266
136417
|
};
|
|
135267
136418
|
export declare enum MarketplaceStoreLayoutSectionKeys {
|
|
135268
|
-
BestSellers = "BEST_SELLERS",
|
|
135269
136419
|
PickupWhereYouLeft = "PICKUP_WHERE_YOU_LEFT",
|
|
135270
|
-
|
|
135271
|
-
|
|
136420
|
+
RecommendedForYou = "RECOMMENDED_FOR_YOU",
|
|
136421
|
+
TrustedPartners = "TRUSTED_PARTNERS"
|
|
135272
136422
|
}
|
|
135273
|
-
export declare
|
|
135274
|
-
|
|
135275
|
-
|
|
135276
|
-
|
|
135277
|
-
}
|
|
135278
|
-
export declare
|
|
135279
|
-
|
|
135280
|
-
|
|
135281
|
-
|
|
135282
|
-
sm: MarketplaceStoreLayoutSectionScreenConfig;
|
|
135283
|
-
};
|
|
136423
|
+
export declare enum MarketplaceStoreLayoutSectionType {
|
|
136424
|
+
Brand = "BRAND",
|
|
136425
|
+
Dark = "DARK",
|
|
136426
|
+
List = "LIST"
|
|
136427
|
+
}
|
|
136428
|
+
export declare enum MarketplaceStoreLayoutSlotWidgetKind {
|
|
136429
|
+
ObjectTile = "OBJECT_TILE"
|
|
136430
|
+
}
|
|
136431
|
+
export declare type MarketplaceStoreLayoutWidget = MarketplaceStoreGridWidget;
|
|
135284
136432
|
export declare type MarketplaceStoreLogDetails = {
|
|
135285
136433
|
__typename?: 'MarketplaceStoreLogDetails';
|
|
135286
136434
|
logEUDShareWithThirdParty?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -135322,6 +136470,18 @@ export declare type MarketplaceStoreLoggedInUserLinksManageDeveloperSpaceArgs =
|
|
|
135322
136470
|
developerId?: InputMaybe<Scalars['ID']['input']>;
|
|
135323
136471
|
vendorId: Scalars['ID']['input'];
|
|
135324
136472
|
};
|
|
136473
|
+
export declare type MarketplaceStoreMarketingAction = {
|
|
136474
|
+
__typename?: 'MarketplaceStoreMarketingAction';
|
|
136475
|
+
label: Scalars['String']['output'];
|
|
136476
|
+
url: Scalars['String']['output'];
|
|
136477
|
+
};
|
|
136478
|
+
export declare type MarketplaceStoreMarketingSlot = {
|
|
136479
|
+
__typename?: 'MarketplaceStoreMarketingSlot';
|
|
136480
|
+
actions?: Maybe<Array<Maybe<MarketplaceStoreMarketingAction>>>;
|
|
136481
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
136482
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
136483
|
+
title: Scalars['String']['output'];
|
|
136484
|
+
};
|
|
135325
136485
|
export declare type MarketplaceStoreMultiInstanceDetails = {
|
|
135326
136486
|
isMultiInstance: Scalars['Boolean']['output'];
|
|
135327
136487
|
multiInstanceEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
@@ -135601,6 +136761,12 @@ export declare type MarketplaceStoreProductListing = {
|
|
|
135601
136761
|
summary?: Maybe<Scalars['String']['output']>;
|
|
135602
136762
|
vendorId: Scalars['String']['output'];
|
|
135603
136763
|
};
|
|
136764
|
+
export declare type MarketplaceStoreProductListingError = {
|
|
136765
|
+
__typename?: 'MarketplaceStoreProductListingError';
|
|
136766
|
+
id: Scalars['ID']['output'];
|
|
136767
|
+
message: Scalars['String']['output'];
|
|
136768
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
136769
|
+
};
|
|
135604
136770
|
export declare type MarketplaceStoreProductListingHighlight = {
|
|
135605
136771
|
__typename?: 'MarketplaceStoreProductListingHighlight';
|
|
135606
136772
|
caption?: Maybe<Scalars['String']['output']>;
|
|
@@ -135619,6 +136785,7 @@ export declare type MarketplaceStoreProductListingImage = {
|
|
|
135619
136785
|
url?: Maybe<Scalars['String']['output']>;
|
|
135620
136786
|
width: Scalars['Int']['output'];
|
|
135621
136787
|
};
|
|
136788
|
+
export declare type MarketplaceStoreProductListingResponse = MarketplaceStoreProductListing | MarketplaceStoreProductListingError;
|
|
135622
136789
|
export declare type MarketplaceStoreProductListingScreenshot = {
|
|
135623
136790
|
__typename?: 'MarketplaceStoreProductListingScreenshot';
|
|
135624
136791
|
caption?: Maybe<Scalars['String']['output']>;
|
|
@@ -135675,6 +136842,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
135675
136842
|
eligibleOfferingsForApp: MarketplaceStoreEligibleAppOfferingsResponse;
|
|
135676
136843
|
geoip: MarketplaceStoreGeoIpResponse;
|
|
135677
136844
|
getAppMigration: MarketplaceStoreProductMigrationResponse;
|
|
136845
|
+
getProductListing: MarketplaceStoreProductListingResponse;
|
|
135678
136846
|
getProductMigration: MarketplaceStoreProductMigrationResponse;
|
|
135679
136847
|
homePage: MarketplaceStoreHomePageResponse;
|
|
135680
136848
|
hostStatus: MarketplaceStoreHostStatusResponse;
|
|
@@ -135754,6 +136922,9 @@ export declare type MarketplaceStoreQueryApiEligibleOfferingsForAppArgs = {
|
|
|
135754
136922
|
export declare type MarketplaceStoreQueryApiGetAppMigrationArgs = {
|
|
135755
136923
|
appKey: Scalars['String']['input'];
|
|
135756
136924
|
};
|
|
136925
|
+
export declare type MarketplaceStoreQueryApiGetProductListingArgs = {
|
|
136926
|
+
productId: Scalars['ID']['input'];
|
|
136927
|
+
};
|
|
135757
136928
|
export declare type MarketplaceStoreQueryApiGetProductMigrationArgs = {
|
|
135758
136929
|
productId: Scalars['ID']['input'];
|
|
135759
136930
|
};
|
|
@@ -136828,6 +137999,17 @@ export declare type MercuryCreateFiscalCalendarConfigurationPayload = Payload &
|
|
|
136828
137999
|
errors?: Maybe<Array<MutationError>>;
|
|
136829
138000
|
success: Scalars['Boolean']['output'];
|
|
136830
138001
|
};
|
|
138002
|
+
export declare type MercuryCreateFocusAreaBudgetInput = {
|
|
138003
|
+
amount: Scalars['String']['input'];
|
|
138004
|
+
fiscalYear: Scalars['Int']['input'];
|
|
138005
|
+
focusAreaId: Scalars['ID']['input'];
|
|
138006
|
+
};
|
|
138007
|
+
export declare type MercuryCreateFocusAreaBudgetPayload = Payload & {
|
|
138008
|
+
__typename?: 'MercuryCreateFocusAreaBudgetPayload';
|
|
138009
|
+
createdFocusAreaBudget?: Maybe<MercuryFocusAreaBudget>;
|
|
138010
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138011
|
+
success: Scalars['Boolean']['output'];
|
|
138012
|
+
};
|
|
136831
138013
|
export declare type MercuryCreateFocusAreaChange = MercuryChangeInterface & Node & {
|
|
136832
138014
|
__typename?: 'MercuryCreateFocusAreaChange';
|
|
136833
138015
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
@@ -137207,6 +138389,14 @@ export declare type MercuryDeleteCustomFieldDefinitionPayload = {
|
|
|
137207
138389
|
errors?: Maybe<Array<MutationError>>;
|
|
137208
138390
|
success: Scalars['Boolean']['output'];
|
|
137209
138391
|
};
|
|
138392
|
+
export declare type MercuryDeleteFocusAreaBudgetInput = {
|
|
138393
|
+
id: Scalars['ID']['input'];
|
|
138394
|
+
};
|
|
138395
|
+
export declare type MercuryDeleteFocusAreaBudgetPayload = Payload & {
|
|
138396
|
+
__typename?: 'MercuryDeleteFocusAreaBudgetPayload';
|
|
138397
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138398
|
+
success: Scalars['Boolean']['output'];
|
|
138399
|
+
};
|
|
137210
138400
|
export declare type MercuryDeleteFocusAreaGoalLinksInput = {
|
|
137211
138401
|
atlasGoalAris: Array<Scalars['String']['input']>;
|
|
137212
138402
|
focusAreaAri: Scalars['String']['input'];
|
|
@@ -137346,19 +138536,19 @@ export declare type MercuryEstimateCostAtCompletion = {
|
|
|
137346
138536
|
};
|
|
137347
138537
|
export declare type MercuryEstimateCostAtCompletionByCostClassification = {
|
|
137348
138538
|
__typename?: 'MercuryEstimateCostAtCompletionByCostClassification';
|
|
137349
|
-
|
|
137350
|
-
|
|
138539
|
+
costSubtype?: Maybe<MercuryCostSubtype>;
|
|
138540
|
+
costType?: Maybe<MercuryCostType>;
|
|
137351
138541
|
total?: Maybe<MercuryMoney>;
|
|
137352
138542
|
};
|
|
137353
138543
|
export declare type MercuryEstimateCostAtCompletionByDimension = MercuryEstimateCostAtCompletionByCostClassification | MercuryEstimateCostAtCompletionByExpenditureType | MercuryEstimateCostAtCompletionByInvestmentCategory;
|
|
137354
138544
|
export declare type MercuryEstimateCostAtCompletionByExpenditureType = {
|
|
137355
138545
|
__typename?: 'MercuryEstimateCostAtCompletionByExpenditureType';
|
|
137356
|
-
|
|
138546
|
+
expenditureType?: Maybe<MercuryExpenditureType>;
|
|
137357
138547
|
total?: Maybe<MercuryMoney>;
|
|
137358
138548
|
};
|
|
137359
138549
|
export declare type MercuryEstimateCostAtCompletionByInvestmentCategory = {
|
|
137360
138550
|
__typename?: 'MercuryEstimateCostAtCompletionByInvestmentCategory';
|
|
137361
|
-
|
|
138551
|
+
investmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
137362
138552
|
total?: Maybe<MercuryMoney>;
|
|
137363
138553
|
};
|
|
137364
138554
|
export declare enum MercuryEventType {
|
|
@@ -137482,7 +138672,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
137482
138672
|
archived: Scalars['Boolean']['output'];
|
|
137483
138673
|
ari: Scalars['String']['output'];
|
|
137484
138674
|
asks?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
137485
|
-
|
|
138675
|
+
budgets?: Maybe<Array<Maybe<MercuryFocusAreaBudget>>>;
|
|
137486
138676
|
costSummary?: Maybe<MercuryFocusAreaCostSummary>;
|
|
137487
138677
|
createdDate: Scalars['String']['output'];
|
|
137488
138678
|
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
@@ -137518,6 +138708,10 @@ export declare type MercuryFocusAreaAsksArgs = {
|
|
|
137518
138708
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
137519
138709
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
137520
138710
|
};
|
|
138711
|
+
export declare type MercuryFocusAreaBudgetsArgs = {
|
|
138712
|
+
endFiscalYear: Scalars['Int']['input'];
|
|
138713
|
+
startFiscalYear: Scalars['Int']['input'];
|
|
138714
|
+
};
|
|
137521
138715
|
export declare type MercuryFocusAreaCostSummaryArgs = {
|
|
137522
138716
|
dimensions?: InputMaybe<Array<MercuryCostSummaryDimension>>;
|
|
137523
138717
|
endYearMonth: Scalars['String']['input'];
|
|
@@ -137576,6 +138770,35 @@ export declare type MercuryFocusAreaActivityHistory = Node & {
|
|
|
137576
138770
|
export declare type MercuryFocusAreaActivitySort = {
|
|
137577
138771
|
order: SortOrder;
|
|
137578
138772
|
};
|
|
138773
|
+
export declare type MercuryFocusAreaBudget = Node & {
|
|
138774
|
+
__typename?: 'MercuryFocusAreaBudget';
|
|
138775
|
+
amount: MercuryMoney;
|
|
138776
|
+
createdBy?: Maybe<User>;
|
|
138777
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
138778
|
+
fiscalYear: Scalars['Int']['output'];
|
|
138779
|
+
focusArea?: Maybe<MercuryFocusArea>;
|
|
138780
|
+
id: Scalars['ID']['output'];
|
|
138781
|
+
updatedBy?: Maybe<User>;
|
|
138782
|
+
updatedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
138783
|
+
};
|
|
138784
|
+
export declare type MercuryFocusAreaBudgetConnection = {
|
|
138785
|
+
__typename?: 'MercuryFocusAreaBudgetConnection';
|
|
138786
|
+
edges?: Maybe<Array<MercuryFocusAreaBudgetEdge>>;
|
|
138787
|
+
pageInfo: PageInfo;
|
|
138788
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
138789
|
+
};
|
|
138790
|
+
export declare type MercuryFocusAreaBudgetEdge = {
|
|
138791
|
+
__typename?: 'MercuryFocusAreaBudgetEdge';
|
|
138792
|
+
cursor: Scalars['String']['output'];
|
|
138793
|
+
node?: Maybe<MercuryFocusAreaBudget>;
|
|
138794
|
+
};
|
|
138795
|
+
export declare type MercuryFocusAreaBudgetSort = {
|
|
138796
|
+
field: MercuryFocusAreaBudgetSortField;
|
|
138797
|
+
order: SortOrder;
|
|
138798
|
+
};
|
|
138799
|
+
export declare enum MercuryFocusAreaBudgetSortField {
|
|
138800
|
+
FiscalYear = "FISCAL_YEAR"
|
|
138801
|
+
}
|
|
137579
138802
|
export declare type MercuryFocusAreaChangeRequirements = {
|
|
137580
138803
|
__typename?: 'MercuryFocusAreaChangeRequirements';
|
|
137581
138804
|
changeProposalId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -137997,6 +139220,7 @@ export declare type MercuryFundsMutationApi = {
|
|
|
137997
139220
|
createCostPeriodValue?: Maybe<MercuryCreateCostPeriodValuePayload>;
|
|
137998
139221
|
createCostSubtype?: Maybe<MercuryCreateCostSubtypePayload>;
|
|
137999
139222
|
createFiscalCalendarConfiguration?: Maybe<MercuryCreateFiscalCalendarConfigurationPayload>;
|
|
139223
|
+
createFocusAreaBudget?: Maybe<MercuryCreateFocusAreaBudgetPayload>;
|
|
138000
139224
|
createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
|
|
138001
139225
|
deleteBenefitItem?: Maybe<MercuryDeleteBenefitItemPayload>;
|
|
138002
139226
|
deleteBenefitPeriodValue?: Maybe<MercuryDeleteBenefitPeriodValuePayload>;
|
|
@@ -138004,6 +139228,7 @@ export declare type MercuryFundsMutationApi = {
|
|
|
138004
139228
|
deleteCostItem?: Maybe<MercuryDeleteCostItemPayload>;
|
|
138005
139229
|
deleteCostPeriodValue?: Maybe<MercuryDeleteCostPeriodValuePayload>;
|
|
138006
139230
|
deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
|
|
139231
|
+
deleteFocusAreaBudget?: Maybe<MercuryDeleteFocusAreaBudgetPayload>;
|
|
138007
139232
|
deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
|
|
138008
139233
|
setBaseline?: Maybe<MercurySetBaselinePayload>;
|
|
138009
139234
|
unsetBaseline?: Maybe<MercuryUnsetBaselinePayload>;
|
|
@@ -138017,6 +139242,7 @@ export declare type MercuryFundsMutationApi = {
|
|
|
138017
139242
|
updateCostItemName?: Maybe<MercuryUpdateCostItemNamePayload>;
|
|
138018
139243
|
updateCostPeriodValueAmount?: Maybe<MercuryUpdateCostPeriodValueAmountPayload>;
|
|
138019
139244
|
updateCostSubtypeName?: Maybe<MercuryUpdateCostSubtypePayload>;
|
|
139245
|
+
updateFocusAreaBudgetAmount?: Maybe<MercuryUpdateFocusAreaBudgetPayload>;
|
|
138020
139246
|
updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
138021
139247
|
};
|
|
138022
139248
|
export declare type MercuryFundsMutationApiCreateBenefitItemArgs = {
|
|
@@ -138040,6 +139266,9 @@ export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
|
|
|
138040
139266
|
export declare type MercuryFundsMutationApiCreateFiscalCalendarConfigurationArgs = {
|
|
138041
139267
|
input: MercuryCreateFiscalCalendarConfigurationInput;
|
|
138042
139268
|
};
|
|
139269
|
+
export declare type MercuryFundsMutationApiCreateFocusAreaBudgetArgs = {
|
|
139270
|
+
input: MercuryCreateFocusAreaBudgetInput;
|
|
139271
|
+
};
|
|
138043
139272
|
export declare type MercuryFundsMutationApiCreateInvestmentCategoryArgs = {
|
|
138044
139273
|
input: MercuryCreateInvestmentCategoryInput;
|
|
138045
139274
|
};
|
|
@@ -138061,6 +139290,9 @@ export declare type MercuryFundsMutationApiDeleteCostPeriodValueArgs = {
|
|
|
138061
139290
|
export declare type MercuryFundsMutationApiDeleteCostSubtypeArgs = {
|
|
138062
139291
|
input: MercuryDeleteCostSubtypeInput;
|
|
138063
139292
|
};
|
|
139293
|
+
export declare type MercuryFundsMutationApiDeleteFocusAreaBudgetArgs = {
|
|
139294
|
+
input: MercuryDeleteFocusAreaBudgetInput;
|
|
139295
|
+
};
|
|
138064
139296
|
export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
|
|
138065
139297
|
input: MercuryDeleteInvestmentCategoryInput;
|
|
138066
139298
|
};
|
|
@@ -138100,6 +139332,9 @@ export declare type MercuryFundsMutationApiUpdateCostPeriodValueAmountArgs = {
|
|
|
138100
139332
|
export declare type MercuryFundsMutationApiUpdateCostSubtypeNameArgs = {
|
|
138101
139333
|
input: MercuryUpdateCostSubtypeNameInput;
|
|
138102
139334
|
};
|
|
139335
|
+
export declare type MercuryFundsMutationApiUpdateFocusAreaBudgetAmountArgs = {
|
|
139336
|
+
input: MercuryUpdateFocusAreaBudgetAmountInput;
|
|
139337
|
+
};
|
|
138103
139338
|
export declare type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
|
|
138104
139339
|
input: MercuryUpdateInvestmentCategoryNameInput;
|
|
138105
139340
|
};
|
|
@@ -138127,6 +139362,9 @@ export declare type MercuryFundsQueryApi = {
|
|
|
138127
139362
|
fiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
138128
139363
|
fiscalCalendarConfigurations?: Maybe<Array<Maybe<MercuryFiscalCalendarConfiguration>>>;
|
|
138129
139364
|
fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
|
|
139365
|
+
focusAreaBudgets?: Maybe<Array<Maybe<MercuryFocusAreaBudget>>>;
|
|
139366
|
+
focusAreaBudgetsByFocusAreaIds?: Maybe<Array<Maybe<MercuryFocusAreaBudget>>>;
|
|
139367
|
+
focusAreaBudgetsSearch?: Maybe<MercuryFocusAreaBudgetConnection>;
|
|
138130
139368
|
focusAreaMonthlySummaries?: Maybe<Array<Maybe<MercuryFocusAreaFundsMonthlySummary>>>;
|
|
138131
139369
|
investmentCategories?: Maybe<Array<Maybe<MercuryInvestmentCategory>>>;
|
|
138132
139370
|
investmentCategoriesSearch?: Maybe<MercuryInvestmentCategoryConnection>;
|
|
@@ -138216,6 +139454,21 @@ export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsSearchArgs =
|
|
|
138216
139454
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138217
139455
|
sort?: InputMaybe<Array<InputMaybe<MercuryFiscalCalendarConfigurationSort>>>;
|
|
138218
139456
|
};
|
|
139457
|
+
export declare type MercuryFundsQueryApiFocusAreaBudgetsArgs = {
|
|
139458
|
+
ids: Array<Scalars['ID']['input']>;
|
|
139459
|
+
};
|
|
139460
|
+
export declare type MercuryFundsQueryApiFocusAreaBudgetsByFocusAreaIdsArgs = {
|
|
139461
|
+
endFiscalYear: Scalars['Int']['input'];
|
|
139462
|
+
ids: Array<Scalars['ID']['input']>;
|
|
139463
|
+
startFiscalYear: Scalars['Int']['input'];
|
|
139464
|
+
};
|
|
139465
|
+
export declare type MercuryFundsQueryApiFocusAreaBudgetsSearchArgs = {
|
|
139466
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
139467
|
+
cloudId: Scalars['ID']['input'];
|
|
139468
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139469
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
139470
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaBudgetSort>>>;
|
|
139471
|
+
};
|
|
138219
139472
|
export declare type MercuryFundsQueryApiFocusAreaMonthlySummariesArgs = {
|
|
138220
139473
|
costTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
138221
139474
|
endDateExclusive?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -138287,6 +139540,7 @@ export declare enum MercuryImportExecutionErrorEntityType {
|
|
|
138287
139540
|
FocusArea = "FOCUS_AREA",
|
|
138288
139541
|
FocusAreaFunds = "FOCUS_AREA_FUNDS",
|
|
138289
139542
|
FocusAreaLink = "FOCUS_AREA_LINK",
|
|
139543
|
+
FundsBenefitItem = "FUNDS_BENEFIT_ITEM",
|
|
138290
139544
|
FundsCostItem = "FUNDS_COST_ITEM",
|
|
138291
139545
|
PeopleBudget = "PEOPLE_BUDGET",
|
|
138292
139546
|
Team = "TEAM",
|
|
@@ -138622,6 +139876,11 @@ export declare type MercuryLinkWorkToRiskPayload = Payload & {
|
|
|
138622
139876
|
errors?: Maybe<Array<MutationError>>;
|
|
138623
139877
|
success: Scalars['Boolean']['output'];
|
|
138624
139878
|
};
|
|
139879
|
+
export declare type MercuryLinkedGoalOrWorkAiSummary = {
|
|
139880
|
+
__typename?: 'MercuryLinkedGoalOrWorkAiSummary';
|
|
139881
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
139882
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
139883
|
+
};
|
|
138625
139884
|
export declare type MercuryLinkedGoalOrWorkSummary = {
|
|
138626
139885
|
__typename?: 'MercuryLinkedGoalOrWorkSummary';
|
|
138627
139886
|
focusAreaId: Scalars['ID']['output'];
|
|
@@ -139217,6 +140476,15 @@ export declare type MercuryPositionCountByStatus = {
|
|
|
139217
140476
|
count?: Maybe<Scalars['Int']['output']>;
|
|
139218
140477
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
139219
140478
|
};
|
|
140479
|
+
export declare type MercuryPositionDataSummary = {
|
|
140480
|
+
__typename?: 'MercuryPositionDataSummary';
|
|
140481
|
+
filledPositions?: Maybe<Scalars['Int']['output']>;
|
|
140482
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
140483
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
140484
|
+
totalPositions?: Maybe<Scalars['Int']['output']>;
|
|
140485
|
+
unfilledPercentage?: Maybe<Scalars['Float']['output']>;
|
|
140486
|
+
unfilledPositions?: Maybe<Scalars['Int']['output']>;
|
|
140487
|
+
};
|
|
139220
140488
|
export declare type MercuryPositionDeltaByStatus = {
|
|
139221
140489
|
__typename?: 'MercuryPositionDeltaByStatus';
|
|
139222
140490
|
positionDelta?: Maybe<Scalars['Int']['output']>;
|
|
@@ -139523,7 +140791,8 @@ export declare type MercuryQueryApi = {
|
|
|
139523
140791
|
aiFocusAreaGoalContextData?: Maybe<MercuryFocusAreaGoalContext>;
|
|
139524
140792
|
aiFocusAreaSummary?: Maybe<MercuryFocusAreaSummary>;
|
|
139525
140793
|
aiFocusAreaWorkContextData?: Maybe<MercuryFocusAreaWorkContext>;
|
|
139526
|
-
aiLinkedGoalOrWorkInsightSummary?: Maybe<
|
|
140794
|
+
aiLinkedGoalOrWorkInsightSummary?: Maybe<MercuryLinkedGoalOrWorkAiSummary>;
|
|
140795
|
+
aiPositionInsightSummary?: Maybe<MercuryPositionDataSummary>;
|
|
139527
140796
|
comments?: Maybe<MercuryCommentConnection>;
|
|
139528
140797
|
commentsByAris?: Maybe<Array<Maybe<MercuryComment>>>;
|
|
139529
140798
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
@@ -139540,7 +140809,6 @@ export declare type MercuryQueryApi = {
|
|
|
139540
140809
|
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
139541
140810
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
139542
140811
|
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
139543
|
-
focusAreas_internalDoNotUse?: Maybe<MercuryFocusAreaConnection>;
|
|
139544
140812
|
linkedGoalOrWorkSummary?: Maybe<MercuryLinkedGoalOrWorkSummary>;
|
|
139545
140813
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
139546
140814
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
@@ -139573,6 +140841,10 @@ export declare type MercuryQueryApiAiLinkedGoalOrWorkInsightSummaryArgs = {
|
|
|
139573
140841
|
focusAreaId: Scalars['ID']['input'];
|
|
139574
140842
|
sowId: Scalars['ID']['input'];
|
|
139575
140843
|
};
|
|
140844
|
+
export declare type MercuryQueryApiAiPositionInsightSummaryArgs = {
|
|
140845
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
140846
|
+
focusAreaId: Scalars['ID']['input'];
|
|
140847
|
+
};
|
|
139576
140848
|
export declare type MercuryQueryApiCommentsArgs = {
|
|
139577
140849
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139578
140850
|
cloudId: Scalars['ID']['input'];
|
|
@@ -139645,12 +140917,6 @@ export declare type MercuryQueryApiFocusAreasByExternalIdsArgs = {
|
|
|
139645
140917
|
cloudId: Scalars['ID']['input'];
|
|
139646
140918
|
ids: Array<Scalars['String']['input']>;
|
|
139647
140919
|
};
|
|
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
140920
|
export declare type MercuryQueryApiLinkedGoalOrWorkSummaryArgs = {
|
|
139655
140921
|
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
139656
140922
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -140422,7 +141688,6 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
140422
141688
|
changeSummaryByFocusAreaIds?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
140423
141689
|
changeSummaryForChangeProposal?: Maybe<MercuryChangeSummaryForChangeProposal>;
|
|
140424
141690
|
changeSummaryForStrategicEvent?: Maybe<MercuryFocusAreaChangeSummary>;
|
|
140425
|
-
changeSummaryInternal?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
140426
141691
|
changeTypes: Array<MercuryChangeType>;
|
|
140427
141692
|
changes?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
140428
141693
|
changesByPositionIds?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
@@ -140493,9 +141758,6 @@ export declare type MercuryStrategicEventsQueryApiChangeSummaryForChangeProposal
|
|
|
140493
141758
|
export declare type MercuryStrategicEventsQueryApiChangeSummaryForStrategicEventArgs = {
|
|
140494
141759
|
strategicEventId?: InputMaybe<Scalars['ID']['input']>;
|
|
140495
141760
|
};
|
|
140496
|
-
export declare type MercuryStrategicEventsQueryApiChangeSummaryInternalArgs = {
|
|
140497
|
-
inputs: Array<MercuryChangeSummaryInput>;
|
|
140498
|
-
};
|
|
140499
141761
|
export declare type MercuryStrategicEventsQueryApiChangeTypesArgs = {
|
|
140500
141762
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
140501
141763
|
};
|
|
@@ -140957,6 +142219,16 @@ export declare type MercuryUpdateFocusAreaAboutContentInput = {
|
|
|
140957
142219
|
cloudId: Scalars['ID']['input'];
|
|
140958
142220
|
id: Scalars['ID']['input'];
|
|
140959
142221
|
};
|
|
142222
|
+
export declare type MercuryUpdateFocusAreaBudgetAmountInput = {
|
|
142223
|
+
amount: Scalars['String']['input'];
|
|
142224
|
+
id: Scalars['ID']['input'];
|
|
142225
|
+
};
|
|
142226
|
+
export declare type MercuryUpdateFocusAreaBudgetPayload = Payload & {
|
|
142227
|
+
__typename?: 'MercuryUpdateFocusAreaBudgetPayload';
|
|
142228
|
+
errors?: Maybe<Array<MutationError>>;
|
|
142229
|
+
success: Scalars['Boolean']['output'];
|
|
142230
|
+
updatedFocusAreaBudget?: Maybe<MercuryFocusAreaBudget>;
|
|
142231
|
+
};
|
|
140960
142232
|
export declare type MercuryUpdateFocusAreaHierarchyNameInput = {
|
|
140961
142233
|
id: Scalars['ID']['input'];
|
|
140962
142234
|
name: Scalars['String']['input'];
|
|
@@ -141463,7 +142735,6 @@ export declare type Mutation = {
|
|
|
141463
142735
|
__typename?: 'Mutation';
|
|
141464
142736
|
actions?: Maybe<ActionsMutation>;
|
|
141465
142737
|
activatePaywallContent?: Maybe<ActivatePaywallContentPayload>;
|
|
141466
|
-
addBetaUserAsSiteCreator?: Maybe<AddBetaUserAsSiteCreatorPayload>;
|
|
141467
142738
|
addDefaultExCoSpacePermissions?: Maybe<AddDefaultExCoSpacePermissionsPayload>;
|
|
141468
142739
|
addLabels?: Maybe<AddLabelsPayload>;
|
|
141469
142740
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
@@ -141578,6 +142849,7 @@ export declare type Mutation = {
|
|
|
141578
142849
|
assetsDM_createDataSource?: Maybe<AssetsDmCreateDataSourcePayload>;
|
|
141579
142850
|
assetsDM_createDataSourceType?: Maybe<AssetsDmCreateDataSourceTypeResponse>;
|
|
141580
142851
|
assetsDM_createDefaultCleansingRule?: Maybe<AssetsDmCreateDefaultCleansingRuleResponse>;
|
|
142852
|
+
assetsDM_createObjectAttribute?: Maybe<AssetsDmCreateObjectAttributeResponse>;
|
|
141581
142853
|
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
141582
142854
|
assetsDM_createObjectsListExportRequest?: Maybe<AssetsDmObjectsListExportRequestCreateResponse>;
|
|
141583
142855
|
assetsDM_createSavedSearch?: Maybe<AssetsDmSavedSearchesCreateResponse>;
|
|
@@ -141606,6 +142878,7 @@ export declare type Mutation = {
|
|
|
141606
142878
|
assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
|
|
141607
142879
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
141608
142880
|
assetsDM_importDataDictionary?: Maybe<AssetsDmImportDataDictionaryResponse>;
|
|
142881
|
+
assetsDM_resetDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
141609
142882
|
assetsDM_updateAttributePriority?: Maybe<AssetsDmUpdateAttributePriorityPayload>;
|
|
141610
142883
|
assetsDM_updateAttributePriorityOrder?: Maybe<AssetsDmAttributePriorityResponse>;
|
|
141611
142884
|
assetsDM_updateCleansingReason?: Maybe<AssetsDmUpdateCleansingReasonResponse>;
|
|
@@ -141613,8 +142886,10 @@ export declare type Mutation = {
|
|
|
141613
142886
|
assetsDM_updateDataSourcePriority?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
141614
142887
|
assetsDM_updateDataSourceType?: Maybe<AssetsDmUpdateDataSourceTypeResponse>;
|
|
141615
142888
|
assetsDM_updateDefaultCleansingRule?: Maybe<AssetsDmUpdateDefaultCleansingRuleResponse>;
|
|
142889
|
+
assetsVertical_createVerticalInstantiation: AssetsVerticalVerticalInstantiationPayload;
|
|
141616
142890
|
assetsVertical_generateInsights?: Maybe<AssetsVerticalGenerateInsightsPayload>;
|
|
141617
142891
|
assetsVertical_instantiateBundleByType: AssetsVerticalAsyncTaskPayload;
|
|
142892
|
+
assetsVertical_updateVerticalInstantiation: AssetsVerticalVerticalInstantiationPayload;
|
|
141618
142893
|
assets_updateObjectAttributeValue?: Maybe<AssetsAttributeOnObject>;
|
|
141619
142894
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
141620
142895
|
attachDanglingComment?: Maybe<Comment>;
|
|
@@ -141686,10 +142961,12 @@ export declare type Mutation = {
|
|
|
141686
142961
|
channelPlatform_createQueues?: Maybe<ChannelPlatformConnectQueue>;
|
|
141687
142962
|
channelPlatform_deleteQueues?: Maybe<ChannelPlatformMutationStatus>;
|
|
141688
142963
|
channelPlatform_endChatIfTicketIsNotPresent?: Maybe<ChannelPlatformChatClosureResponse>;
|
|
142964
|
+
channelPlatform_initiateOtp?: Maybe<ChannelPlatformSendOtpResponse>;
|
|
141689
142965
|
channelPlatform_performPluginAction?: Maybe<ChannelPlatformPluginActionResponse>;
|
|
141690
142966
|
channelPlatform_relayMessage?: Maybe<ChannelPlatformMutationStatus>;
|
|
141691
142967
|
channelPlatform_updateTracMetrics?: Maybe<ChannelPlatformTracMetricsResponse>;
|
|
141692
142968
|
channelPlatform_uploadAttachmentMetadata?: Maybe<ChannelPlatformAttachmentMetadataResponse>;
|
|
142969
|
+
channelPlatform_verifyOtp?: Maybe<ChannelPlatformVerifyOtpResponse>;
|
|
141693
142970
|
clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
|
|
141694
142971
|
cloudify_addRecommendation: CloudifyRecommendation;
|
|
141695
142972
|
cloudify_deleteRecommendations: Array<CloudifyRecommendationId>;
|
|
@@ -141773,6 +143050,7 @@ export declare type Mutation = {
|
|
|
141773
143050
|
confluence_removeTrack?: Maybe<ConfluenceRemoveTrackPayload>;
|
|
141774
143051
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
141775
143052
|
confluence_reorderTracks?: Maybe<ConfluenceReorderTrackPayload>;
|
|
143053
|
+
confluence_resolveApprovalAgent?: Maybe<ConfluenceApprovalAgentPayload>;
|
|
141776
143054
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
141777
143055
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
141778
143056
|
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
@@ -142012,6 +143290,7 @@ export declare type Mutation = {
|
|
|
142012
143290
|
goals_addProjectLink?: Maybe<TownsquareAddProjectLinkPayload>;
|
|
142013
143291
|
goals_archiveMetric?: Maybe<TownsquareGoalsArchiveMetricPayload>;
|
|
142014
143292
|
goals_clone?: Maybe<TownsquareGoalsClonePayload>;
|
|
143293
|
+
goals_connectSlackChannel?: Maybe<TownsquareGoalsConnectSlackChannelPayload>;
|
|
142015
143294
|
goals_create?: Maybe<TownsquareGoalsCreatePayload>;
|
|
142016
143295
|
goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
|
|
142017
143296
|
goals_createComment?: Maybe<TownsquareGoalsCreateCommentPayload>;
|
|
@@ -142026,6 +143305,7 @@ export declare type Mutation = {
|
|
|
142026
143305
|
goals_deleteLearning?: Maybe<TownsquareGoalsDeleteLearningPayload>;
|
|
142027
143306
|
goals_deleteProjectLink?: Maybe<TownsquareGoalsDeleteProjectLinkPayload>;
|
|
142028
143307
|
goals_deleteRisk?: Maybe<TownsquareGoalsDeleteRiskPayload>;
|
|
143308
|
+
goals_disconnectSlackChannel?: Maybe<TownsquareGoalsDisconnectSlackChannelPayload>;
|
|
142029
143309
|
goals_edit?: Maybe<TownsquareGoalsEditPayload>;
|
|
142030
143310
|
goals_editComment?: Maybe<TownsquareGoalsEditCommentPayload>;
|
|
142031
143311
|
goals_editDecision?: Maybe<TownsquareGoalsEditDecisionPayload>;
|
|
@@ -142094,6 +143374,8 @@ export declare type Mutation = {
|
|
|
142094
143374
|
jira?: Maybe<JiraMutation>;
|
|
142095
143375
|
jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
|
|
142096
143376
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
143377
|
+
jiraOpenBeta_createFeature?: Maybe<JiraOpenBetaFeatureCreatePayload>;
|
|
143378
|
+
jiraOpenBeta_updateFeature?: Maybe<JiraOpenBetaFeatureUpdatePayload>;
|
|
142097
143379
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
142098
143380
|
jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
142099
143381
|
jira_archiveIssue?: Maybe<JiraIssueArchivePayload>;
|
|
@@ -142218,6 +143500,7 @@ export declare type Mutation = {
|
|
|
142218
143500
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
142219
143501
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
142220
143502
|
jpdViewsService_associateGlobalView?: Maybe<JpdViewsServiceAssociateGlobalViewPayload>;
|
|
143503
|
+
jpdViewsService_cloneViewIntoGlobal?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
142221
143504
|
jpdViewsService_createGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload>;
|
|
142222
143505
|
jpdViewsService_createGlobalViewV2?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
142223
143506
|
jpdViewsService_deleteGlobalView?: Maybe<JpdViewsServiceDeleteGlobalViewPayload>;
|
|
@@ -142225,6 +143508,7 @@ export declare type Mutation = {
|
|
|
142225
143508
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
142226
143509
|
jpdViewsService_publishGlobalView?: Maybe<JpdViewsServicePublishGlobalViewPayload>;
|
|
142227
143510
|
jpdViewsService_rerankGlobalView?: Maybe<JpdViewsServiceRerankGlobalViewPayload>;
|
|
143511
|
+
jpdViewsService_setAssocToNewSpaces?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
142228
143512
|
jpdViewsService_unassociateGlobalView?: Maybe<JpdViewsServiceUnassociateGlobalViewPayload>;
|
|
142229
143513
|
jpdViewsService_updateGlobalView?: Maybe<JpdViewsServiceUpdateGlobalViewPayload>;
|
|
142230
143514
|
jpdViewsService_updateGlobalViewV2?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
@@ -142258,6 +143542,7 @@ export declare type Mutation = {
|
|
|
142258
143542
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
142259
143543
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
142260
143544
|
kitsune_updateInsight?: Maybe<KitsuneInsight>;
|
|
143545
|
+
kitsune_updateOrganization?: Maybe<KitsuneOrganizationNode>;
|
|
142261
143546
|
kitsune_updateSection?: Maybe<KitsuneSection>;
|
|
142262
143547
|
kitsune_updateSnippet?: Maybe<KitsuneSnippet>;
|
|
142263
143548
|
kitsune_updateSpace?: Maybe<KitsuneSpace>;
|
|
@@ -142543,6 +143828,7 @@ export declare type Mutation = {
|
|
|
142543
143828
|
stakeholderComms_validateSubscriberToken?: Maybe<Scalars['Boolean']['output']>;
|
|
142544
143829
|
stakeholderComms_verifyDns?: Maybe<StakeholderCommsVerifyDnsResponse>;
|
|
142545
143830
|
startSprint?: Maybe<SprintResponse>;
|
|
143831
|
+
studio_createDraftBuild?: Maybe<StudioCreateDraftBuildPayload>;
|
|
142546
143832
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
142547
143833
|
team?: Maybe<TeamMutation>;
|
|
142548
143834
|
templateMigration?: Maybe<TemplateMigration>;
|
|
@@ -142632,9 +143918,6 @@ export declare type Mutation = {
|
|
|
142632
143918
|
export declare type MutationActivatePaywallContentArgs = {
|
|
142633
143919
|
input: ActivatePaywallContentInput;
|
|
142634
143920
|
};
|
|
142635
|
-
export declare type MutationAddBetaUserAsSiteCreatorArgs = {
|
|
142636
|
-
input: AddBetaUserAsSiteCreatorInput;
|
|
142637
|
-
};
|
|
142638
143921
|
export declare type MutationAddDefaultExCoSpacePermissionsArgs = {
|
|
142639
143922
|
spacePermissionsInput: AddDefaultExCoSpacePermissionsInput;
|
|
142640
143923
|
};
|
|
@@ -143081,6 +144364,11 @@ export declare type MutationAssetsDm_CreateDefaultCleansingRuleArgs = {
|
|
|
143081
144364
|
input: AssetsDmCreateDefaultCleansingRuleInput;
|
|
143082
144365
|
workspaceId: Scalars['ID']['input'];
|
|
143083
144366
|
};
|
|
144367
|
+
export declare type MutationAssetsDm_CreateObjectAttributeArgs = {
|
|
144368
|
+
cloudId: Scalars['ID']['input'];
|
|
144369
|
+
payload: AssetsDmCreateObjectAttributeInput;
|
|
144370
|
+
workspaceId: Scalars['ID']['input'];
|
|
144371
|
+
};
|
|
143084
144372
|
export declare type MutationAssetsDm_CreateObjectTagArgs = {
|
|
143085
144373
|
cloudId: Scalars['ID']['input'];
|
|
143086
144374
|
input: AssetsDmObjectTagCreateInput;
|
|
@@ -143231,6 +144519,11 @@ export declare type MutationAssetsDm_ImportDataDictionaryArgs = {
|
|
|
143231
144519
|
payload: AssetsDmImportDataDictionaryInput;
|
|
143232
144520
|
workspaceId: Scalars['ID']['input'];
|
|
143233
144521
|
};
|
|
144522
|
+
export declare type MutationAssetsDm_ResetDataSourceMappingArgs = {
|
|
144523
|
+
cloudId: Scalars['ID']['input'];
|
|
144524
|
+
dataSourceId: Scalars['ID']['input'];
|
|
144525
|
+
workspaceId: Scalars['ID']['input'];
|
|
144526
|
+
};
|
|
143234
144527
|
export declare type MutationAssetsDm_UpdateAttributePriorityArgs = {
|
|
143235
144528
|
cloudId: Scalars['ID']['input'];
|
|
143236
144529
|
input: AssetsDmUpdateAttributePriorityInput;
|
|
@@ -143266,12 +144559,18 @@ export declare type MutationAssetsDm_UpdateDefaultCleansingRuleArgs = {
|
|
|
143266
144559
|
input: AssetsDmUpdateDefaultCleansingRuleInput;
|
|
143267
144560
|
workspaceId: Scalars['ID']['input'];
|
|
143268
144561
|
};
|
|
144562
|
+
export declare type MutationAssetsVertical_CreateVerticalInstantiationArgs = {
|
|
144563
|
+
input: AssetsVerticalCreateVerticalInstantiationInput;
|
|
144564
|
+
};
|
|
143269
144565
|
export declare type MutationAssetsVertical_GenerateInsightsArgs = {
|
|
143270
144566
|
input: AssetsVerticalGenerateInsightsInput;
|
|
143271
144567
|
};
|
|
143272
144568
|
export declare type MutationAssetsVertical_InstantiateBundleByTypeArgs = {
|
|
143273
144569
|
input: AssetsVerticalInstantiateBundleByTypeInput;
|
|
143274
144570
|
};
|
|
144571
|
+
export declare type MutationAssetsVertical_UpdateVerticalInstantiationArgs = {
|
|
144572
|
+
input: AssetsVerticalUpdateVerticalInstantiationInput;
|
|
144573
|
+
};
|
|
143275
144574
|
export declare type MutationAssets_UpdateObjectAttributeValueArgs = {
|
|
143276
144575
|
cloudId: Scalars['ID']['input'];
|
|
143277
144576
|
id: Scalars['ID']['input'];
|
|
@@ -143496,6 +144795,9 @@ export declare type MutationChannelPlatform_DeleteQueuesArgs = {
|
|
|
143496
144795
|
export declare type MutationChannelPlatform_EndChatIfTicketIsNotPresentArgs = {
|
|
143497
144796
|
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
143498
144797
|
};
|
|
144798
|
+
export declare type MutationChannelPlatform_InitiateOtpArgs = {
|
|
144799
|
+
conversationId: Scalars['String']['input'];
|
|
144800
|
+
};
|
|
143499
144801
|
export declare type MutationChannelPlatform_PerformPluginActionArgs = {
|
|
143500
144802
|
pluginActionRequest?: InputMaybe<ChannelPlatformPluginActionRequest>;
|
|
143501
144803
|
};
|
|
@@ -143509,6 +144811,10 @@ export declare type MutationChannelPlatform_UploadAttachmentMetadataArgs = {
|
|
|
143509
144811
|
attachmentId: Scalars['String']['input'];
|
|
143510
144812
|
metadata: Scalars['JSON']['input'];
|
|
143511
144813
|
};
|
|
144814
|
+
export declare type MutationChannelPlatform_VerifyOtpArgs = {
|
|
144815
|
+
conversationId: Scalars['String']['input'];
|
|
144816
|
+
otp: Scalars['String']['input'];
|
|
144817
|
+
};
|
|
143512
144818
|
export declare type MutationClearRestrictionsForFreeArgs = {
|
|
143513
144819
|
contentId: Scalars['ID']['input'];
|
|
143514
144820
|
};
|
|
@@ -143812,6 +145118,9 @@ export declare type MutationConfluence_ReorderTracksArgs = {
|
|
|
143812
145118
|
cloudId: Scalars['ID']['input'];
|
|
143813
145119
|
input: ConfluenceReorderTrackInput;
|
|
143814
145120
|
};
|
|
145121
|
+
export declare type MutationConfluence_ResolveApprovalAgentArgs = {
|
|
145122
|
+
cloudId: Scalars['ID']['input'];
|
|
145123
|
+
};
|
|
143815
145124
|
export declare type MutationConfluence_ResolveCommentsArgs = {
|
|
143816
145125
|
cloudId: Scalars['ID']['input'];
|
|
143817
145126
|
commentIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
@@ -144677,6 +145986,9 @@ export declare type MutationGoals_ArchiveMetricArgs = {
|
|
|
144677
145986
|
export declare type MutationGoals_CloneArgs = {
|
|
144678
145987
|
input: TownsquareGoalsCloneInput;
|
|
144679
145988
|
};
|
|
145989
|
+
export declare type MutationGoals_ConnectSlackChannelArgs = {
|
|
145990
|
+
input: TownsquareGoalsConnectSlackChannelInput;
|
|
145991
|
+
};
|
|
144680
145992
|
export declare type MutationGoals_CreateArgs = {
|
|
144681
145993
|
input: TownsquareGoalsCreateInput;
|
|
144682
145994
|
};
|
|
@@ -144719,6 +146031,9 @@ export declare type MutationGoals_DeleteProjectLinkArgs = {
|
|
|
144719
146031
|
export declare type MutationGoals_DeleteRiskArgs = {
|
|
144720
146032
|
input: TownsquareGoalsDeleteRiskInput;
|
|
144721
146033
|
};
|
|
146034
|
+
export declare type MutationGoals_DisconnectSlackChannelArgs = {
|
|
146035
|
+
input: TownsquareGoalsDisconnectSlackChannelInput;
|
|
146036
|
+
};
|
|
144722
146037
|
export declare type MutationGoals_EditArgs = {
|
|
144723
146038
|
input?: InputMaybe<TownsquareGoalsEditInput>;
|
|
144724
146039
|
};
|
|
@@ -144906,6 +146221,14 @@ export declare type MutationInvokeExtensionArgs = {
|
|
|
144906
146221
|
export declare type MutationInvokePolarisObjectArgs = {
|
|
144907
146222
|
input: InvokePolarisObjectInput;
|
|
144908
146223
|
};
|
|
146224
|
+
export declare type MutationJiraOpenBeta_CreateFeatureArgs = {
|
|
146225
|
+
cloudId: Scalars['ID']['input'];
|
|
146226
|
+
input?: InputMaybe<JiraOpenBetaFeatureCreateInput>;
|
|
146227
|
+
};
|
|
146228
|
+
export declare type MutationJiraOpenBeta_UpdateFeatureArgs = {
|
|
146229
|
+
cloudId: Scalars['ID']['input'];
|
|
146230
|
+
input?: InputMaybe<JiraOpenBetaFeatureUpdateInput>;
|
|
146231
|
+
};
|
|
144909
146232
|
export declare type MutationJira_AddFieldsToFieldSchemeArgs = {
|
|
144910
146233
|
cloudId: Scalars['ID']['input'];
|
|
144911
146234
|
input: JiraAddFieldsToFieldSchemeInput;
|
|
@@ -145307,6 +146630,9 @@ export declare type MutationJira_UpdateSchemeFieldPerWorkTypeCustomizationsArgs
|
|
|
145307
146630
|
export declare type MutationJpdViewsService_AssociateGlobalViewArgs = {
|
|
145308
146631
|
input: JpdViewsServiceAssociateGlobalViewInput;
|
|
145309
146632
|
};
|
|
146633
|
+
export declare type MutationJpdViewsService_CloneViewIntoGlobalArgs = {
|
|
146634
|
+
input: JpdViewsServiceCloneViewIntoGlobalInput;
|
|
146635
|
+
};
|
|
145310
146636
|
export declare type MutationJpdViewsService_CreateGlobalViewArgs = {
|
|
145311
146637
|
cloudId: Scalars['ID']['input'];
|
|
145312
146638
|
input: JpdViewsServiceCreateGlobalViewInput;
|
|
@@ -145331,6 +146657,9 @@ export declare type MutationJpdViewsService_PublishGlobalViewArgs = {
|
|
|
145331
146657
|
export declare type MutationJpdViewsService_RerankGlobalViewArgs = {
|
|
145332
146658
|
input: JpdViewsServiceRerankGlobalViewInput;
|
|
145333
146659
|
};
|
|
146660
|
+
export declare type MutationJpdViewsService_SetAssocToNewSpacesArgs = {
|
|
146661
|
+
input: JpdViewsServiceSetAssocToNewSpacesInput;
|
|
146662
|
+
};
|
|
145334
146663
|
export declare type MutationJpdViewsService_UnassociateGlobalViewArgs = {
|
|
145335
146664
|
input: JpdViewsServiceUnassociateGlobalViewInput;
|
|
145336
146665
|
};
|
|
@@ -145469,6 +146798,12 @@ export declare type MutationKitsune_UpdateInsightArgs = {
|
|
|
145469
146798
|
id: Scalars['ID']['input'];
|
|
145470
146799
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
145471
146800
|
};
|
|
146801
|
+
export declare type MutationKitsune_UpdateOrganizationArgs = {
|
|
146802
|
+
defaultCustomerId?: InputMaybe<Scalars['ID']['input']>;
|
|
146803
|
+
id: Scalars['ID']['input'];
|
|
146804
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
146805
|
+
workspaceAri: Scalars['ID']['input'];
|
|
146806
|
+
};
|
|
145472
146807
|
export declare type MutationKitsune_UpdateSectionArgs = {
|
|
145473
146808
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
145474
146809
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -146397,6 +147732,9 @@ export declare type MutationStakeholderComms_VerifyDnsArgs = {
|
|
|
146397
147732
|
export declare type MutationStartSprintArgs = {
|
|
146398
147733
|
input?: InputMaybe<StartSprintInput>;
|
|
146399
147734
|
};
|
|
147735
|
+
export declare type MutationStudio_CreateDraftBuildArgs = {
|
|
147736
|
+
input: StudioCreateDraftBuildInput;
|
|
147737
|
+
};
|
|
146400
147738
|
export declare type MutationSubscribeToAppArgs = {
|
|
146401
147739
|
input: AppSubscribeInput;
|
|
146402
147740
|
};
|
|
@@ -148451,6 +149789,7 @@ export declare type PlaybookDetailsForView = {
|
|
|
148451
149789
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
148452
149790
|
executedOnIssues?: Maybe<Array<PlaybookExecutedIssue>>;
|
|
148453
149791
|
id: Scalars['ID']['output'];
|
|
149792
|
+
isAiCreated?: Maybe<Scalars['Boolean']['output']>;
|
|
148454
149793
|
lastUpdatedAt?: Maybe<Scalars['String']['output']>;
|
|
148455
149794
|
name?: Maybe<Scalars['String']['output']>;
|
|
148456
149795
|
owner?: Maybe<User>;
|
|
@@ -148488,6 +149827,7 @@ export declare enum PlaybookTemplateIcon {
|
|
|
148488
149827
|
ChangeManagement_4Icon = "CHANGE_MANAGEMENT_4_ICON",
|
|
148489
149828
|
Chat_5Icon = "CHAT_5_ICON",
|
|
148490
149829
|
DataPrivacyIcon = "DATA_PRIVACY_ICON",
|
|
149830
|
+
HourglassIcon = "HOURGLASS_ICON",
|
|
148491
149831
|
OnboardingIcon = "ONBOARDING_ICON",
|
|
148492
149832
|
RainstormIncidentIcon = "RAINSTORM_INCIDENT_ICON",
|
|
148493
149833
|
RefreshUpdateIcon = "REFRESH_UPDATE_ICON"
|
|
@@ -149237,6 +150577,11 @@ export declare type PostOfficeSubscriptionMatchersInput = {
|
|
|
149237
150577
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
149238
150578
|
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
149239
150579
|
};
|
|
150580
|
+
export declare type PreferredIndexInputType = {
|
|
150581
|
+
allowSelectAllAsFallback?: InputMaybe<Scalars['Boolean']['input']>;
|
|
150582
|
+
gqlSchemaName?: InputMaybe<Scalars['String']['input']>;
|
|
150583
|
+
indexName?: InputMaybe<Scalars['String']['input']>;
|
|
150584
|
+
};
|
|
149240
150585
|
export declare type PremiumExtensionsFeature = {
|
|
149241
150586
|
__typename?: 'PremiumExtensionsFeature';
|
|
149242
150587
|
isEntitled: Scalars['Boolean']['output'];
|
|
@@ -149633,6 +150978,7 @@ export declare type Query = {
|
|
|
149633
150978
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
149634
150979
|
admin_auditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
149635
150980
|
admin_auditLogProductMapping?: Maybe<Array<AdminAuditLogProductMapping>>;
|
|
150981
|
+
admin_auditLogUsers?: Maybe<AdminUserConnection>;
|
|
149636
150982
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
149637
150983
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
149638
150984
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
@@ -149651,6 +150997,7 @@ export declare type Query = {
|
|
|
149651
150997
|
admin_tokens?: Maybe<AdminTokenConnection>;
|
|
149652
150998
|
admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
|
|
149653
150999
|
admin_unitProfile?: Maybe<AdminUnit>;
|
|
151000
|
+
admin_unitSettings?: Maybe<AdminOrgUnitsSettings>;
|
|
149654
151001
|
admin_unitValidateName?: Maybe<AdminUnitValidateName>;
|
|
149655
151002
|
admin_unitsForOrg?: Maybe<AdminUnitConnection>;
|
|
149656
151003
|
admin_user?: Maybe<AdminUser>;
|
|
@@ -149834,10 +151181,14 @@ export declare type Query = {
|
|
|
149834
151181
|
assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
|
|
149835
151182
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
149836
151183
|
assetsVertical_attributeValues?: Maybe<AssetsVerticalAttributeValuesResult>;
|
|
151184
|
+
assetsVertical_attributesByTypes?: Maybe<AssetsVerticalAttributesResult>;
|
|
149837
151185
|
assetsVertical_bundle: AssetsVerticalBundleResult;
|
|
149838
151186
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
149839
151187
|
assetsVertical_insights?: Maybe<AssetsVerticalInsights>;
|
|
151188
|
+
assetsVertical_instantiatedBundle?: Maybe<AssetsVerticalBundleInstantiationResult>;
|
|
149840
151189
|
assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
|
|
151190
|
+
assetsVertical_verticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationResult>;
|
|
151191
|
+
assetsVertical_verticalInstantiations: AssetsVerticalVerticalInstantiationConnection;
|
|
149841
151192
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
149842
151193
|
assets_objectTypeAttributesByObjectTypeIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
149843
151194
|
assets_objectTypeAttributesBySchemaIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
@@ -149857,6 +151208,7 @@ export declare type Query = {
|
|
|
149857
151208
|
avpPermissions_getResourcePermission?: Maybe<AvpPermissionsResourcePermission>;
|
|
149858
151209
|
avpPermissions_hasCapability?: Maybe<AvpPermissionsHasCapabilityResponse>;
|
|
149859
151210
|
avp_getChart?: Maybe<AvpChart>;
|
|
151211
|
+
avp_getChartByConfigId?: Maybe<AvpChart>;
|
|
149860
151212
|
avp_getChartTemplatePreview?: Maybe<AvpChartTemplatePreview>;
|
|
149861
151213
|
avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
|
|
149862
151214
|
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
@@ -149913,6 +151265,7 @@ export declare type Query = {
|
|
|
149913
151265
|
changeManagement_rovoRiskAssessmentSettings: ChangeManagementRovoRiskAssessmentSettingsPayload;
|
|
149914
151266
|
changeManagement_rovoRiskAssessmentSettingsByIssue?: Maybe<ChangeManagementRovoRiskAssessmentSettingsPayload>;
|
|
149915
151267
|
channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
151268
|
+
channelPlatform_checkOtpVerified?: Maybe<ChannelPlatformCheckOtpVerifiedResponse>;
|
|
149916
151269
|
channelPlatform_createContact?: Maybe<ChannelPlatformCreateContactResponse>;
|
|
149917
151270
|
channelPlatform_downloadTranscript?: Maybe<ChannelPlatformDownloadTranscriptResponse>;
|
|
149918
151271
|
channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
|
|
@@ -150290,6 +151643,7 @@ export declare type Query = {
|
|
|
150290
151643
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
150291
151644
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
150292
151645
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
151646
|
+
goals_allWatchedGoalUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
150293
151647
|
goals_allWatchedGoalUpdatesCount?: Maybe<Scalars['Int']['output']>;
|
|
150294
151648
|
goals_appSettings?: Maybe<TownsquareGoalsAppSettings>;
|
|
150295
151649
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
@@ -150377,6 +151731,9 @@ export declare type Query = {
|
|
|
150377
151731
|
jiraAlignAgg_sitesByOrgId?: Maybe<Array<Maybe<JiraAlignAggSite>>>;
|
|
150378
151732
|
jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
|
|
150379
151733
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
151734
|
+
jiraOpenBeta_featureGetById?: Maybe<JiraOpenBetaFeature>;
|
|
151735
|
+
jiraOpenBeta_featureGetByIds?: Maybe<Array<Maybe<JiraOpenBetaFeature>>>;
|
|
151736
|
+
jiraOpenBeta_featureQuery?: Maybe<JiraOpenBetaFeatureConnection>;
|
|
150380
151737
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
150381
151738
|
jiraReleases?: Maybe<JiraReleases>;
|
|
150382
151739
|
jiraServers?: Maybe<JiraServersResult>;
|
|
@@ -150490,6 +151847,7 @@ export declare type Query = {
|
|
|
150490
151847
|
loomUserStatus?: Maybe<LoomUserStatus>;
|
|
150491
151848
|
loom_comment?: Maybe<LoomComment>;
|
|
150492
151849
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
151850
|
+
loom_connectedCalendars?: Maybe<Array<Maybe<LoomConnectedCalendar>>>;
|
|
150493
151851
|
loom_createSpace?: Maybe<LoomSpace>;
|
|
150494
151852
|
loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
|
|
150495
151853
|
loom_joinableWorkspaces?: Maybe<Array<Maybe<LoomJoinableWorkspace>>>;
|
|
@@ -150507,7 +151865,9 @@ export declare type Query = {
|
|
|
150507
151865
|
loom_videoDurations?: Maybe<LoomVideoDurations>;
|
|
150508
151866
|
loom_videos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
150509
151867
|
loom_viewableVideo?: Maybe<LoomVideo>;
|
|
151868
|
+
loom_workspace?: Maybe<LoomWorkspace>;
|
|
150510
151869
|
loom_workspaceTrendingVideos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
151870
|
+
loom_workspaces?: Maybe<Array<Maybe<LoomWorkspace>>>;
|
|
150511
151871
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
150512
151872
|
macroBodyRenderer?: Maybe<MacroBody>;
|
|
150513
151873
|
macros?: Maybe<MacroConnection>;
|
|
@@ -150599,6 +151959,7 @@ export declare type Query = {
|
|
|
150599
151959
|
productListing?: Maybe<ProductListingResult>;
|
|
150600
151960
|
productListings: Array<ProductListingResult>;
|
|
150601
151961
|
projects_allWatchedProjectUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
151962
|
+
projects_allWatchedProjectUpdatesCount?: Maybe<Scalars['Int']['output']>;
|
|
150602
151963
|
projects_appSettings?: Maybe<TownsquareProjectsAppSettings>;
|
|
150603
151964
|
projects_byAri?: Maybe<TownsquareProject>;
|
|
150604
151965
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
@@ -150876,7 +152237,8 @@ export declare type QueryAdmin_AccessUrlsArgs = {
|
|
|
150876
152237
|
};
|
|
150877
152238
|
export declare type QueryAdmin_AppModulesArgs = {
|
|
150878
152239
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
150879
|
-
|
|
152240
|
+
appIdentifier?: InputMaybe<AdminAppModulesKey>;
|
|
152241
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
150880
152242
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
150881
152243
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
150882
152244
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -150916,6 +152278,13 @@ export declare type QueryAdmin_AuditLogEventsArgs = {
|
|
|
150916
152278
|
export declare type QueryAdmin_AuditLogProductMappingArgs = {
|
|
150917
152279
|
container: AdminAuditLogContainer;
|
|
150918
152280
|
};
|
|
152281
|
+
export declare type QueryAdmin_AuditLogUsersArgs = {
|
|
152282
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
152283
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
152284
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
152285
|
+
input: AdminAuditLogSearchUsersInput;
|
|
152286
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
152287
|
+
};
|
|
150919
152288
|
export declare type QueryAdmin_CheckLicensesCapacityArgs = {
|
|
150920
152289
|
input: AdminLicenseInput;
|
|
150921
152290
|
orgId: Scalars['ID']['input'];
|
|
@@ -151023,6 +152392,9 @@ export declare type QueryAdmin_UnitProfileArgs = {
|
|
|
151023
152392
|
orgId: Scalars['ID']['input'];
|
|
151024
152393
|
unitId?: InputMaybe<Scalars['ID']['input']>;
|
|
151025
152394
|
};
|
|
152395
|
+
export declare type QueryAdmin_UnitSettingsArgs = {
|
|
152396
|
+
orgId: Scalars['ID']['input'];
|
|
152397
|
+
};
|
|
151026
152398
|
export declare type QueryAdmin_UnitValidateNameArgs = {
|
|
151027
152399
|
orgId: Scalars['ID']['input'];
|
|
151028
152400
|
unitName: Scalars['String']['input'];
|
|
@@ -151990,6 +153362,10 @@ export declare type QueryAssetsVertical_AttributeValuesArgs = {
|
|
|
151990
153362
|
cloudId: Scalars['ID']['input'];
|
|
151991
153363
|
input: AssetsVerticalAttributeValuesInput;
|
|
151992
153364
|
};
|
|
153365
|
+
export declare type QueryAssetsVertical_AttributesByTypesArgs = {
|
|
153366
|
+
cloudId: Scalars['ID']['input'];
|
|
153367
|
+
input: AssetsVerticalAttributesInput;
|
|
153368
|
+
};
|
|
151993
153369
|
export declare type QueryAssetsVertical_BundleArgs = {
|
|
151994
153370
|
cloudId: Scalars['ID']['input'];
|
|
151995
153371
|
type: AssetsVerticalBundleType;
|
|
@@ -152002,10 +153378,24 @@ export declare type QueryAssetsVertical_InsightsArgs = {
|
|
|
152002
153378
|
cloudId: Scalars['ID']['input'];
|
|
152003
153379
|
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
152004
153380
|
};
|
|
153381
|
+
export declare type QueryAssetsVertical_InstantiatedBundleArgs = {
|
|
153382
|
+
cloudId: Scalars['ID']['input'];
|
|
153383
|
+
type: AssetsVerticalBundleType;
|
|
153384
|
+
};
|
|
152005
153385
|
export declare type QueryAssetsVertical_ObjectsArgs = {
|
|
152006
153386
|
cloudId: Scalars['ID']['input'];
|
|
152007
153387
|
input?: InputMaybe<AssetsVerticalObjectsInput>;
|
|
152008
153388
|
};
|
|
153389
|
+
export declare type QueryAssetsVertical_VerticalInstantiationArgs = {
|
|
153390
|
+
cloudId: Scalars['ID']['input'];
|
|
153391
|
+
id: Scalars['ID']['input'];
|
|
153392
|
+
};
|
|
153393
|
+
export declare type QueryAssetsVertical_VerticalInstantiationsArgs = {
|
|
153394
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
153395
|
+
cloudId: Scalars['ID']['input'];
|
|
153396
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
153397
|
+
type?: InputMaybe<AssetsVerticalVerticalType>;
|
|
153398
|
+
};
|
|
152009
153399
|
export declare type QueryAssets_ObjectByIdArgs = {
|
|
152010
153400
|
id: Scalars['ID']['input'];
|
|
152011
153401
|
};
|
|
@@ -152069,6 +153459,11 @@ export declare type QueryAvpPermissions_HasCapabilityArgs = {
|
|
|
152069
153459
|
export declare type QueryAvp_GetChartArgs = {
|
|
152070
153460
|
chartAri: Scalars['ID']['input'];
|
|
152071
153461
|
};
|
|
153462
|
+
export declare type QueryAvp_GetChartByConfigIdArgs = {
|
|
153463
|
+
chartConfigId: Scalars['ID']['input'];
|
|
153464
|
+
cloudId: Scalars['ID']['input'];
|
|
153465
|
+
workspaceId: Scalars['ID']['input'];
|
|
153466
|
+
};
|
|
152072
153467
|
export declare type QueryAvp_GetChartTemplatePreviewArgs = {
|
|
152073
153468
|
cloudId: Scalars['ID']['input'];
|
|
152074
153469
|
templateFileName: Scalars['String']['input'];
|
|
@@ -152272,6 +153667,9 @@ export declare type QueryChangeManagement_RovoRiskAssessmentSettingsByIssueArgs
|
|
|
152272
153667
|
export declare type QueryChannelPlatform_ChatRequestDetailsArgs = {
|
|
152273
153668
|
request?: InputMaybe<ChannelPlatformChatRequestDetailsRequest>;
|
|
152274
153669
|
};
|
|
153670
|
+
export declare type QueryChannelPlatform_CheckOtpVerifiedArgs = {
|
|
153671
|
+
conversationId: Scalars['String']['input'];
|
|
153672
|
+
};
|
|
152275
153673
|
export declare type QueryChannelPlatform_CreateContactArgs = {
|
|
152276
153674
|
anonymousId?: InputMaybe<Scalars['String']['input']>;
|
|
152277
153675
|
request?: InputMaybe<ChannelPlatformSubmitRequestInput>;
|
|
@@ -153965,6 +155363,14 @@ export declare type QueryGetSummaryArgs = {
|
|
|
153965
155363
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
153966
155364
|
responseType?: InputMaybe<ResponseType>;
|
|
153967
155365
|
};
|
|
155366
|
+
export declare type QueryGoals_AllWatchedGoalUpdatesArgs = {
|
|
155367
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
155368
|
+
containerId: Scalars['ID']['input'];
|
|
155369
|
+
createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
155370
|
+
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
155371
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
155372
|
+
stateFilter?: InputMaybe<TownsquareUpdateStateFilter>;
|
|
155373
|
+
};
|
|
153968
155374
|
export declare type QueryGoals_AllWatchedGoalUpdatesCountArgs = {
|
|
153969
155375
|
containerId: Scalars['ID']['input'];
|
|
153970
155376
|
createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -154284,6 +155690,23 @@ export declare type QueryJiraAlignAgg_SitesByOrgIdArgs = {
|
|
|
154284
155690
|
env: Scalars['String']['input'];
|
|
154285
155691
|
orgId: Scalars['String']['input'];
|
|
154286
155692
|
};
|
|
155693
|
+
export declare type QueryJiraOpenBeta_FeatureGetByIdArgs = {
|
|
155694
|
+
cloudId: Scalars['ID']['input'];
|
|
155695
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
155696
|
+
shardingContext?: InputMaybe<Scalars['String']['input']>;
|
|
155697
|
+
};
|
|
155698
|
+
export declare type QueryJiraOpenBeta_FeatureGetByIdsArgs = {
|
|
155699
|
+
cloudId: Scalars['ID']['input'];
|
|
155700
|
+
ids?: InputMaybe<Array<InputMaybe<SkyBridgeIdInput>>>;
|
|
155701
|
+
};
|
|
155702
|
+
export declare type QueryJiraOpenBeta_FeatureQueryArgs = {
|
|
155703
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
155704
|
+
aqlQuery?: InputMaybe<Scalars['String']['input']>;
|
|
155705
|
+
cloudId: Scalars['ID']['input'];
|
|
155706
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
155707
|
+
shardingContext?: InputMaybe<Scalars['String']['input']>;
|
|
155708
|
+
sort?: InputMaybe<Scalars['String']['input']>;
|
|
155709
|
+
};
|
|
154287
155710
|
export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
154288
155711
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
154289
155712
|
filter?: InputMaybe<DevOpsServiceAndJiraProjectRelationshipFilter>;
|
|
@@ -154704,6 +156127,9 @@ export declare type QueryLoom_CommentArgs = {
|
|
|
154704
156127
|
export declare type QueryLoom_CommentsArgs = {
|
|
154705
156128
|
ids: Array<Scalars['ID']['input']>;
|
|
154706
156129
|
};
|
|
156130
|
+
export declare type QueryLoom_ConnectedCalendarsArgs = {
|
|
156131
|
+
siteId: Scalars['ID']['input'];
|
|
156132
|
+
};
|
|
154707
156133
|
export declare type QueryLoom_CreateSpaceArgs = {
|
|
154708
156134
|
analyticsSource?: InputMaybe<Scalars['String']['input']>;
|
|
154709
156135
|
name: Scalars['String']['input'];
|
|
@@ -154760,9 +156186,15 @@ export declare type QueryLoom_ViewableVideoArgs = {
|
|
|
154760
156186
|
feature: Scalars['String']['input'];
|
|
154761
156187
|
id: Scalars['ID']['input'];
|
|
154762
156188
|
};
|
|
156189
|
+
export declare type QueryLoom_WorkspaceArgs = {
|
|
156190
|
+
id: Scalars['ID']['input'];
|
|
156191
|
+
};
|
|
154763
156192
|
export declare type QueryLoom_WorkspaceTrendingVideosArgs = {
|
|
154764
156193
|
id: Scalars['ID']['input'];
|
|
154765
156194
|
};
|
|
156195
|
+
export declare type QueryLoom_WorkspacesArgs = {
|
|
156196
|
+
ids: Array<Scalars['ID']['input']>;
|
|
156197
|
+
};
|
|
154766
156198
|
export declare type QueryMacroBodyRendererArgs = {
|
|
154767
156199
|
adf: Scalars['String']['input'];
|
|
154768
156200
|
containedRender?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -155046,6 +156478,12 @@ export declare type QueryProjects_AllWatchedProjectUpdatesArgs = {
|
|
|
155046
156478
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
155047
156479
|
stateFilter?: InputMaybe<TownsquareUpdateStateFilter>;
|
|
155048
156480
|
};
|
|
156481
|
+
export declare type QueryProjects_AllWatchedProjectUpdatesCountArgs = {
|
|
156482
|
+
containerId: Scalars['ID']['input'];
|
|
156483
|
+
createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
156484
|
+
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
156485
|
+
stateFilter?: InputMaybe<TownsquareUpdateStateFilter>;
|
|
156486
|
+
};
|
|
155049
156487
|
export declare type QueryProjects_AppSettingsArgs = {
|
|
155050
156488
|
containerId: Scalars['ID']['input'];
|
|
155051
156489
|
};
|
|
@@ -158430,6 +159868,10 @@ export declare enum Scope {
|
|
|
158430
159868
|
ReadAppInstallation = "READ_APP_INSTALLATION",
|
|
158431
159869
|
ReadAppLogs = "READ_APP_LOGS",
|
|
158432
159870
|
ReadAppSystemToken = "READ_APP_SYSTEM_TOKEN",
|
|
159871
|
+
ReadCmdbAttributeJira = "READ_CMDB_ATTRIBUTE_JIRA",
|
|
159872
|
+
ReadCmdbObjectJira = "READ_CMDB_OBJECT_JIRA",
|
|
159873
|
+
ReadCmdbSchemaJira = "READ_CMDB_SCHEMA_JIRA",
|
|
159874
|
+
ReadCmdbTypeJira = "READ_CMDB_TYPE_JIRA",
|
|
158433
159875
|
ReadCompassAttentionItem = "READ_COMPASS_ATTENTION_ITEM",
|
|
158434
159876
|
ReadCompassComponent = "READ_COMPASS_COMPONENT",
|
|
158435
159877
|
ReadCompassEvent = "READ_COMPASS_EVENT",
|
|
@@ -158466,6 +159908,7 @@ export declare enum Scope {
|
|
|
158466
159908
|
ReadCustomer = "READ_CUSTOMER",
|
|
158467
159909
|
ReadDesign = "READ_DESIGN",
|
|
158468
159910
|
ReadDeveloperSpace = "READ_DEVELOPER_SPACE",
|
|
159911
|
+
ReadDevInfoJira = "READ_DEV_INFO_JIRA",
|
|
158469
159912
|
ReadFeedbackFeedback = "READ_FEEDBACK_FEEDBACK",
|
|
158470
159913
|
ReadInsightJpd = "READ_INSIGHT_JPD",
|
|
158471
159914
|
ReadJiraUser = "READ_JIRA_USER",
|
|
@@ -158482,6 +159925,7 @@ export declare enum Scope {
|
|
|
158482
159925
|
ReadJswSprint = "READ_JSW_SPRINT",
|
|
158483
159926
|
ReadKnowledgebase = "READ_KNOWLEDGEBASE",
|
|
158484
159927
|
ReadMe = "READ_ME",
|
|
159928
|
+
ReadMeetingLoom = "READ_MEETING_LOOM",
|
|
158485
159929
|
ReadNotifications = "READ_NOTIFICATIONS",
|
|
158486
159930
|
ReadOrganization = "READ_ORGANIZATION",
|
|
158487
159931
|
ReadOrganizationProperty = "READ_ORGANIZATION_PROPERTY",
|
|
@@ -158504,6 +159948,8 @@ export declare enum Scope {
|
|
|
158504
159948
|
ReadServicedeskOrganization = "READ_SERVICEDESK_ORGANIZATION",
|
|
158505
159949
|
ReadServicedeskProperty = "READ_SERVICEDESK_PROPERTY",
|
|
158506
159950
|
ReadServicedeskRequest = "READ_SERVICEDESK_REQUEST",
|
|
159951
|
+
ReadSettingsLoom = "READ_SETTINGS_LOOM",
|
|
159952
|
+
ReadSpaceLoom = "READ_SPACE_LOOM",
|
|
158507
159953
|
ReadStakeholderCommsAssignment = "READ_STAKEHOLDER_COMMS_ASSIGNMENT",
|
|
158508
159954
|
ReadStakeholderCommsComponent = "READ_STAKEHOLDER_COMMS_COMPONENT",
|
|
158509
159955
|
ReadStakeholderCommsIncident = "READ_STAKEHOLDER_COMMS_INCIDENT",
|
|
@@ -158518,6 +159964,7 @@ export declare enum Scope {
|
|
|
158518
159964
|
ReadTownsquareGoal = "READ_TOWNSQUARE_GOAL",
|
|
158519
159965
|
ReadTownsquareProject = "READ_TOWNSQUARE_PROJECT",
|
|
158520
159966
|
ReadTownsquareWorkspace = "READ_TOWNSQUARE_WORKSPACE",
|
|
159967
|
+
ReadVideoLoom = "READ_VIDEO_LOOM",
|
|
158521
159968
|
ReadViewJpd = "READ_VIEW_JPD",
|
|
158522
159969
|
ResolutionRead = "RESOLUTION_READ",
|
|
158523
159970
|
RovoAtlassianExternal = "ROVO_ATLASSIAN_EXTERNAL",
|
|
@@ -158559,6 +160006,7 @@ export declare enum Scope {
|
|
|
158559
160006
|
WorkflowSchemeWrite = "WORKFLOW_SCHEME_WRITE",
|
|
158560
160007
|
WorkflowWrite = "WORKFLOW_WRITE",
|
|
158561
160008
|
WriteAppDetails = "WRITE_APP_DETAILS",
|
|
160009
|
+
WriteCmdbAttributeJira = "WRITE_CMDB_ATTRIBUTE_JIRA",
|
|
158562
160010
|
WriteCompassComponent = "WRITE_COMPASS_COMPONENT",
|
|
158563
160011
|
WriteCompassEvent = "WRITE_COMPASS_EVENT",
|
|
158564
160012
|
WriteCompassMetric = "WRITE_COMPASS_METRIC",
|
|
@@ -158603,6 +160051,7 @@ export declare enum Scope {
|
|
|
158603
160051
|
WriteJswRemoteLink = "WRITE_JSW_REMOTE_LINK",
|
|
158604
160052
|
WriteJswSourceCode = "WRITE_JSW_SOURCE_CODE",
|
|
158605
160053
|
WriteJswSprint = "WRITE_JSW_SPRINT",
|
|
160054
|
+
WriteMeetingLoom = "WRITE_MEETING_LOOM",
|
|
158606
160055
|
WriteNotifications = "WRITE_NOTIFICATIONS",
|
|
158607
160056
|
WriteOrganization = "WRITE_ORGANIZATION",
|
|
158608
160057
|
WriteOrganizationProperty = "WRITE_ORGANIZATION_PROPERTY",
|
|
@@ -158622,6 +160071,8 @@ export declare enum Scope {
|
|
|
158622
160071
|
WriteServicedeskOrganization = "WRITE_SERVICEDESK_ORGANIZATION",
|
|
158623
160072
|
WriteServicedeskProperty = "WRITE_SERVICEDESK_PROPERTY",
|
|
158624
160073
|
WriteServicedeskRequest = "WRITE_SERVICEDESK_REQUEST",
|
|
160074
|
+
WriteSettingsLoom = "WRITE_SETTINGS_LOOM",
|
|
160075
|
+
WriteSpaceLoom = "WRITE_SPACE_LOOM",
|
|
158625
160076
|
WriteStakeholderCommsComponent = "WRITE_STAKEHOLDER_COMMS_COMPONENT",
|
|
158626
160077
|
WriteStakeholderCommsIncident = "WRITE_STAKEHOLDER_COMMS_INCIDENT",
|
|
158627
160078
|
WriteStakeholderCommsPage = "WRITE_STAKEHOLDER_COMMS_PAGE",
|
|
@@ -158633,6 +160084,7 @@ export declare enum Scope {
|
|
|
158633
160084
|
WriteTownsquareGoal = "WRITE_TOWNSQUARE_GOAL",
|
|
158634
160085
|
WriteTownsquareProject = "WRITE_TOWNSQUARE_PROJECT",
|
|
158635
160086
|
WriteTownsquareRelationship = "WRITE_TOWNSQUARE_RELATIONSHIP",
|
|
160087
|
+
WriteVideoLoom = "WRITE_VIDEO_LOOM",
|
|
158636
160088
|
WriteViewJpd = "WRITE_VIEW_JPD"
|
|
158637
160089
|
}
|
|
158638
160090
|
export declare type ScopeSprintIssue = {
|
|
@@ -180149,6 +181601,7 @@ export declare type SpfAsk = Node & {
|
|
|
180149
181601
|
__typename?: 'SpfAsk';
|
|
180150
181602
|
activities?: Maybe<SpfAskActivityConnection>;
|
|
180151
181603
|
comments?: Maybe<SpfAskCommentConnection>;
|
|
181604
|
+
connectedWork?: Maybe<SpfAskConnectedWorkConnection>;
|
|
180152
181605
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
180153
181606
|
createdBy?: Maybe<User>;
|
|
180154
181607
|
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
@@ -180191,6 +181644,11 @@ export declare type SpfAskCommentsArgs = {
|
|
|
180191
181644
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
180192
181645
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
180193
181646
|
};
|
|
181647
|
+
export declare type SpfAskConnectedWorkArgs = {
|
|
181648
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
181649
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
181650
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
181651
|
+
};
|
|
180194
181652
|
export declare type SpfAskFocusAreasArgs = {
|
|
180195
181653
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
180196
181654
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -180362,6 +181820,18 @@ export declare type SpfAskCommentEdge = {
|
|
|
180362
181820
|
node?: Maybe<SpfAskCommentResult>;
|
|
180363
181821
|
};
|
|
180364
181822
|
export declare type SpfAskCommentResult = QueryError | SpfAskComment;
|
|
181823
|
+
export declare type SpfAskConnectedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
181824
|
+
export declare type SpfAskConnectedWorkConnection = {
|
|
181825
|
+
__typename?: 'SpfAskConnectedWorkConnection';
|
|
181826
|
+
edges?: Maybe<Array<Maybe<SpfAskConnectedWorkEdge>>>;
|
|
181827
|
+
pageInfo: PageInfo;
|
|
181828
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
181829
|
+
};
|
|
181830
|
+
export declare type SpfAskConnectedWorkEdge = {
|
|
181831
|
+
__typename?: 'SpfAskConnectedWorkEdge';
|
|
181832
|
+
cursor: Scalars['String']['output'];
|
|
181833
|
+
node?: Maybe<SpfAskConnectedWork>;
|
|
181834
|
+
};
|
|
180365
181835
|
export declare type SpfAskConnection = {
|
|
180366
181836
|
__typename?: 'SpfAskConnection';
|
|
180367
181837
|
edges?: Maybe<Array<Maybe<SpfAskEdge>>>;
|
|
@@ -182581,6 +184051,7 @@ export declare type StudioBuild = {
|
|
|
182581
184051
|
__typename?: 'StudioBuild';
|
|
182582
184052
|
buildId?: Maybe<Scalars['UUID']['output']>;
|
|
182583
184053
|
dependencies?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
|
|
184054
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
182584
184055
|
number?: Maybe<Scalars['Int']['output']>;
|
|
182585
184056
|
overview?: Maybe<Scalars['String']['output']>;
|
|
182586
184057
|
specification?: Maybe<StudioBuildSpecification>;
|
|
@@ -182606,6 +184077,25 @@ export declare type StudioBuilds = {
|
|
|
182606
184077
|
__typename?: 'StudioBuilds';
|
|
182607
184078
|
sequence?: Maybe<Array<Maybe<StudioBuild>>>;
|
|
182608
184079
|
};
|
|
184080
|
+
export declare type StudioCreateDraftBuildDetails = {
|
|
184081
|
+
__typename?: 'StudioCreateDraftBuildDetails';
|
|
184082
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
184083
|
+
buildId?: Maybe<Scalars['UUID']['output']>;
|
|
184084
|
+
state?: Maybe<StudioBuildState>;
|
|
184085
|
+
type?: Maybe<StudioBuildType>;
|
|
184086
|
+
};
|
|
184087
|
+
export declare type StudioCreateDraftBuildInput = {
|
|
184088
|
+
buildNumber: Scalars['Int']['input'];
|
|
184089
|
+
solutionId: Scalars['UUID']['input'];
|
|
184090
|
+
solutionVersion: Scalars['Int']['input'];
|
|
184091
|
+
workspaceId: Scalars['ID']['input'];
|
|
184092
|
+
};
|
|
184093
|
+
export declare type StudioCreateDraftBuildPayload = Payload & {
|
|
184094
|
+
__typename?: 'StudioCreateDraftBuildPayload';
|
|
184095
|
+
build?: Maybe<StudioCreateDraftBuildDetails>;
|
|
184096
|
+
errors?: Maybe<Array<MutationError>>;
|
|
184097
|
+
success: Scalars['Boolean']['output'];
|
|
184098
|
+
};
|
|
182609
184099
|
export declare enum StudioPlanState {
|
|
182610
184100
|
Completed = "COMPLETED",
|
|
182611
184101
|
Disabled = "DISABLED",
|
|
@@ -183607,7 +185097,7 @@ export declare type TeamMutation = {
|
|
|
183607
185097
|
createTeam?: Maybe<TeamCreatePayload>;
|
|
183608
185098
|
createTeamType?: Maybe<TeamType>;
|
|
183609
185099
|
deleteCustomField?: Maybe<Scalars['Boolean']['output']>;
|
|
183610
|
-
deleteCustomFieldValue?: Maybe<
|
|
185100
|
+
deleteCustomFieldValue?: Maybe<TeamCustomFieldKeyValues>;
|
|
183611
185101
|
deleteTeam?: Maybe<TeamDeletePayload>;
|
|
183612
185102
|
deleteTeamType?: Maybe<TeamType>;
|
|
183613
185103
|
linkCustomFieldToOption?: Maybe<TeamCustomFieldKeyValues>;
|
|
@@ -184733,7 +186223,7 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
184733
186223
|
Create = "CREATE"
|
|
184734
186224
|
}
|
|
184735
186225
|
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;
|
|
186226
|
+
export declare type TownsquareActivityChange = TownsquareEditorsAddedChange | TownsquareEditorsRemovedChange | TownsquareFollowersAddedChange | TownsquareFollowersRemovedChange | TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalRenamedChange | TownsquareGoalRestoredChange | TownsquareStartDateAddedChange | TownsquareStartDateEditedChange | TownsquareTargetDateAddedChange | TownsquareTargetDateEditedChange | TownsquareUpdateDeletedChange;
|
|
184737
186227
|
export declare type TownsquareActivityItem = {
|
|
184738
186228
|
__typename?: 'TownsquareActivityItem';
|
|
184739
186229
|
actor?: Maybe<User>;
|
|
@@ -184856,6 +186346,9 @@ export declare type TownsquareCompletionProjectState = {
|
|
|
184856
186346
|
localizedLabel?: Maybe<TownsquareLocalizationField>;
|
|
184857
186347
|
value?: Maybe<TownsquareProjectStateValue>;
|
|
184858
186348
|
};
|
|
186349
|
+
export declare type TownsquareConnectSlackChannelInputMetadata = {
|
|
186350
|
+
fieldTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
186351
|
+
};
|
|
184859
186352
|
export declare type TownsquareContributor = {
|
|
184860
186353
|
__typename?: 'TownsquareContributor';
|
|
184861
186354
|
teamContributor?: Maybe<TownsquareTeamContributor>;
|
|
@@ -185774,6 +187267,20 @@ export declare type TownsquareGoalsClonePayload = {
|
|
|
185774
187267
|
goal?: Maybe<TownsquareGoal>;
|
|
185775
187268
|
success: Scalars['Boolean']['output'];
|
|
185776
187269
|
};
|
|
187270
|
+
export declare type TownsquareGoalsConnectSlackChannelInput = {
|
|
187271
|
+
containerId: Scalars['ID']['input'];
|
|
187272
|
+
goalId: Scalars['ID']['input'];
|
|
187273
|
+
metadata?: InputMaybe<TownsquareConnectSlackChannelInputMetadata>;
|
|
187274
|
+
slackChannelIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
187275
|
+
slackTeamId: Scalars['String']['input'];
|
|
187276
|
+
types: Array<InputMaybe<Scalars['String']['input']>>;
|
|
187277
|
+
};
|
|
187278
|
+
export declare type TownsquareGoalsConnectSlackChannelPayload = {
|
|
187279
|
+
__typename?: 'TownsquareGoalsConnectSlackChannelPayload';
|
|
187280
|
+
errors?: Maybe<Array<MutationError>>;
|
|
187281
|
+
slackChannels?: Maybe<Array<Maybe<TownsquareSlackChannelConnectionResult>>>;
|
|
187282
|
+
success: Scalars['Boolean']['output'];
|
|
187283
|
+
};
|
|
185777
187284
|
export declare type TownsquareGoalsCreateAddMetricTargetInput = {
|
|
185778
187285
|
createMetric?: InputMaybe<TownsquareGoalCreateMetricInput>;
|
|
185779
187286
|
goalId: Scalars['ID']['input'];
|
|
@@ -185922,6 +187429,16 @@ export declare type TownsquareGoalsDeleteRiskPayload = {
|
|
|
185922
187429
|
errors?: Maybe<Array<MutationError>>;
|
|
185923
187430
|
success: Scalars['Boolean']['output'];
|
|
185924
187431
|
};
|
|
187432
|
+
export declare type TownsquareGoalsDisconnectSlackChannelInput = {
|
|
187433
|
+
goalId: Scalars['ID']['input'];
|
|
187434
|
+
slackConnectionId: Scalars['String']['input'];
|
|
187435
|
+
};
|
|
187436
|
+
export declare type TownsquareGoalsDisconnectSlackChannelPayload = {
|
|
187437
|
+
__typename?: 'TownsquareGoalsDisconnectSlackChannelPayload';
|
|
187438
|
+
errors?: Maybe<Array<MutationError>>;
|
|
187439
|
+
slackConnectionId?: Maybe<Scalars['String']['output']>;
|
|
187440
|
+
success: Scalars['Boolean']['output'];
|
|
187441
|
+
};
|
|
185925
187442
|
export declare type TownsquareGoalsEditCommentInput = {
|
|
185926
187443
|
commentId: Scalars['ID']['input'];
|
|
185927
187444
|
commentText: Scalars['String']['input'];
|
|
@@ -186453,6 +187970,34 @@ export declare enum TownsquareMetricValueSortEnum {
|
|
|
186453
187970
|
TimeAsc = "TIME_ASC",
|
|
186454
187971
|
TimeDesc = "TIME_DESC"
|
|
186455
187972
|
}
|
|
187973
|
+
export declare type TownsquareMilestone = Node & {
|
|
187974
|
+
__typename?: 'TownsquareMilestone';
|
|
187975
|
+
completionDate?: Maybe<Scalars['Date']['output']>;
|
|
187976
|
+
creationDatetime?: Maybe<Scalars['DateTime']['output']>;
|
|
187977
|
+
id: Scalars['ID']['output'];
|
|
187978
|
+
lastModifiedDatetime?: Maybe<Scalars['DateTime']['output']>;
|
|
187979
|
+
status: TownsquareMilestoneStatus;
|
|
187980
|
+
targetDate: Scalars['Date']['output'];
|
|
187981
|
+
targetDateType: TownsquareTargetDateType;
|
|
187982
|
+
title: Scalars['String']['output'];
|
|
187983
|
+
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
187984
|
+
};
|
|
187985
|
+
export declare type TownsquareMilestoneConnection = {
|
|
187986
|
+
__typename?: 'TownsquareMilestoneConnection';
|
|
187987
|
+
count: Scalars['Int']['output'];
|
|
187988
|
+
edges?: Maybe<Array<Maybe<TownsquareMilestoneEdge>>>;
|
|
187989
|
+
pageInfo: PageInfo;
|
|
187990
|
+
};
|
|
187991
|
+
export declare type TownsquareMilestoneEdge = {
|
|
187992
|
+
__typename?: 'TownsquareMilestoneEdge';
|
|
187993
|
+
cursor: Scalars['String']['output'];
|
|
187994
|
+
node?: Maybe<TownsquareMilestone>;
|
|
187995
|
+
};
|
|
187996
|
+
export declare enum TownsquareMilestoneStatus {
|
|
187997
|
+
Completed = "COMPLETED",
|
|
187998
|
+
InProgress = "IN_PROGRESS",
|
|
187999
|
+
NotStarted = "NOT_STARTED"
|
|
188000
|
+
}
|
|
186456
188001
|
export declare type TownsquareMsteamsConnectedChannelChannelInfo = {
|
|
186457
188002
|
__typename?: 'TownsquareMsteamsConnectedChannelChannelInfo';
|
|
186458
188003
|
channelId?: Maybe<Scalars['String']['output']>;
|
|
@@ -186952,6 +188497,7 @@ export declare enum TownsquareProjectStateValue {
|
|
|
186952
188497
|
export declare type TownsquareProjectUpdate = Node & {
|
|
186953
188498
|
__typename?: 'TownsquareProjectUpdate';
|
|
186954
188499
|
ari: Scalars['String']['output'];
|
|
188500
|
+
changelog?: Maybe<Array<Maybe<TownsquareProjectChangelogItem>>>;
|
|
186955
188501
|
comments?: Maybe<TownsquareCommentConnection>;
|
|
186956
188502
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
186957
188503
|
creator?: Maybe<User>;
|
|
@@ -186959,6 +188505,7 @@ export declare type TownsquareProjectUpdate = Node & {
|
|
|
186959
188505
|
highlights?: Maybe<TownsquareHighlightConnection>;
|
|
186960
188506
|
id: Scalars['ID']['output'];
|
|
186961
188507
|
lastEditedBy?: Maybe<User>;
|
|
188508
|
+
milestones?: Maybe<TownsquareMilestoneConnection>;
|
|
186962
188509
|
missedUpdate: Scalars['Boolean']['output'];
|
|
186963
188510
|
newDueDate?: Maybe<TownsquareTargetDate>;
|
|
186964
188511
|
newPhase?: Maybe<TownsquareProjectPhaseDetails>;
|
|
@@ -186988,6 +188535,10 @@ export declare type TownsquareProjectUpdateHighlightsArgs = {
|
|
|
186988
188535
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
186989
188536
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
186990
188537
|
};
|
|
188538
|
+
export declare type TownsquareProjectUpdateMilestonesArgs = {
|
|
188539
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
188540
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
188541
|
+
};
|
|
186991
188542
|
export declare type TownsquareProjectUpdateUpdateNotesArgs = {
|
|
186992
188543
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
186993
188544
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -187558,6 +189109,7 @@ export declare type TownsquareQueryApi = {
|
|
|
187558
189109
|
goalTypesByAri?: Maybe<Array<Maybe<TownsquareGoalType>>>;
|
|
187559
189110
|
goalUpdatesByAris?: Maybe<Array<Maybe<TownsquareGoalUpdate>>>;
|
|
187560
189111
|
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
189112
|
+
milestonesByAri?: Maybe<Array<Maybe<TownsquareMilestone>>>;
|
|
187561
189113
|
project?: Maybe<TownsquareProject>;
|
|
187562
189114
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
187563
189115
|
projectTql?: Maybe<TownsquareProjectConnection>;
|
|
@@ -187620,6 +189172,9 @@ export declare type TownsquareQueryApiGoalUpdatesByArisArgs = {
|
|
|
187620
189172
|
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
187621
189173
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
187622
189174
|
};
|
|
189175
|
+
export declare type TownsquareQueryApiMilestonesByAriArgs = {
|
|
189176
|
+
aris: Array<Scalars['ID']['input']>;
|
|
189177
|
+
};
|
|
187623
189178
|
export declare type TownsquareQueryApiProjectArgs = {
|
|
187624
189179
|
ari: Scalars['String']['input'];
|
|
187625
189180
|
};
|
|
@@ -187724,6 +189279,24 @@ export declare type TownsquareSlackChannel = {
|
|
|
187724
189279
|
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
187725
189280
|
slackTeamName?: Maybe<Scalars['String']['output']>;
|
|
187726
189281
|
};
|
|
189282
|
+
export declare type TownsquareSlackChannelConnectionResult = {
|
|
189283
|
+
__typename?: 'TownsquareSlackChannelConnectionResult';
|
|
189284
|
+
creationDate?: Maybe<Scalars['String']['output']>;
|
|
189285
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
189286
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
189287
|
+
metadata?: Maybe<TownsquareSlackChannelMetadata>;
|
|
189288
|
+
private?: Maybe<Scalars['Boolean']['output']>;
|
|
189289
|
+
resourceId?: Maybe<Scalars['String']['output']>;
|
|
189290
|
+
slackChannelId?: Maybe<Scalars['String']['output']>;
|
|
189291
|
+
slackChannelName?: Maybe<Scalars['String']['output']>;
|
|
189292
|
+
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
189293
|
+
subscriberId?: Maybe<Scalars['String']['output']>;
|
|
189294
|
+
types?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
189295
|
+
};
|
|
189296
|
+
export declare type TownsquareSlackChannelMetadata = {
|
|
189297
|
+
__typename?: 'TownsquareSlackChannelMetadata';
|
|
189298
|
+
fieldTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
189299
|
+
};
|
|
187727
189300
|
export declare type TownsquareSlackConnection = {
|
|
187728
189301
|
__typename?: 'TownsquareSlackConnection';
|
|
187729
189302
|
channel?: Maybe<TownsquareSlackChannel>;
|
|
@@ -187818,6 +189391,11 @@ export declare type TownsquareTargetDateAddedChange = {
|
|
|
187818
189391
|
__typename?: 'TownsquareTargetDateAddedChange';
|
|
187819
189392
|
newTargetDate?: Maybe<TownsquareTargetDate>;
|
|
187820
189393
|
};
|
|
189394
|
+
export declare type TownsquareTargetDateEditedChange = {
|
|
189395
|
+
__typename?: 'TownsquareTargetDateEditedChange';
|
|
189396
|
+
newTargetDate?: Maybe<TownsquareTargetDate>;
|
|
189397
|
+
oldTargetDate?: Maybe<TownsquareTargetDate>;
|
|
189398
|
+
};
|
|
187821
189399
|
export declare type TownsquareTargetDateInput = {
|
|
187822
189400
|
confidence?: InputMaybe<TownsquareTargetDateType>;
|
|
187823
189401
|
date?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -188866,6 +190444,10 @@ export declare type TrelloBoardId = TrelloBaseBoardId & {
|
|
|
188866
190444
|
id: Scalars['ID']['output'];
|
|
188867
190445
|
objectId: Scalars['ID']['output'];
|
|
188868
190446
|
};
|
|
190447
|
+
export declare enum TrelloBoardInvitePermissionsInput {
|
|
190448
|
+
Admins = "ADMINS",
|
|
190449
|
+
Members = "MEMBERS"
|
|
190450
|
+
}
|
|
188869
190451
|
export declare type TrelloBoardLabelsLimits = {
|
|
188870
190452
|
__typename?: 'TrelloBoardLabelsLimits';
|
|
188871
190453
|
perBoard?: Maybe<TrelloLimitProps>;
|
|
@@ -190159,6 +191741,7 @@ export declare type TrelloDeleteCustomFieldInput = {
|
|
|
190159
191741
|
};
|
|
190160
191742
|
export declare type TrelloDeleteCustomFieldPayload = Payload & {
|
|
190161
191743
|
__typename?: 'TrelloDeleteCustomFieldPayload';
|
|
191744
|
+
customField?: Maybe<TrelloCustomFieldDeleted>;
|
|
190162
191745
|
errors?: Maybe<Array<MutationError>>;
|
|
190163
191746
|
success: Scalars['Boolean']['output'];
|
|
190164
191747
|
};
|
|
@@ -190506,7 +192089,7 @@ export declare type TrelloLabelConnectionUpdated = {
|
|
|
190506
192089
|
};
|
|
190507
192090
|
export declare type TrelloLabelDeleted = {
|
|
190508
192091
|
__typename?: 'TrelloLabelDeleted';
|
|
190509
|
-
id
|
|
192092
|
+
id: Scalars['ID']['output'];
|
|
190510
192093
|
};
|
|
190511
192094
|
export declare type TrelloLabelEdge = {
|
|
190512
192095
|
__typename?: 'TrelloLabelEdge';
|
|
@@ -191031,6 +192614,7 @@ export declare type TrelloMutationApi = {
|
|
|
191031
192614
|
updateBoardBackground?: Maybe<TrelloUpdateBoardBackgroundPayload>;
|
|
191032
192615
|
updateBoardCommentingPermissions?: Maybe<TrelloUpdateBoardCommentingPermissionsPayload>;
|
|
191033
192616
|
updateBoardDescription?: Maybe<TrelloUpdateBoardDescriptionPayload>;
|
|
192617
|
+
updateBoardInvitePermissions?: Maybe<TrelloUpdateBoardInvitePermissionsPayload>;
|
|
191034
192618
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
191035
192619
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
191036
192620
|
updateBoardStarPosition?: Maybe<TrelloUpdateBoardStarPositionPayload>;
|
|
@@ -191244,6 +192828,9 @@ export declare type TrelloMutationApiUpdateBoardCommentingPermissionsArgs = {
|
|
|
191244
192828
|
export declare type TrelloMutationApiUpdateBoardDescriptionArgs = {
|
|
191245
192829
|
input: TrelloUpdateBoardDescriptionInput;
|
|
191246
192830
|
};
|
|
192831
|
+
export declare type TrelloMutationApiUpdateBoardInvitePermissionsArgs = {
|
|
192832
|
+
input: TrelloUpdateBoardInvitePermissionsInput;
|
|
192833
|
+
};
|
|
191247
192834
|
export declare type TrelloMutationApiUpdateBoardIsTemplateArgs = {
|
|
191248
192835
|
input: TrelloUpdateBoardIsTemplateInput;
|
|
191249
192836
|
};
|
|
@@ -192061,6 +193648,7 @@ export declare type TrelloProposedEvent = {
|
|
|
192061
193648
|
cards?: Maybe<TrelloProposedEventCardConnection>;
|
|
192062
193649
|
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
192063
193650
|
objectId: Scalars['ID']['output'];
|
|
193651
|
+
source?: Maybe<TrelloProposedEventSource>;
|
|
192064
193652
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
192065
193653
|
};
|
|
192066
193654
|
export declare type TrelloProposedEventCardsArgs = {
|
|
@@ -192106,11 +193694,17 @@ export declare type TrelloProposedEventInboxCardUpdated = TrelloProposedEventBas
|
|
|
192106
193694
|
name?: Maybe<Scalars['String']['output']>;
|
|
192107
193695
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
192108
193696
|
};
|
|
193697
|
+
export declare enum TrelloProposedEventSource {
|
|
193698
|
+
Manual = "MANUAL",
|
|
193699
|
+
PlanMyDay = "PLAN_MY_DAY",
|
|
193700
|
+
Proactive = "PROACTIVE"
|
|
193701
|
+
}
|
|
192109
193702
|
export declare type TrelloProposedEventUpdated = {
|
|
192110
193703
|
__typename?: 'TrelloProposedEventUpdated';
|
|
192111
193704
|
cards?: Maybe<TrelloProposedEventCardConnectionUpdated>;
|
|
192112
193705
|
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
192113
193706
|
objectId: Scalars['ID']['output'];
|
|
193707
|
+
source?: Maybe<TrelloProposedEventSource>;
|
|
192114
193708
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
192115
193709
|
};
|
|
192116
193710
|
export declare type TrelloProviderCalendarDeleted = {
|
|
@@ -192744,6 +194338,16 @@ export declare type TrelloUpdateBoardDescriptionPayload = Payload & {
|
|
|
192744
194338
|
errors?: Maybe<Array<MutationError>>;
|
|
192745
194339
|
success: Scalars['Boolean']['output'];
|
|
192746
194340
|
};
|
|
194341
|
+
export declare type TrelloUpdateBoardInvitePermissionsInput = {
|
|
194342
|
+
boardId: Scalars['ID']['input'];
|
|
194343
|
+
invitations: TrelloBoardInvitePermissionsInput;
|
|
194344
|
+
};
|
|
194345
|
+
export declare type TrelloUpdateBoardInvitePermissionsPayload = Payload & {
|
|
194346
|
+
__typename?: 'TrelloUpdateBoardInvitePermissionsPayload';
|
|
194347
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194348
|
+
errors?: Maybe<Array<MutationError>>;
|
|
194349
|
+
success: Scalars['Boolean']['output'];
|
|
194350
|
+
};
|
|
192747
194351
|
export declare type TrelloUpdateBoardIsTemplateInput = {
|
|
192748
194352
|
boardId: Scalars['ID']['input'];
|
|
192749
194353
|
value: Scalars['Boolean']['input'];
|
|
@@ -193872,8 +195476,12 @@ export declare type UnifiedCachingQueryGetSimpleCacheKeyArgs = {
|
|
|
193872
195476
|
};
|
|
193873
195477
|
export declare type UnifiedChampionConsentInput = {
|
|
193874
195478
|
aaid: Scalars['String']['input'];
|
|
195479
|
+
consentNda: Scalars['Boolean']['input'];
|
|
195480
|
+
consentPrivacyPolicy: Scalars['Boolean']['input'];
|
|
193875
195481
|
consentProgramAgreement: Scalars['Boolean']['input'];
|
|
193876
|
-
consentSuccessChampionAgreement
|
|
195482
|
+
consentSuccessChampionAgreement?: InputMaybe<Scalars['Boolean']['input']>;
|
|
195483
|
+
preferredEmailId?: InputMaybe<Scalars['String']['input']>;
|
|
195484
|
+
primaryEmailId?: InputMaybe<Scalars['String']['input']>;
|
|
193877
195485
|
};
|
|
193878
195486
|
export declare type UnifiedChampionConsentMutation = {
|
|
193879
195487
|
__typename?: 'UnifiedChampionConsentMutation';
|
|
@@ -195784,6 +197392,7 @@ export declare type UserOnboardingState = {
|
|
|
195784
197392
|
};
|
|
195785
197393
|
export declare type UserPreferences = {
|
|
195786
197394
|
__typename?: 'UserPreferences';
|
|
197395
|
+
commentsPanelSorting: ConfluenceCommentsPanelSorting;
|
|
195787
197396
|
confluenceEditorSettings?: Maybe<ConfluenceEditorSettings>;
|
|
195788
197397
|
contextualEmojiOptOut?: Maybe<Scalars['Boolean']['output']>;
|
|
195789
197398
|
endOfPageRecommendationsOptInStatus: Scalars['String']['output'];
|
|
@@ -195836,6 +197445,7 @@ export declare type UserPreferencesSpaceViewsPersistenceArgs = {
|
|
|
195836
197445
|
export declare type UserPreferencesInput = {
|
|
195837
197446
|
addUserSpaceNotifiedChangeBoardingOfExternalCollab?: InputMaybe<Scalars['String']['input']>;
|
|
195838
197447
|
addUserSpaceNotifiedOfExternalCollab?: InputMaybe<Scalars['String']['input']>;
|
|
197448
|
+
commentsPanelSorting?: InputMaybe<ConfluenceCommentsPanelSorting>;
|
|
195839
197449
|
confluenceEditorSettingsInput?: InputMaybe<ConfluenceEditorSettingsInput>;
|
|
195840
197450
|
contextualEmojiOptOut?: InputMaybe<Scalars['Boolean']['input']>;
|
|
195841
197451
|
endOfPageRecommendationsOptInStatus?: InputMaybe<Scalars['String']['input']>;
|