@forge/cli-shared 8.17.1-next.4-experimental-13a01c2 → 8.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -2
- package/out/graphql/graphql-types.d.ts +1843 -126
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +176 -43
- package/out/service/statsig-service.d.ts +2 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +9 -0
- package/out/ui/text.d.ts +5 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +7 -0
- 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
|
};
|
|
@@ -1182,6 +1206,7 @@ export declare type AvpHotTierFilterConfigInput = {
|
|
|
1182
1206
|
semanticModel?: InputMaybe<Scalars['String']['input']>;
|
|
1183
1207
|
};
|
|
1184
1208
|
export declare enum AvpIntegrationId {
|
|
1209
|
+
AssetsVertical = "ASSETS_VERTICAL",
|
|
1185
1210
|
JiraSummaryPage = "JIRA_SUMMARY_PAGE",
|
|
1186
1211
|
JsmAssets = "JSM_ASSETS",
|
|
1187
1212
|
JsmSummaryPage = "JSM_SUMMARY_PAGE",
|
|
@@ -2139,7 +2164,7 @@ export declare type ActivityObject = {
|
|
|
2139
2164
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
2140
2165
|
type: Scalars['String']['output'];
|
|
2141
2166
|
};
|
|
2142
|
-
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;
|
|
2143
2168
|
export declare enum ActivityObjectType {
|
|
2144
2169
|
Blogpost = "BLOGPOST",
|
|
2145
2170
|
Comment = "COMMENT",
|
|
@@ -2188,14 +2213,6 @@ export declare type AddAppContributorResponsePayload = Payload & {
|
|
|
2188
2213
|
errors?: Maybe<Array<MutationError>>;
|
|
2189
2214
|
success: Scalars['Boolean']['output'];
|
|
2190
2215
|
};
|
|
2191
|
-
export declare type AddBetaUserAsSiteCreatorInput = {
|
|
2192
|
-
cloudID: Scalars['String']['input'];
|
|
2193
|
-
};
|
|
2194
|
-
export declare type AddBetaUserAsSiteCreatorPayload = Payload & {
|
|
2195
|
-
__typename?: 'AddBetaUserAsSiteCreatorPayload';
|
|
2196
|
-
errors?: Maybe<Array<MutationError>>;
|
|
2197
|
-
success: Scalars['Boolean']['output'];
|
|
2198
|
-
};
|
|
2199
2216
|
export declare type AddCompassComponentLabelsInput = {
|
|
2200
2217
|
componentId: Scalars['ID']['input'];
|
|
2201
2218
|
labelNames: Array<Scalars['String']['input']>;
|
|
@@ -2373,6 +2390,10 @@ export declare type AdminAppModuleEdge = {
|
|
|
2373
2390
|
cursor: Scalars['String']['output'];
|
|
2374
2391
|
node: AdminAppModule;
|
|
2375
2392
|
};
|
|
2393
|
+
export declare type AdminAppModulesKey = {
|
|
2394
|
+
ari?: InputMaybe<Scalars['ID']['input']>;
|
|
2395
|
+
resourceOwner?: InputMaybe<Scalars['String']['input']>;
|
|
2396
|
+
};
|
|
2376
2397
|
export declare enum AdminAppParentType {
|
|
2377
2398
|
Site = "SITE",
|
|
2378
2399
|
Unit = "UNIT"
|
|
@@ -2421,6 +2442,7 @@ export declare type AdminAuditLogDetailedEventLocation = {
|
|
|
2421
2442
|
export declare type AdminAuditLogEvent = {
|
|
2422
2443
|
__typename?: 'AdminAuditLogEvent';
|
|
2423
2444
|
action: Scalars['String']['output'];
|
|
2445
|
+
actor?: Maybe<AdminAuditLogEventActor>;
|
|
2424
2446
|
containers?: Maybe<Array<Maybe<AdminAuditLogEventContainer>>>;
|
|
2425
2447
|
context?: Maybe<Array<Maybe<AdminAuditLogEventContext>>>;
|
|
2426
2448
|
correlationId?: Maybe<Scalars['String']['output']>;
|
|
@@ -2433,6 +2455,28 @@ export declare type AdminAuditLogEventAction = {
|
|
|
2433
2455
|
id: Scalars['String']['output'];
|
|
2434
2456
|
name: Scalars['String']['output'];
|
|
2435
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
|
+
};
|
|
2436
2480
|
export declare type AdminAuditLogEventConnection = {
|
|
2437
2481
|
__typename?: 'AdminAuditLogEventConnection';
|
|
2438
2482
|
edges?: Maybe<Array<AdminAuditLogEventEdge>>;
|
|
@@ -2511,6 +2555,12 @@ export declare enum AdminAuditLogEventMessageFormat {
|
|
|
2511
2555
|
Adf = "ADF",
|
|
2512
2556
|
Simple = "SIMPLE"
|
|
2513
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
|
+
};
|
|
2514
2564
|
export declare type AdminAuditLogFeature = {
|
|
2515
2565
|
__typename?: 'AdminAuditLogFeature';
|
|
2516
2566
|
allInclusive?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2536,6 +2586,13 @@ export declare type AdminAuditLogProductMapping = {
|
|
|
2536
2586
|
app: Scalars['String']['output'];
|
|
2537
2587
|
prefixes: Array<Scalars['String']['output']>;
|
|
2538
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
|
+
};
|
|
2539
2596
|
export declare type AdminAuthPolicyConfig = {
|
|
2540
2597
|
__typename?: 'AdminAuthPolicyConfig';
|
|
2541
2598
|
apiToken?: Maybe<AdminApiTokenConfig>;
|
|
@@ -3068,6 +3125,11 @@ export declare type AdminOrgPolicyEdge = {
|
|
|
3068
3125
|
cursor: Scalars['String']['output'];
|
|
3069
3126
|
node: AdminOrgPolicy;
|
|
3070
3127
|
};
|
|
3128
|
+
export declare type AdminOrgUnitsSettings = {
|
|
3129
|
+
__typename?: 'AdminOrgUnitsSettings';
|
|
3130
|
+
unitsCreateAvailable: Scalars['Boolean']['output'];
|
|
3131
|
+
unitsEligibilityState: AdminUnitsEligibilityState;
|
|
3132
|
+
};
|
|
3071
3133
|
export declare type AdminOrganization = {
|
|
3072
3134
|
__typename?: 'AdminOrganization';
|
|
3073
3135
|
id: Scalars['ID']['output'];
|
|
@@ -3497,6 +3559,11 @@ export declare enum AdminUnitValidateNameErrorEnum {
|
|
|
3497
3559
|
NameConflict = "NAME_CONFLICT",
|
|
3498
3560
|
NameInvalid = "NAME_INVALID"
|
|
3499
3561
|
}
|
|
3562
|
+
export declare enum AdminUnitsEligibilityState {
|
|
3563
|
+
UnitsActivated = "UNITS_ACTIVATED",
|
|
3564
|
+
UnitsEligible = "UNITS_ELIGIBLE",
|
|
3565
|
+
UnitsNotEligible = "UNITS_NOT_ELIGIBLE"
|
|
3566
|
+
}
|
|
3500
3567
|
export declare type AdminUnitsForOrgSearchInput = {
|
|
3501
3568
|
name: Scalars['String']['input'];
|
|
3502
3569
|
};
|
|
@@ -3755,7 +3822,9 @@ export declare type AgentAiPanelChangesFromLastVisitArgs = {
|
|
|
3755
3822
|
export declare type AgentAiPanelRefreshPayload = {
|
|
3756
3823
|
__typename?: 'AgentAIPanelRefreshPayload';
|
|
3757
3824
|
changesFromLastVisit?: Maybe<Scalars['String']['output']>;
|
|
3825
|
+
nextActions?: Maybe<AgentAiContextPanelResponse>;
|
|
3758
3826
|
shortSummary?: Maybe<Scalars['String']['output']>;
|
|
3827
|
+
tldrGenerationTime?: Maybe<Scalars['Long']['output']>;
|
|
3759
3828
|
};
|
|
3760
3829
|
export declare type AgentAiPanelRefreshPayloadChangesFromLastVisitArgs = {
|
|
3761
3830
|
lastActivityTime?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -3799,6 +3868,10 @@ export declare type AgentStudio3pKnowledgeFilter = {
|
|
|
3799
3868
|
export declare type AgentStudio3pKnowledgeFilterInput = {
|
|
3800
3869
|
rawFilter?: InputMaybe<Scalars['String']['input']>;
|
|
3801
3870
|
};
|
|
3871
|
+
export declare enum AgentStudioAccessIdentityMode {
|
|
3872
|
+
Agent = "AGENT",
|
|
3873
|
+
User = "USER"
|
|
3874
|
+
}
|
|
3802
3875
|
export declare type AgentStudioAction = {
|
|
3803
3876
|
__typename?: 'AgentStudioAction';
|
|
3804
3877
|
actionKey: Scalars['String']['output'];
|
|
@@ -3868,6 +3941,7 @@ export declare type AgentStudioAgent = {
|
|
|
3868
3941
|
permissions?: Maybe<AgentStudioAgentPermissions>;
|
|
3869
3942
|
scenarioList?: Maybe<AgentStudioScenariosResult>;
|
|
3870
3943
|
scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
|
|
3944
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
3871
3945
|
version?: Maybe<AgentStudioAgentVersion>;
|
|
3872
3946
|
};
|
|
3873
3947
|
export declare type AgentStudioAgentScenarioListArgs = {
|
|
@@ -3910,6 +3984,7 @@ export declare type AgentStudioAgentQueryInput = {
|
|
|
3910
3984
|
onlyEditableAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3911
3985
|
onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3912
3986
|
onlyMyAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3987
|
+
onlyPublishedEditableAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3913
3988
|
onlyTemplateAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3914
3989
|
onlyUnpublishedAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3915
3990
|
onlyVerifiedAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -3962,8 +4037,9 @@ export declare type AgentStudioAgentsConnection = {
|
|
|
3962
4037
|
edges: Array<AgentStudioAgentEdge>;
|
|
3963
4038
|
pageInfo: PageInfo;
|
|
3964
4039
|
};
|
|
3965
|
-
export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
4040
|
+
export declare type AgentStudioAssistant = AgentStudioAgent & AgentStudioBaseConfiguration & Node & {
|
|
3966
4041
|
__typename?: 'AgentStudioAssistant';
|
|
4042
|
+
accessIdentityMode?: Maybe<AgentStudioAccessIdentityMode>;
|
|
3967
4043
|
actions?: Maybe<AgentStudioActionConfiguration>;
|
|
3968
4044
|
agentSchemaNumber?: Maybe<Scalars['Int']['output']>;
|
|
3969
4045
|
authoringTeam?: Maybe<TeamV2>;
|
|
@@ -3988,12 +4064,18 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
3988
4064
|
isPublished: Scalars['Boolean']['output'];
|
|
3989
4065
|
isVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
3990
4066
|
isWebSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
4067
|
+
isWebSearchEnabledForOrganization?: Maybe<Scalars['Boolean']['output']>;
|
|
3991
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>>>;
|
|
3992
4073
|
name?: Maybe<Scalars['String']['output']>;
|
|
3993
4074
|
permissions?: Maybe<AgentStudioAgentPermissions>;
|
|
3994
4075
|
scenarioList?: Maybe<AgentStudioScenariosResult>;
|
|
3995
4076
|
scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
|
|
3996
4077
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
4078
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
3997
4079
|
version?: Maybe<AgentStudioAgentVersion>;
|
|
3998
4080
|
};
|
|
3999
4081
|
export declare type AgentStudioAssistantScenarioListArgs = {
|
|
@@ -4029,9 +4111,10 @@ export declare type AgentStudioAssistantMessageEdge = {
|
|
|
4029
4111
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
4030
4112
|
node?: Maybe<AgentStudioAssistantMessage>;
|
|
4031
4113
|
};
|
|
4032
|
-
export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node & {
|
|
4114
|
+
export declare type AgentStudioAssistantScenario = AgentStudioBaseConfiguration & AgentStudioScenario & Node & {
|
|
4033
4115
|
__typename?: 'AgentStudioAssistantScenario';
|
|
4034
4116
|
actions?: Maybe<Array<AgentStudioAction>>;
|
|
4117
|
+
agenticSkillIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4035
4118
|
creator?: Maybe<User>;
|
|
4036
4119
|
creatorId: Scalars['ID']['output'];
|
|
4037
4120
|
id: Scalars['ID']['output'];
|
|
@@ -4056,6 +4139,17 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
4056
4139
|
export declare type AgentStudioAuthoringTeamInput = {
|
|
4057
4140
|
authoringTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
4058
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
|
+
};
|
|
4059
4153
|
export declare type AgentStudioBatchEvalConversationFilterInput = {
|
|
4060
4154
|
jobRunId?: InputMaybe<Scalars['ID']['input']>;
|
|
4061
4155
|
};
|
|
@@ -4214,10 +4308,12 @@ export declare type AgentStudioCreateAgentInput = {
|
|
|
4214
4308
|
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
4215
4309
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4216
4310
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
4311
|
+
isWebSearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4217
4312
|
jiraProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
4218
4313
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
4219
4314
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4220
4315
|
scenarios?: InputMaybe<Array<InputMaybe<AgentStudioScenarioInput>>>;
|
|
4316
|
+
tools?: InputMaybe<Array<AgentStudioToolInput>>;
|
|
4221
4317
|
widgets?: InputMaybe<Array<InputMaybe<AgentStudioWidgetInput>>>;
|
|
4222
4318
|
};
|
|
4223
4319
|
export declare type AgentStudioCreateAgentPayload = Payload & {
|
|
@@ -4247,6 +4343,7 @@ export declare type AgentStudioCreateBatchEvaluationJobPayload = Payload & {
|
|
|
4247
4343
|
};
|
|
4248
4344
|
export declare type AgentStudioCreateScenarioInput = {
|
|
4249
4345
|
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
4346
|
+
agenticSkills?: InputMaybe<Array<AgentStudioSkillInput>>;
|
|
4250
4347
|
containerId: Scalars['ID']['input'];
|
|
4251
4348
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
4252
4349
|
invocationDescription?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4673,6 +4770,7 @@ export declare enum AgentStudioResolutionStatus {
|
|
|
4673
4770
|
}
|
|
4674
4771
|
export declare type AgentStudioScenario = {
|
|
4675
4772
|
actions?: Maybe<Array<AgentStudioAction>>;
|
|
4773
|
+
agenticSkillIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4676
4774
|
creatorId: Scalars['ID']['output'];
|
|
4677
4775
|
id: Scalars['ID']['output'];
|
|
4678
4776
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
@@ -4695,6 +4793,7 @@ export declare type AgentStudioScenario = {
|
|
|
4695
4793
|
};
|
|
4696
4794
|
export declare type AgentStudioScenarioInput = {
|
|
4697
4795
|
actions?: InputMaybe<Array<InputMaybe<AgentStudioActionInput>>>;
|
|
4796
|
+
agenticSkills?: InputMaybe<Array<AgentStudioSkillInput>>;
|
|
4698
4797
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
4699
4798
|
invocationDescription?: InputMaybe<Scalars['String']['input']>;
|
|
4700
4799
|
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -4777,6 +4876,7 @@ export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
|
|
|
4777
4876
|
permissions?: Maybe<AgentStudioAgentPermissions>;
|
|
4778
4877
|
scenarioList?: Maybe<AgentStudioScenariosResult>;
|
|
4779
4878
|
scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
|
|
4879
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
4780
4880
|
version?: Maybe<AgentStudioAgentVersion>;
|
|
4781
4881
|
};
|
|
4782
4882
|
export declare type AgentStudioServiceAgentScenarioListArgs = {
|
|
@@ -4796,6 +4896,9 @@ export declare type AgentStudioSetWidgetByContainerAriPayload = Payload & {
|
|
|
4796
4896
|
errors?: Maybe<Array<MutationError>>;
|
|
4797
4897
|
success: Scalars['Boolean']['output'];
|
|
4798
4898
|
};
|
|
4899
|
+
export declare type AgentStudioSkillInput = {
|
|
4900
|
+
skillAri: Scalars['ID']['input'];
|
|
4901
|
+
};
|
|
4799
4902
|
export declare type AgentStudioSlackChannel = AgentStudioChannel & {
|
|
4800
4903
|
__typename?: 'AgentStudioSlackChannel';
|
|
4801
4904
|
channels?: Maybe<Array<AgentStudioSlackChannelDetails>>;
|
|
@@ -5131,6 +5234,7 @@ export declare type AgentStudioUpdateKnowledgeGapSuggestionArticleStatusPayload
|
|
|
5131
5234
|
};
|
|
5132
5235
|
export declare type AgentStudioUpdateScenarioInput = {
|
|
5133
5236
|
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
5237
|
+
agenticSkills?: InputMaybe<Array<AgentStudioSkillInput>>;
|
|
5134
5238
|
containerId: Scalars['ID']['input'];
|
|
5135
5239
|
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
5136
5240
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5620,13 +5724,15 @@ export declare type AgentWorkspaceCatalogsInput = {
|
|
|
5620
5724
|
export declare type AgentWorkspaceCreateAndLinkTeamsInput = {
|
|
5621
5725
|
groups: Array<AgentWorkspaceCreateTeamFromGroupInput>;
|
|
5622
5726
|
projectARI: Scalars['ID']['input'];
|
|
5623
|
-
|
|
5727
|
+
teamARIs: Array<Scalars['ID']['input']>;
|
|
5624
5728
|
};
|
|
5625
5729
|
export declare type AgentWorkspaceCreateAndLinkTeamsPayload = {
|
|
5626
5730
|
__typename?: 'AgentWorkspaceCreateAndLinkTeamsPayload';
|
|
5627
5731
|
createdTeamIds: Array<Scalars['ID']['output']>;
|
|
5628
5732
|
linkedTeamIds: Array<Scalars['ID']['output']>;
|
|
5629
5733
|
success: Scalars['Boolean']['output'];
|
|
5734
|
+
teamCreationFailures: Array<AgentWorkspaceTeamCreationFailure>;
|
|
5735
|
+
teamLinkFailures: Array<AgentWorkspaceTeamLinkFailure>;
|
|
5630
5736
|
};
|
|
5631
5737
|
export declare type AgentWorkspaceCreateCatalogConfigInput = {
|
|
5632
5738
|
catalogId: Scalars['ID']['input'];
|
|
@@ -5687,7 +5793,7 @@ export declare type AgentWorkspaceCreateSchedulePayload = {
|
|
|
5687
5793
|
success: Scalars['Boolean']['output'];
|
|
5688
5794
|
};
|
|
5689
5795
|
export declare type AgentWorkspaceCreateTeamFromGroupInput = {
|
|
5690
|
-
|
|
5796
|
+
groupAri: Scalars['ID']['input'];
|
|
5691
5797
|
groupName: Scalars['String']['input'];
|
|
5692
5798
|
};
|
|
5693
5799
|
export declare enum AgentWorkspaceDayOfWeek {
|
|
@@ -6239,6 +6345,16 @@ export declare type AgentWorkspaceSubscribeSkillPayload = {
|
|
|
6239
6345
|
projectSkill?: Maybe<AgentWorkspaceProjectSkill>;
|
|
6240
6346
|
success: Scalars['Boolean']['output'];
|
|
6241
6347
|
};
|
|
6348
|
+
export declare type AgentWorkspaceTeamCreationFailure = {
|
|
6349
|
+
__typename?: 'AgentWorkspaceTeamCreationFailure';
|
|
6350
|
+
groupAri: Scalars['ID']['output'];
|
|
6351
|
+
message: Scalars['String']['output'];
|
|
6352
|
+
};
|
|
6353
|
+
export declare type AgentWorkspaceTeamLinkFailure = {
|
|
6354
|
+
__typename?: 'AgentWorkspaceTeamLinkFailure';
|
|
6355
|
+
message: Scalars['String']['output'];
|
|
6356
|
+
teamId: Scalars['ID']['output'];
|
|
6357
|
+
};
|
|
6242
6358
|
export declare type AgentWorkspaceTeamSchedules = {
|
|
6243
6359
|
__typename?: 'AgentWorkspaceTeamSchedules';
|
|
6244
6360
|
hasSchedules: Scalars['Boolean']['output'];
|
|
@@ -8274,7 +8390,7 @@ export declare type AssetsAriAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
8274
8390
|
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
8275
8391
|
value?: Maybe<Array<AssetsAriAttributeValue>>;
|
|
8276
8392
|
};
|
|
8277
|
-
export declare type AssetsAriAttributeValue = AppUser | AtlassianAccountUser | CompassComponent | CustomerUser | IdentityGroup | TeamV2;
|
|
8393
|
+
export declare type AssetsAriAttributeValue = AppUser | AtlassianAccountUser | CompassComponent | CustomerUser | IdentityGroup | JiraProject | OpsgenieTeam | TeamV2;
|
|
8278
8394
|
export declare type AssetsAttributeOnObject = {
|
|
8279
8395
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8280
8396
|
id: Scalars['ID']['output'];
|
|
@@ -8580,6 +8696,18 @@ export declare type AssetsDmCreateDefaultCleansingRuleResponse = {
|
|
|
8580
8696
|
isSuccessful: Scalars['Boolean']['output'];
|
|
8581
8697
|
message?: Maybe<Scalars['String']['output']>;
|
|
8582
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
|
+
};
|
|
8583
8711
|
export declare enum AssetsDmDataDictionaryColumnName {
|
|
8584
8712
|
ComputeDictionaryId = "computeDictionaryId",
|
|
8585
8713
|
DestinationObjectAttributeId = "destinationObjectAttributeId",
|
|
@@ -10587,6 +10715,7 @@ export declare type AssetsObjectAqlResult = {
|
|
|
10587
10715
|
export declare type AssetsObjectAttribute = AssetsObjectTypeAttribute & {
|
|
10588
10716
|
__typename?: 'AssetsObjectAttribute';
|
|
10589
10717
|
id: Scalars['ID']['output'];
|
|
10718
|
+
includeChildObjectTypes?: Maybe<Scalars['Boolean']['output']>;
|
|
10590
10719
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
10591
10720
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
10592
10721
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -10863,6 +10992,10 @@ export declare type AssetsVerticalAsyncBundleActionErrorResponse = {
|
|
|
10863
10992
|
errors?: Maybe<Array<AssetsVerticalAsyncBundleActionError>>;
|
|
10864
10993
|
};
|
|
10865
10994
|
export declare type AssetsVerticalAsyncBundleActionResult = AssetsVerticalAsyncBundleActionErrorResponse | AssetsVerticalAsyncTaskPayload;
|
|
10995
|
+
export declare type AssetsVerticalAsyncTaskInfo = {
|
|
10996
|
+
__typename?: 'AssetsVerticalAsyncTaskInfo';
|
|
10997
|
+
id: Scalars['ID']['output'];
|
|
10998
|
+
};
|
|
10866
10999
|
export declare type AssetsVerticalAsyncTaskPayload = Payload & {
|
|
10867
11000
|
__typename?: 'AssetsVerticalAsyncTaskPayload';
|
|
10868
11001
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -10889,6 +11022,19 @@ export declare type AssetsVerticalAttributeValuesSuccess = {
|
|
|
10889
11022
|
__typename?: 'AssetsVerticalAttributeValuesSuccess';
|
|
10890
11023
|
attributeValues?: Maybe<Array<Maybe<AssetsVerticalObjectAttributeValue>>>;
|
|
10891
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
|
+
};
|
|
10892
11038
|
export declare type AssetsVerticalAvatar = {
|
|
10893
11039
|
__typename?: 'AssetsVerticalAvatar';
|
|
10894
11040
|
objectId?: Maybe<Scalars['String']['output']>;
|
|
@@ -10913,6 +11059,12 @@ export declare type AssetsVerticalBundleActionErrorExtension = MutationErrorExte
|
|
|
10913
11059
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
10914
11060
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
10915
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;
|
|
10916
11068
|
export declare type AssetsVerticalBundleResult = AssetsVerticalBundle | QueryError;
|
|
10917
11069
|
export declare enum AssetsVerticalBundleType {
|
|
10918
11070
|
Cdm = "CDM",
|
|
@@ -10931,6 +11083,10 @@ export declare type AssetsVerticalCountByStatusInput = {
|
|
|
10931
11083
|
workspaceId: Scalars['ID']['input'];
|
|
10932
11084
|
};
|
|
10933
11085
|
export declare type AssetsVerticalCountByStatusResult = AssetsVerticalCountByStatus | QueryError;
|
|
11086
|
+
export declare type AssetsVerticalCreateVerticalInstantiationInput = {
|
|
11087
|
+
cloudId: Scalars['ID']['input'];
|
|
11088
|
+
type: AssetsVerticalVerticalType;
|
|
11089
|
+
};
|
|
10934
11090
|
export declare type AssetsVerticalGenerateInsightsInput = {
|
|
10935
11091
|
cloudId: Scalars['ID']['input'];
|
|
10936
11092
|
};
|
|
@@ -11077,6 +11233,68 @@ export declare type AssetsVerticalStatusType = {
|
|
|
11077
11233
|
description?: Maybe<Scalars['String']['output']>;
|
|
11078
11234
|
name?: Maybe<Scalars['String']['output']>;
|
|
11079
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
|
+
}
|
|
11080
11298
|
export declare type AssignIssueParentInput = {
|
|
11081
11299
|
boardId: Scalars['ID']['input'];
|
|
11082
11300
|
issueIds: Array<Scalars['ID']['input']>;
|
|
@@ -14434,8 +14652,14 @@ export declare type ChannelPlatformChatClosureResponse = {
|
|
|
14434
14652
|
export declare type ChannelPlatformChatRequestDetailsRequest = {
|
|
14435
14653
|
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
14436
14654
|
};
|
|
14655
|
+
export declare type ChannelPlatformCheckOtpVerifiedResponse = {
|
|
14656
|
+
__typename?: 'ChannelPlatformCheckOtpVerifiedResponse';
|
|
14657
|
+
success: Scalars['Boolean']['output'];
|
|
14658
|
+
verified?: Maybe<Scalars['Boolean']['output']>;
|
|
14659
|
+
};
|
|
14437
14660
|
export declare type ChannelPlatformClientConfigDetailsResponse = {
|
|
14438
14661
|
__typename?: 'ChannelPlatformClientConfigDetailsResponse';
|
|
14662
|
+
showCustomerLocalTimeToAgent?: Maybe<Scalars['Boolean']['output']>;
|
|
14439
14663
|
ticketPlatformType?: Maybe<Scalars['String']['output']>;
|
|
14440
14664
|
};
|
|
14441
14665
|
export declare type ChannelPlatformConnectDetails = {
|
|
@@ -14652,6 +14876,11 @@ export declare type ChannelPlatformSampleQueueConfig = {
|
|
|
14652
14876
|
maxItems?: Maybe<Scalars['Int']['output']>;
|
|
14653
14877
|
queueId?: Maybe<Scalars['ID']['output']>;
|
|
14654
14878
|
};
|
|
14879
|
+
export declare type ChannelPlatformSendOtpResponse = {
|
|
14880
|
+
__typename?: 'ChannelPlatformSendOtpResponse';
|
|
14881
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
14882
|
+
success: Scalars['Boolean']['output'];
|
|
14883
|
+
};
|
|
14655
14884
|
export declare type ChannelPlatformSubmitRequestInput = {
|
|
14656
14885
|
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
14657
14886
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14709,6 +14938,12 @@ export declare type ChannelPlatformTranscriptResponse = {
|
|
|
14709
14938
|
__typename?: 'ChannelPlatformTranscriptResponse';
|
|
14710
14939
|
chatTranscript?: Maybe<Array<Maybe<ChannelPlatformTranscriptEntry>>>;
|
|
14711
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
|
+
};
|
|
14712
14947
|
export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
14713
14948
|
cloudId: Scalars['ID']['input'];
|
|
14714
14949
|
oauthClientId: Scalars['ID']['input'];
|
|
@@ -14958,6 +15193,7 @@ export declare type CollabDraft = {
|
|
|
14958
15193
|
};
|
|
14959
15194
|
export declare type CollabDraftMetadata = {
|
|
14960
15195
|
__typename?: 'CollabDraftMetadata';
|
|
15196
|
+
relevance?: Maybe<ConfluenceCollabDraftRelevance>;
|
|
14961
15197
|
title?: Maybe<Scalars['String']['output']>;
|
|
14962
15198
|
};
|
|
14963
15199
|
export declare enum CollabFormat {
|
|
@@ -15738,6 +15974,7 @@ export declare type CommerceExpCcpEntitlement = CommerceExpNode & {
|
|
|
15738
15974
|
transitionsForBac?: Maybe<Array<Maybe<CommerceExpEntitlementTransitionForBac>>>;
|
|
15739
15975
|
type?: Maybe<CommerceExpEntitlementType>;
|
|
15740
15976
|
usageAggregations?: Maybe<CommerceExpUsageAggregationResponse>;
|
|
15977
|
+
usageForMeteredChargeElements?: Maybe<Array<Maybe<CommerceExpUsageForMeteredChargeElement>>>;
|
|
15741
15978
|
usageForUserBasedMeteredChargeElements?: Maybe<Array<Maybe<CommerceExpUsageForUserBasedMeteredChargeElements>>>;
|
|
15742
15979
|
usageHistory?: Maybe<CommerceExpUsageHistoryConnection>;
|
|
15743
15980
|
version?: Maybe<Scalars['Int']['output']>;
|
|
@@ -16801,6 +17038,7 @@ export declare type CommerceExpCreateEntitlementNewEntitlementInformation = {
|
|
|
16801
17038
|
};
|
|
16802
17039
|
export declare type CommerceExpCreateEntitlementOrderOptions = {
|
|
16803
17040
|
billingCycle?: InputMaybe<CommerceExpPricingPlanInterval>;
|
|
17041
|
+
chargeQuantities?: InputMaybe<Array<CommerceExpChargeElementDetails>>;
|
|
16804
17042
|
invoiceGroupId?: InputMaybe<Scalars['ID']['input']>;
|
|
16805
17043
|
pricingPlanId?: InputMaybe<Scalars['ID']['input']>;
|
|
16806
17044
|
provisioningRequestId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -18492,6 +18730,11 @@ export declare type CommerceExpPurchaseOrderInput = {
|
|
|
18492
18730
|
export declare type CommerceExpQuoteFilter = {
|
|
18493
18731
|
status?: InputMaybe<CommerceExpQuoteStatusFilter>;
|
|
18494
18732
|
};
|
|
18733
|
+
export declare type CommerceExpQuoteLineItemBillingSchedule = {
|
|
18734
|
+
__typename?: 'CommerceExpQuoteLineItemBillingSchedule';
|
|
18735
|
+
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
18736
|
+
type: CommerceExpBillDateType;
|
|
18737
|
+
};
|
|
18495
18738
|
export declare type CommerceExpQuoteLineItemConnection = {
|
|
18496
18739
|
__typename?: 'CommerceExpQuoteLineItemConnection';
|
|
18497
18740
|
edges?: Maybe<Array<Maybe<CommerceExpQuoteLineItemEdge>>>;
|
|
@@ -18506,6 +18749,7 @@ export declare enum CommerceExpQuoteLineItemContainerType {
|
|
|
18506
18749
|
}
|
|
18507
18750
|
export declare type CommerceExpQuoteLineItemEdge = {
|
|
18508
18751
|
__typename?: 'CommerceExpQuoteLineItemEdge';
|
|
18752
|
+
billingSchedules: Array<CommerceExpQuoteLineItemBillingSchedule>;
|
|
18509
18753
|
cursor: Scalars['String']['output'];
|
|
18510
18754
|
node?: Maybe<CommerceExpLineItemResponse>;
|
|
18511
18755
|
};
|
|
@@ -19020,6 +19264,12 @@ export declare enum CommerceExpUsageAggregationsResolution {
|
|
|
19020
19264
|
OneMonth = "ONE_MONTH",
|
|
19021
19265
|
Period = "PERIOD"
|
|
19022
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
|
+
};
|
|
19023
19273
|
export declare type CommerceExpUsageForUserBasedMeteredChargeElements = {
|
|
19024
19274
|
__typename?: 'CommerceExpUsageForUserBasedMeteredChargeElements';
|
|
19025
19275
|
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
@@ -24383,6 +24633,11 @@ export declare type ConfluenceAddCustomApplicationLinkPayload = Payload & {
|
|
|
24383
24633
|
errors?: Maybe<Array<MutationError>>;
|
|
24384
24634
|
success: Scalars['Boolean']['output'];
|
|
24385
24635
|
};
|
|
24636
|
+
export declare type ConfluenceAddTopLinkInput = {
|
|
24637
|
+
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
24638
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
24639
|
+
url: Scalars['String']['input'];
|
|
24640
|
+
};
|
|
24386
24641
|
export declare type ConfluenceAddTrackInput = {
|
|
24387
24642
|
top?: InputMaybe<Scalars['Boolean']['input']>;
|
|
24388
24643
|
track: ConfluenceTrackInput;
|
|
@@ -24610,6 +24865,21 @@ export declare type ConfluenceApplicationLink = {
|
|
|
24610
24865
|
rpcUrl?: Maybe<Scalars['String']['output']>;
|
|
24611
24866
|
typeId: Scalars['String']['output'];
|
|
24612
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
|
+
};
|
|
24613
24883
|
export declare enum ConfluenceApprovalTransitionType {
|
|
24614
24884
|
Directed = "DIRECTED",
|
|
24615
24885
|
Initial = "INITIAL"
|
|
@@ -25041,6 +25311,10 @@ export declare type ConfluenceCloudArchitectureShapesFeature = {
|
|
|
25041
25311
|
__typename?: 'ConfluenceCloudArchitectureShapesFeature';
|
|
25042
25312
|
isEntitled: Scalars['Boolean']['output'];
|
|
25043
25313
|
};
|
|
25314
|
+
export declare enum ConfluenceCollabDraftRelevance {
|
|
25315
|
+
Latest = "LATEST",
|
|
25316
|
+
Stale = "STALE"
|
|
25317
|
+
}
|
|
25044
25318
|
export declare enum ConfluenceCollaborativeEditingService {
|
|
25045
25319
|
Ncs = "NCS",
|
|
25046
25320
|
Synchrony = "SYNCHRONY"
|
|
@@ -25120,6 +25394,10 @@ export declare type ConfluenceCommentUpdated = {
|
|
|
25120
25394
|
__typename?: 'ConfluenceCommentUpdated';
|
|
25121
25395
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
25122
25396
|
};
|
|
25397
|
+
export declare enum ConfluenceCommentsPanelSorting {
|
|
25398
|
+
MostRecent = "MOST_RECENT",
|
|
25399
|
+
PageOrder = "PAGE_ORDER"
|
|
25400
|
+
}
|
|
25123
25401
|
export declare type ConfluenceConflictedPerson = Person & {
|
|
25124
25402
|
__typename?: 'ConfluenceConflictedPerson';
|
|
25125
25403
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -26252,6 +26530,10 @@ export declare type ConfluenceDraftContentNativeProperties = {
|
|
|
26252
26530
|
__typename?: 'ConfluenceDraftContentNativeProperties';
|
|
26253
26531
|
contentState?: Maybe<ConfluenceContentState>;
|
|
26254
26532
|
};
|
|
26533
|
+
export declare type ConfluenceEditTopLinkInput = {
|
|
26534
|
+
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26535
|
+
url: Scalars['String']['input'];
|
|
26536
|
+
};
|
|
26255
26537
|
export declare enum ConfluenceEdition {
|
|
26256
26538
|
Free = "FREE",
|
|
26257
26539
|
Premium = "PREMIUM",
|
|
@@ -26502,8 +26784,10 @@ export declare type ConfluenceForgeExtensionData = {
|
|
|
26502
26784
|
};
|
|
26503
26785
|
export declare type ConfluenceForgeExtensionDataContent = {
|
|
26504
26786
|
id: Scalars['ID']['input'];
|
|
26787
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
26505
26788
|
subtype?: InputMaybe<Scalars['String']['input']>;
|
|
26506
26789
|
type?: InputMaybe<Scalars['String']['input']>;
|
|
26790
|
+
version?: InputMaybe<Scalars['Int']['input']>;
|
|
26507
26791
|
};
|
|
26508
26792
|
export declare type ConfluenceForgeExtensionDataMacro = {
|
|
26509
26793
|
body?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26517,12 +26801,20 @@ export declare type ConfluenceForgeExtensionDataTemplate = {
|
|
|
26517
26801
|
};
|
|
26518
26802
|
export declare type ConfluenceForgePayloadContext = {
|
|
26519
26803
|
appVersion?: InputMaybe<Scalars['String']['input']>;
|
|
26804
|
+
config?: InputMaybe<Scalars['String']['input']>;
|
|
26805
|
+
content?: InputMaybe<ConfluenceForgeExtensionDataContent>;
|
|
26806
|
+
contentId?: InputMaybe<Scalars['String']['input']>;
|
|
26520
26807
|
environmentId?: InputMaybe<Scalars['String']['input']>;
|
|
26521
26808
|
environmentType?: InputMaybe<Scalars['String']['input']>;
|
|
26522
26809
|
extension: ConfluenceForgeExtensionData;
|
|
26810
|
+
isConfig?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26523
26811
|
localId?: InputMaybe<Scalars['String']['input']>;
|
|
26812
|
+
macro?: InputMaybe<ConfluenceForgeExtensionDataMacro>;
|
|
26524
26813
|
moduleKey?: InputMaybe<Scalars['String']['input']>;
|
|
26525
26814
|
siteUrl?: InputMaybe<Scalars['String']['input']>;
|
|
26815
|
+
space?: InputMaybe<ConfluenceForgeExtensionDataSpace>;
|
|
26816
|
+
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
26817
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
26526
26818
|
};
|
|
26527
26819
|
export declare type ConfluenceFormattingSettings = {
|
|
26528
26820
|
__typename?: 'ConfluenceFormattingSettings';
|
|
@@ -28855,6 +29147,9 @@ export declare type ConfluenceRemoveContentApprovalReviewerInput = {
|
|
|
28855
29147
|
principalType: ConfluencePrincipalType;
|
|
28856
29148
|
workflowApplicationId: Scalars['ID']['input'];
|
|
28857
29149
|
};
|
|
29150
|
+
export declare type ConfluenceRemoveTopLinkInput = {
|
|
29151
|
+
url: Scalars['String']['input'];
|
|
29152
|
+
};
|
|
28858
29153
|
export declare type ConfluenceRemoveTrackPayload = {
|
|
28859
29154
|
__typename?: 'ConfluenceRemoveTrackPayload';
|
|
28860
29155
|
errors?: Maybe<Array<ConfluenceRemoveTrackPayloadError>>;
|
|
@@ -29511,6 +29806,7 @@ export declare type ConfluenceSpaceRoleAppPrincipal = SpaceRolePrincipal & {
|
|
|
29511
29806
|
__typename?: 'ConfluenceSpaceRoleAppPrincipal';
|
|
29512
29807
|
displayName: Scalars['String']['output'];
|
|
29513
29808
|
principalId: Scalars['ID']['output'];
|
|
29809
|
+
profilePicture?: Maybe<Icon>;
|
|
29514
29810
|
};
|
|
29515
29811
|
export declare type ConfluenceSpaceRoleAssigned = {
|
|
29516
29812
|
__typename?: 'ConfluenceSpaceRoleAssigned';
|
|
@@ -30456,6 +30752,7 @@ export declare type ConfluenceUpdateSlackSiteConfigurationPayload = Payload & {
|
|
|
30456
30752
|
export declare type ConfluenceUpdateSmartSpaceOverviewInput = {
|
|
30457
30753
|
spaceKey: Scalars['String']['input'];
|
|
30458
30754
|
summary?: InputMaybe<ConfluenceUpdateSmartSpaceOverviewSummaryInput>;
|
|
30755
|
+
topLinks?: InputMaybe<ConfluenceUpdateSmartSpaceOverviewTopLinksInput>;
|
|
30459
30756
|
};
|
|
30460
30757
|
export declare type ConfluenceUpdateSmartSpaceOverviewPayload = Payload & {
|
|
30461
30758
|
__typename?: 'ConfluenceUpdateSmartSpaceOverviewPayload';
|
|
@@ -30466,6 +30763,11 @@ export declare type ConfluenceUpdateSmartSpaceOverviewPayload = Payload & {
|
|
|
30466
30763
|
export declare type ConfluenceUpdateSmartSpaceOverviewSummaryInput = {
|
|
30467
30764
|
body?: InputMaybe<Scalars['String']['input']>;
|
|
30468
30765
|
};
|
|
30766
|
+
export declare type ConfluenceUpdateSmartSpaceOverviewTopLinksInput = {
|
|
30767
|
+
add?: InputMaybe<ConfluenceAddTopLinkInput>;
|
|
30768
|
+
edit?: InputMaybe<ConfluenceEditTopLinkInput>;
|
|
30769
|
+
remove?: InputMaybe<ConfluenceRemoveTopLinkInput>;
|
|
30770
|
+
};
|
|
30469
30771
|
export declare type ConfluenceUpdateSpaceInput = {
|
|
30470
30772
|
id: Scalars['ID']['input'];
|
|
30471
30773
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -30750,6 +31052,7 @@ export declare type ConfluenceWatermarkConfig = {
|
|
|
30750
31052
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
30751
31053
|
data?: Maybe<Scalars['String']['output']>;
|
|
30752
31054
|
entityAri: Scalars['String']['output'];
|
|
31055
|
+
hasAccess: Scalars['Boolean']['output'];
|
|
30753
31056
|
ownerAri?: Maybe<Scalars['String']['output']>;
|
|
30754
31057
|
settingKey: Scalars['String']['output'];
|
|
30755
31058
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -33426,6 +33729,14 @@ export declare type CountUsersGroupByPageItem = {
|
|
|
33426
33729
|
page: Scalars['String']['output'];
|
|
33427
33730
|
user: Scalars['Int']['output'];
|
|
33428
33731
|
};
|
|
33732
|
+
export declare type CplsAcceptAllSuggestionsInput = {
|
|
33733
|
+
scopeId: Scalars['ID']['input'];
|
|
33734
|
+
};
|
|
33735
|
+
export declare type CplsAcceptAllSuggestionsPayload = Payload & {
|
|
33736
|
+
__typename?: 'CplsAcceptAllSuggestionsPayload';
|
|
33737
|
+
errors?: Maybe<Array<MutationError>>;
|
|
33738
|
+
success: Scalars['Boolean']['output'];
|
|
33739
|
+
};
|
|
33429
33740
|
export declare type CplsAddContributionInput = {
|
|
33430
33741
|
contributorDataId: Scalars['ID']['input'];
|
|
33431
33742
|
endDate: Scalars['Date']['input'];
|
|
@@ -33896,6 +34207,11 @@ export declare type CplsSearchCustomContributionTargetsInput = {
|
|
|
33896
34207
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
33897
34208
|
};
|
|
33898
34209
|
export declare type CplsSettings = CplsPlanSettings | QueryError;
|
|
34210
|
+
export declare type CplsSuggestionsExistencePayload = {
|
|
34211
|
+
__typename?: 'CplsSuggestionsExistencePayload';
|
|
34212
|
+
hasSuggestions: Scalars['Boolean']['output'];
|
|
34213
|
+
scopeId: Scalars['ID']['output'];
|
|
34214
|
+
};
|
|
33899
34215
|
export declare type CplsTimeCell = {
|
|
33900
34216
|
__typename?: 'CplsTimeCell';
|
|
33901
34217
|
endDate: Scalars['Date']['output'];
|
|
@@ -34519,6 +34835,7 @@ export declare type CreateInvitationUrlPayload = {
|
|
|
34519
34835
|
export declare type CreateJiraPlaybookInput = {
|
|
34520
34836
|
cloudId: Scalars['ID']['input'];
|
|
34521
34837
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
34838
|
+
isAiCreated?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34522
34839
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
34523
34840
|
name: Scalars['String']['input'];
|
|
34524
34841
|
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -38445,6 +38762,46 @@ export declare type DevConsoleAppResourceUsageGroupedResponse = {
|
|
|
38445
38762
|
resourceUsage: Array<DevConsoleResourceUsagePeriod>;
|
|
38446
38763
|
};
|
|
38447
38764
|
export declare type DevConsoleAppResourceUsageResponse = DevConsoleAppResourceUsageFlatResponse | DevConsoleAppResourceUsageGroupedResponse;
|
|
38765
|
+
export declare type DevConsoleAppTransferDestination = {
|
|
38766
|
+
__typename?: 'DevConsoleAppTransferDestination';
|
|
38767
|
+
approvedByUser: Scalars['String']['output'];
|
|
38768
|
+
developerSpaceId: Scalars['String']['output'];
|
|
38769
|
+
};
|
|
38770
|
+
export declare type DevConsoleAppTransferRecord = {
|
|
38771
|
+
__typename?: 'DevConsoleAppTransferRecord';
|
|
38772
|
+
appId: Scalars['String']['output'];
|
|
38773
|
+
ccpOrderId: Scalars['String']['output'];
|
|
38774
|
+
destination: DevConsoleAppTransferDestination;
|
|
38775
|
+
source: DevConsoleAppTransferSource;
|
|
38776
|
+
state: DevConsoleAppTransferStateInfo;
|
|
38777
|
+
};
|
|
38778
|
+
export declare type DevConsoleAppTransferSource = {
|
|
38779
|
+
__typename?: 'DevConsoleAppTransferSource';
|
|
38780
|
+
developerSpaceId: Scalars['String']['output'];
|
|
38781
|
+
initiatedBy: Scalars['String']['output'];
|
|
38782
|
+
};
|
|
38783
|
+
export declare enum DevConsoleAppTransferState {
|
|
38784
|
+
Completed = "COMPLETED",
|
|
38785
|
+
DestinationApproved = "DESTINATION_APPROVED",
|
|
38786
|
+
Failed = "FAILED",
|
|
38787
|
+
Initiated = "INITIATED"
|
|
38788
|
+
}
|
|
38789
|
+
export declare type DevConsoleAppTransferStateInfo = {
|
|
38790
|
+
__typename?: 'DevConsoleAppTransferStateInfo';
|
|
38791
|
+
attempt: Scalars['Int']['output'];
|
|
38792
|
+
current: DevConsoleAppTransferState;
|
|
38793
|
+
lastUpdatedAt: Scalars['String']['output'];
|
|
38794
|
+
};
|
|
38795
|
+
export declare type DevConsoleAppTransferStatusResponse = {
|
|
38796
|
+
__typename?: 'DevConsoleAppTransferStatusResponse';
|
|
38797
|
+
error?: Maybe<QueryError>;
|
|
38798
|
+
transfer?: Maybe<DevConsoleAppTransferRecord>;
|
|
38799
|
+
};
|
|
38800
|
+
export declare type DevConsoleAppTransfersResponse = {
|
|
38801
|
+
__typename?: 'DevConsoleAppTransfersResponse';
|
|
38802
|
+
error?: Maybe<QueryError>;
|
|
38803
|
+
transfers?: Maybe<Array<DevConsoleAppTransferRecord>>;
|
|
38804
|
+
};
|
|
38448
38805
|
export declare type DevConsoleAppUsageFiltersInput = {
|
|
38449
38806
|
interval: DevConsoleDateIntervalInput;
|
|
38450
38807
|
resource: Array<DevConsoleResource>;
|
|
@@ -38512,6 +38869,17 @@ export declare enum DevConsoleComputeType {
|
|
|
38512
38869
|
Async = "async",
|
|
38513
38870
|
Sync = "sync"
|
|
38514
38871
|
}
|
|
38872
|
+
export declare type DevConsoleCreateAppTransferInput = {
|
|
38873
|
+
appId: Scalars['String']['input'];
|
|
38874
|
+
destinationDeveloperSpaceId: Scalars['String']['input'];
|
|
38875
|
+
sourceDeveloperSpaceId: Scalars['String']['input'];
|
|
38876
|
+
};
|
|
38877
|
+
export declare type DevConsoleCreateAppTransferPayload = Payload & {
|
|
38878
|
+
__typename?: 'DevConsoleCreateAppTransferPayload';
|
|
38879
|
+
ccpOrderId?: Maybe<Scalars['String']['output']>;
|
|
38880
|
+
errors?: Maybe<Array<MutationError>>;
|
|
38881
|
+
success: Scalars['Boolean']['output'];
|
|
38882
|
+
};
|
|
38515
38883
|
export declare type DevConsoleCreateDeveloperSpaceInput = {
|
|
38516
38884
|
name: Scalars['String']['input'];
|
|
38517
38885
|
};
|
|
@@ -38669,6 +39037,7 @@ export declare type DevConsoleMutation = {
|
|
|
38669
39037
|
acceptAppBillingConsent?: Maybe<DevConsoleResponsePayload>;
|
|
38670
39038
|
archiveDeveloperSpace?: Maybe<DevConsoleResponsePayload>;
|
|
38671
39039
|
assignDeveloperSpace?: Maybe<DevConsoleAssignDeveloperSpacePayload>;
|
|
39040
|
+
createAppTransfer?: Maybe<DevConsoleCreateAppTransferPayload>;
|
|
38672
39041
|
createDeveloperSpace?: Maybe<DevConsoleDeveloperSpacePayload>;
|
|
38673
39042
|
publishDeveloperSpace?: Maybe<DevConsoleResponsePayload>;
|
|
38674
39043
|
updateDeveloperSpaceMemberRoles?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
@@ -38684,6 +39053,9 @@ export declare type DevConsoleMutationArchiveDeveloperSpaceArgs = {
|
|
|
38684
39053
|
export declare type DevConsoleMutationAssignDeveloperSpaceArgs = {
|
|
38685
39054
|
input: DevConsoleAssignDeveloperSpaceInput;
|
|
38686
39055
|
};
|
|
39056
|
+
export declare type DevConsoleMutationCreateAppTransferArgs = {
|
|
39057
|
+
input: DevConsoleCreateAppTransferInput;
|
|
39058
|
+
};
|
|
38687
39059
|
export declare type DevConsoleMutationCreateDeveloperSpaceArgs = {
|
|
38688
39060
|
input: DevConsoleCreateDeveloperSpaceInput;
|
|
38689
39061
|
};
|
|
@@ -38715,6 +39087,7 @@ export declare type DevConsoleQuery = {
|
|
|
38715
39087
|
downloadAppInstallations?: Maybe<DevConsoleDownloadAppInstallationsResponse>;
|
|
38716
39088
|
fetchDownloadAppInstallationsStatus?: Maybe<DevConsoleFetchDownloadAppInstallationsStatusResponse>;
|
|
38717
39089
|
getAppEnforcementMetadata?: Maybe<DevConsoleAppEnforcementMetadataResponse>;
|
|
39090
|
+
getAppTransferStatus?: Maybe<DevConsoleAppTransferStatusResponse>;
|
|
38718
39091
|
getAppsWithoutConsent?: Maybe<DevConsoleAppsWithoutConsentResponse>;
|
|
38719
39092
|
getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
|
|
38720
39093
|
getDeveloperSpaceEnforcementMetadata?: Maybe<DevConsoleDeveloperSpaceEnforcementMetadataResponse>;
|
|
@@ -38723,6 +39096,7 @@ export declare type DevConsoleQuery = {
|
|
|
38723
39096
|
getDeveloperSpaceUserPermissions?: Maybe<DevConsoleDeveloperSpaceUserPermissionsResponse>;
|
|
38724
39097
|
getDeveloperSpaceWithLinkingAccess?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
38725
39098
|
getDeveloperSpaceWithRoles?: Maybe<Array<DevConsoleDeveloperSpaceWithRole>>;
|
|
39099
|
+
getTransfersByAppId?: Maybe<DevConsoleAppTransfersResponse>;
|
|
38726
39100
|
hasAnyConsoleAdmin?: Maybe<DevConsoleHasConsoleAdminResponse>;
|
|
38727
39101
|
tenantContexts?: Maybe<Array<Maybe<DevConsoleTenantContext>>>;
|
|
38728
39102
|
};
|
|
@@ -38756,6 +39130,9 @@ export declare type DevConsoleQueryFetchDownloadAppInstallationsStatusArgs = {
|
|
|
38756
39130
|
export declare type DevConsoleQueryGetAppEnforcementMetadataArgs = {
|
|
38757
39131
|
appId: Scalars['ID']['input'];
|
|
38758
39132
|
};
|
|
39133
|
+
export declare type DevConsoleQueryGetAppTransferStatusArgs = {
|
|
39134
|
+
ccpOrderId: Scalars['String']['input'];
|
|
39135
|
+
};
|
|
38759
39136
|
export declare type DevConsoleQueryGetAppsWithoutConsentArgs = {
|
|
38760
39137
|
developerSpaceId: Scalars['String']['input'];
|
|
38761
39138
|
};
|
|
@@ -38774,6 +39151,10 @@ export declare type DevConsoleQueryGetDeveloperSpaceTransactionAccountArgs = {
|
|
|
38774
39151
|
export declare type DevConsoleQueryGetDeveloperSpaceUserPermissionsArgs = {
|
|
38775
39152
|
developerSpaceId: Scalars['String']['input'];
|
|
38776
39153
|
};
|
|
39154
|
+
export declare type DevConsoleQueryGetTransfersByAppIdArgs = {
|
|
39155
|
+
appId: Scalars['String']['input'];
|
|
39156
|
+
status: Array<InputMaybe<DevConsoleAppTransferState>>;
|
|
39157
|
+
};
|
|
38777
39158
|
export declare type DevConsoleQueryHasAnyConsoleAdminArgs = {
|
|
38778
39159
|
developerSpaceId: Scalars['String']['input'];
|
|
38779
39160
|
};
|
|
@@ -41689,6 +42070,10 @@ export declare type ExternalCommit = Node & {
|
|
|
41689
42070
|
export declare enum ExternalCommitFlags {
|
|
41690
42071
|
MergeCommit = "MERGE_COMMIT"
|
|
41691
42072
|
}
|
|
42073
|
+
export declare enum ExternalContentRepresentation {
|
|
42074
|
+
Base64 = "BASE64",
|
|
42075
|
+
Plaintext = "PLAINTEXT"
|
|
42076
|
+
}
|
|
41692
42077
|
export declare type ExternalContributor = {
|
|
41693
42078
|
__typename?: 'ExternalContributor';
|
|
41694
42079
|
interactionCount?: Maybe<Scalars['Long']['output']>;
|
|
@@ -41919,6 +42304,8 @@ export declare type ExternalCustomerOrgLifeTimeValue = {
|
|
|
41919
42304
|
export declare type ExternalDashboard = Node & {
|
|
41920
42305
|
__typename?: 'ExternalDashboard';
|
|
41921
42306
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
42307
|
+
container?: Maybe<ExternalEntity>;
|
|
42308
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
41922
42309
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
41923
42310
|
createdBy?: Maybe<ExternalUser>;
|
|
41924
42311
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -41930,6 +42317,8 @@ export declare type ExternalDashboard = Node & {
|
|
|
41930
42317
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
41931
42318
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
41932
42319
|
pages?: Maybe<Array<Maybe<ExternalDashboardPage>>>;
|
|
42320
|
+
parent?: Maybe<ExternalEntity>;
|
|
42321
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
41933
42322
|
provider?: Maybe<ExternalProvider>;
|
|
41934
42323
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
41935
42324
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
@@ -42330,6 +42719,7 @@ export declare type ExternalLargeContent = {
|
|
|
42330
42719
|
mediaTextUrl?: Maybe<Scalars['String']['output']>;
|
|
42331
42720
|
mediaThumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
42332
42721
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
42722
|
+
representation?: Maybe<ExternalContentRepresentation>;
|
|
42333
42723
|
};
|
|
42334
42724
|
export declare type ExternalLocation = {
|
|
42335
42725
|
__typename?: 'ExternalLocation';
|
|
@@ -44570,6 +44960,7 @@ export declare type GlobalSpaceIdentifier = {
|
|
|
44570
44960
|
spaceIdentifier?: Maybe<Scalars['String']['output']>;
|
|
44571
44961
|
};
|
|
44572
44962
|
export declare enum GrantCheckProduct {
|
|
44963
|
+
Assets = "ASSETS",
|
|
44573
44964
|
Compass = "COMPASS",
|
|
44574
44965
|
Confluence = "CONFLUENCE",
|
|
44575
44966
|
Feedback = "FEEDBACK",
|
|
@@ -45746,6 +46137,7 @@ export declare type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNo
|
|
|
45746
46137
|
description?: Maybe<Scalars['String']['output']>;
|
|
45747
46138
|
displayName: Scalars['String']['output'];
|
|
45748
46139
|
documentationUrl?: Maybe<Scalars['String']['output']>;
|
|
46140
|
+
extraInputs: Array<GraphIntegrationMcpAdminManagementMcpServerExtraInput>;
|
|
45749
46141
|
iconKey?: Maybe<Scalars['String']['output']>;
|
|
45750
46142
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
45751
46143
|
isInstalled: Scalars['Boolean']['output'];
|
|
@@ -45764,6 +46156,14 @@ export declare type GraphIntegrationMcpAdminManagementMcpServerEdge = {
|
|
|
45764
46156
|
cursor: Scalars['String']['output'];
|
|
45765
46157
|
node?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
|
|
45766
46158
|
};
|
|
46159
|
+
export declare type GraphIntegrationMcpAdminManagementMcpServerExtraInput = {
|
|
46160
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerExtraInput';
|
|
46161
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
46162
|
+
displayName: Scalars['String']['output'];
|
|
46163
|
+
key: Scalars['String']['output'];
|
|
46164
|
+
required: Scalars['Boolean']['output'];
|
|
46165
|
+
validationPattern?: Maybe<Scalars['String']['output']>;
|
|
46166
|
+
};
|
|
45767
46167
|
export declare type GraphIntegrationMcpAdminManagementMcpServerMetaData = {
|
|
45768
46168
|
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerMetaData';
|
|
45769
46169
|
iconKey: Scalars['String']['output'];
|
|
@@ -46089,7 +46489,8 @@ export declare enum GraphIntegrationTwgCapabilityStatus {
|
|
|
46089
46489
|
Enabled = "ENABLED"
|
|
46090
46490
|
}
|
|
46091
46491
|
export declare enum GraphIntegrationTwgCapabilityType {
|
|
46092
|
-
PlatformMcpServer = "PLATFORM_MCP_SERVER"
|
|
46492
|
+
PlatformMcpServer = "PLATFORM_MCP_SERVER",
|
|
46493
|
+
ThirdPartyAction = "THIRD_PARTY_ACTION"
|
|
46093
46494
|
}
|
|
46094
46495
|
export declare type GraphIntegrationTwgPlatformCapabilityGlobalAdminSetting = {
|
|
46095
46496
|
__typename?: 'GraphIntegrationTwgPlatformCapabilityGlobalAdminSetting';
|
|
@@ -48864,6 +49265,8 @@ export declare type GraphStore = {
|
|
|
48864
49265
|
atlassianUserDismissedJiraForYouRecommendationEntityBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
48865
49266
|
atlassianUserDismissedJiraForYouRecommendationEntityInverse?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection>;
|
|
48866
49267
|
atlassianUserDismissedJiraForYouRecommendationEntityInverseBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
49268
|
+
atlassianUserFollowsAtlassianHomeTag?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagConnection>;
|
|
49269
|
+
atlassianUserFollowsAtlassianHomeTagInverse?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection>;
|
|
48867
49270
|
atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
48868
49271
|
atlassianUserInvitedToLoomMeetingBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
|
|
48869
49272
|
atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
@@ -48886,6 +49289,7 @@ export declare type GraphStore = {
|
|
|
48886
49289
|
atlassianUserOwnsExternalTestRunInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunInverseConnection>;
|
|
48887
49290
|
atlassianUserOwnsExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusConnection>;
|
|
48888
49291
|
atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
|
|
49292
|
+
atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
|
|
48889
49293
|
atlassianUserUpdatedExternalCustomerContact?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection>;
|
|
48890
49294
|
atlassianUserUpdatedExternalCustomerContactInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseConnection>;
|
|
48891
49295
|
atlassianUserUpdatedExternalCustomerOrgCategory?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryConnection>;
|
|
@@ -49096,6 +49500,7 @@ export declare type GraphStore = {
|
|
|
49096
49500
|
incidentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullIncidentLinkedJswIssueConnection>;
|
|
49097
49501
|
incidentLinkedJswIssueRelationship?: Maybe<GraphStoreFullIncidentLinkedJswIssueConnection>;
|
|
49098
49502
|
inferredProjectLinksEntity?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityConnection>;
|
|
49503
|
+
inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
49099
49504
|
issueAssociatedBranch?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchConnection>;
|
|
49100
49505
|
issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
|
|
49101
49506
|
issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
@@ -49395,6 +49800,12 @@ export declare type GraphStore = {
|
|
|
49395
49800
|
riskHasProjectInverseBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
|
|
49396
49801
|
scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
|
|
49397
49802
|
scorecardHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection>;
|
|
49803
|
+
secodaDownstreamLineageBatch?: Maybe<GraphStoreBatchSecodaDownstreamLineageConnection>;
|
|
49804
|
+
secodaDownstreamLineageInverseBatch?: Maybe<GraphStoreBatchSecodaDownstreamLineageConnection>;
|
|
49805
|
+
secodaSourceLineageBatch?: Maybe<GraphStoreBatchSecodaSourceLineageConnection>;
|
|
49806
|
+
secodaSourceLineageInverseBatch?: Maybe<GraphStoreBatchSecodaSourceLineageConnection>;
|
|
49807
|
+
secodaTargetLineageBatch?: Maybe<GraphStoreBatchSecodaTargetLineageConnection>;
|
|
49808
|
+
secodaTargetLineageInverseBatch?: Maybe<GraphStoreBatchSecodaTargetLineageConnection>;
|
|
49398
49809
|
securityContainerAssociatedToVulnerability?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
49399
49810
|
securityContainerAssociatedToVulnerabilityBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
49400
49811
|
securityContainerAssociatedToVulnerabilityInverse?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityInverseConnection>;
|
|
@@ -50484,6 +50895,22 @@ export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEnti
|
|
|
50484
50895
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50485
50896
|
sort?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortInput>;
|
|
50486
50897
|
};
|
|
50898
|
+
export declare type GraphStoreAtlassianUserFollowsAtlassianHomeTagArgs = {
|
|
50899
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
50900
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50901
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50902
|
+
id: Scalars['ID']['input'];
|
|
50903
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50904
|
+
sort?: InputMaybe<GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
50905
|
+
};
|
|
50906
|
+
export declare type GraphStoreAtlassianUserFollowsAtlassianHomeTagInverseArgs = {
|
|
50907
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
50908
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50909
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50910
|
+
id: Scalars['ID']['input'];
|
|
50911
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50912
|
+
sort?: InputMaybe<GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
50913
|
+
};
|
|
50487
50914
|
export declare type GraphStoreAtlassianUserInvitedToLoomMeetingArgs = {
|
|
50488
50915
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
50489
50916
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -50658,6 +51085,14 @@ export declare type GraphStoreAtlassianUserOwnsExternalTestStatusInverseArgs = {
|
|
|
50658
51085
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50659
51086
|
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTestStatusSortInput>;
|
|
50660
51087
|
};
|
|
51088
|
+
export declare type GraphStoreAtlassianUserOwnsInferredProjectInverseArgs = {
|
|
51089
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51090
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51091
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51092
|
+
id: Scalars['ID']['input'];
|
|
51093
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51094
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsInferredProjectSortInput>;
|
|
51095
|
+
};
|
|
50661
51096
|
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerContactArgs = {
|
|
50662
51097
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
50663
51098
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52274,6 +52709,14 @@ export declare type GraphStoreInferredProjectLinksEntityArgs = {
|
|
|
52274
52709
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52275
52710
|
sort?: InputMaybe<GraphStoreInferredProjectLinksEntitySortInput>;
|
|
52276
52711
|
};
|
|
52712
|
+
export declare type GraphStoreInferredTeamCollaboratesOnInferredProjectInverseArgs = {
|
|
52713
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52714
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52715
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52716
|
+
id: Scalars['ID']['input'];
|
|
52717
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52718
|
+
sort?: InputMaybe<GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput>;
|
|
52719
|
+
};
|
|
52277
52720
|
export declare type GraphStoreIssueAssociatedBranchArgs = {
|
|
52278
52721
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52279
52722
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -54522,6 +54965,48 @@ export declare type GraphStoreScorecardHasAtlasGoalInverseArgs = {
|
|
|
54522
54965
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54523
54966
|
sort?: InputMaybe<GraphStoreScorecardHasAtlasGoalSortInput>;
|
|
54524
54967
|
};
|
|
54968
|
+
export declare type GraphStoreSecodaDownstreamLineageBatchArgs = {
|
|
54969
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54970
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54971
|
+
ids: Array<Scalars['ID']['input']>;
|
|
54972
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54973
|
+
sort?: InputMaybe<GraphStoreSecodaDownstreamLineageSortInput>;
|
|
54974
|
+
};
|
|
54975
|
+
export declare type GraphStoreSecodaDownstreamLineageInverseBatchArgs = {
|
|
54976
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54977
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54978
|
+
ids: Array<Scalars['ID']['input']>;
|
|
54979
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54980
|
+
sort?: InputMaybe<GraphStoreSecodaDownstreamLineageSortInput>;
|
|
54981
|
+
};
|
|
54982
|
+
export declare type GraphStoreSecodaSourceLineageBatchArgs = {
|
|
54983
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54984
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54985
|
+
ids: Array<Scalars['ID']['input']>;
|
|
54986
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54987
|
+
sort?: InputMaybe<GraphStoreSecodaSourceLineageSortInput>;
|
|
54988
|
+
};
|
|
54989
|
+
export declare type GraphStoreSecodaSourceLineageInverseBatchArgs = {
|
|
54990
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54991
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54992
|
+
ids: Array<Scalars['ID']['input']>;
|
|
54993
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54994
|
+
sort?: InputMaybe<GraphStoreSecodaSourceLineageSortInput>;
|
|
54995
|
+
};
|
|
54996
|
+
export declare type GraphStoreSecodaTargetLineageBatchArgs = {
|
|
54997
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54998
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54999
|
+
ids: Array<Scalars['ID']['input']>;
|
|
55000
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55001
|
+
sort?: InputMaybe<GraphStoreSecodaTargetLineageSortInput>;
|
|
55002
|
+
};
|
|
55003
|
+
export declare type GraphStoreSecodaTargetLineageInverseBatchArgs = {
|
|
55004
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55005
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55006
|
+
ids: Array<Scalars['ID']['input']>;
|
|
55007
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55008
|
+
sort?: InputMaybe<GraphStoreSecodaTargetLineageSortInput>;
|
|
55009
|
+
};
|
|
54525
55010
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityArgs = {
|
|
54526
55011
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54527
55012
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -58112,6 +58597,9 @@ export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEnti
|
|
|
58112
58597
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
58113
58598
|
to_dismissedCategories?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalSortInput>;
|
|
58114
58599
|
};
|
|
58600
|
+
export declare type GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput = {
|
|
58601
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58602
|
+
};
|
|
58115
58603
|
export declare type GraphStoreAtlassianUserInvitedToLoomMeetingSortInput = {
|
|
58116
58604
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58117
58605
|
};
|
|
@@ -58142,6 +58630,9 @@ export declare type GraphStoreAtlassianUserOwnsExternalTestRunSortInput = {
|
|
|
58142
58630
|
export declare type GraphStoreAtlassianUserOwnsExternalTestStatusSortInput = {
|
|
58143
58631
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58144
58632
|
};
|
|
58633
|
+
export declare type GraphStoreAtlassianUserOwnsInferredProjectSortInput = {
|
|
58634
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58635
|
+
};
|
|
58145
58636
|
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerContactSortInput = {
|
|
58146
58637
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58147
58638
|
};
|
|
@@ -59327,7 +59818,7 @@ export declare type GraphStoreBatchProjectLinksToEntityEndNode = {
|
|
|
59327
59818
|
data?: Maybe<GraphStoreBatchProjectLinksToEntityEndUnion>;
|
|
59328
59819
|
id: Scalars['ID']['output'];
|
|
59329
59820
|
};
|
|
59330
|
-
export declare type GraphStoreBatchProjectLinksToEntityEndUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomSpace | LoomVideo;
|
|
59821
|
+
export declare type GraphStoreBatchProjectLinksToEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
59331
59822
|
export declare type GraphStoreBatchProjectLinksToEntityInnerConnection = {
|
|
59332
59823
|
__typename?: 'GraphStoreBatchProjectLinksToEntityInnerConnection';
|
|
59333
59824
|
edges: Array<Maybe<GraphStoreBatchProjectLinksToEntityInnerEdge>>;
|
|
@@ -59394,6 +59885,117 @@ export declare type GraphStoreBatchRiskHasProjectStartNode = {
|
|
|
59394
59885
|
id: Scalars['ID']['output'];
|
|
59395
59886
|
};
|
|
59396
59887
|
export declare type GraphStoreBatchRiskHasProjectStartUnion = MercuryRisk;
|
|
59888
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageConnection = HasPageInfo & {
|
|
59889
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageConnection';
|
|
59890
|
+
edges: Array<Maybe<GraphStoreBatchSecodaDownstreamLineageEdge>>;
|
|
59891
|
+
nodes: Array<Maybe<GraphStoreBatchSecodaDownstreamLineageNode>>;
|
|
59892
|
+
pageInfo: PageInfo;
|
|
59893
|
+
};
|
|
59894
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageEdge = {
|
|
59895
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageEdge';
|
|
59896
|
+
node: GraphStoreBatchSecodaDownstreamLineageInnerConnection;
|
|
59897
|
+
};
|
|
59898
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageEndNode = {
|
|
59899
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageEndNode';
|
|
59900
|
+
id: Scalars['ID']['output'];
|
|
59901
|
+
};
|
|
59902
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageInnerConnection = {
|
|
59903
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageInnerConnection';
|
|
59904
|
+
edges: Array<Maybe<GraphStoreBatchSecodaDownstreamLineageInnerEdge>>;
|
|
59905
|
+
nodes: Array<Maybe<GraphStoreBatchSecodaDownstreamLineageNode>>;
|
|
59906
|
+
requestedId: Scalars['ID']['output'];
|
|
59907
|
+
};
|
|
59908
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageInnerEdge = {
|
|
59909
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageInnerEdge';
|
|
59910
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
59911
|
+
node: GraphStoreBatchSecodaDownstreamLineageNode;
|
|
59912
|
+
};
|
|
59913
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageNode = Node & {
|
|
59914
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageNode';
|
|
59915
|
+
createdAt: Scalars['DateTime']['output'];
|
|
59916
|
+
from: GraphStoreBatchSecodaDownstreamLineageStartNode;
|
|
59917
|
+
id: Scalars['ID']['output'];
|
|
59918
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
59919
|
+
to: GraphStoreBatchSecodaDownstreamLineageEndNode;
|
|
59920
|
+
};
|
|
59921
|
+
export declare type GraphStoreBatchSecodaDownstreamLineageStartNode = {
|
|
59922
|
+
__typename?: 'GraphStoreBatchSecodaDownstreamLineageStartNode';
|
|
59923
|
+
id: Scalars['ID']['output'];
|
|
59924
|
+
};
|
|
59925
|
+
export declare type GraphStoreBatchSecodaSourceLineageConnection = HasPageInfo & {
|
|
59926
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageConnection';
|
|
59927
|
+
edges: Array<Maybe<GraphStoreBatchSecodaSourceLineageEdge>>;
|
|
59928
|
+
nodes: Array<Maybe<GraphStoreBatchSecodaSourceLineageNode>>;
|
|
59929
|
+
pageInfo: PageInfo;
|
|
59930
|
+
};
|
|
59931
|
+
export declare type GraphStoreBatchSecodaSourceLineageEdge = {
|
|
59932
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageEdge';
|
|
59933
|
+
node: GraphStoreBatchSecodaSourceLineageInnerConnection;
|
|
59934
|
+
};
|
|
59935
|
+
export declare type GraphStoreBatchSecodaSourceLineageEndNode = {
|
|
59936
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageEndNode';
|
|
59937
|
+
id: Scalars['ID']['output'];
|
|
59938
|
+
};
|
|
59939
|
+
export declare type GraphStoreBatchSecodaSourceLineageInnerConnection = {
|
|
59940
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageInnerConnection';
|
|
59941
|
+
edges: Array<Maybe<GraphStoreBatchSecodaSourceLineageInnerEdge>>;
|
|
59942
|
+
nodes: Array<Maybe<GraphStoreBatchSecodaSourceLineageNode>>;
|
|
59943
|
+
requestedId: Scalars['ID']['output'];
|
|
59944
|
+
};
|
|
59945
|
+
export declare type GraphStoreBatchSecodaSourceLineageInnerEdge = {
|
|
59946
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageInnerEdge';
|
|
59947
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
59948
|
+
node: GraphStoreBatchSecodaSourceLineageNode;
|
|
59949
|
+
};
|
|
59950
|
+
export declare type GraphStoreBatchSecodaSourceLineageNode = Node & {
|
|
59951
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageNode';
|
|
59952
|
+
createdAt: Scalars['DateTime']['output'];
|
|
59953
|
+
from: GraphStoreBatchSecodaSourceLineageStartNode;
|
|
59954
|
+
id: Scalars['ID']['output'];
|
|
59955
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
59956
|
+
to: GraphStoreBatchSecodaSourceLineageEndNode;
|
|
59957
|
+
};
|
|
59958
|
+
export declare type GraphStoreBatchSecodaSourceLineageStartNode = {
|
|
59959
|
+
__typename?: 'GraphStoreBatchSecodaSourceLineageStartNode';
|
|
59960
|
+
id: Scalars['ID']['output'];
|
|
59961
|
+
};
|
|
59962
|
+
export declare type GraphStoreBatchSecodaTargetLineageConnection = HasPageInfo & {
|
|
59963
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageConnection';
|
|
59964
|
+
edges: Array<Maybe<GraphStoreBatchSecodaTargetLineageEdge>>;
|
|
59965
|
+
nodes: Array<Maybe<GraphStoreBatchSecodaTargetLineageNode>>;
|
|
59966
|
+
pageInfo: PageInfo;
|
|
59967
|
+
};
|
|
59968
|
+
export declare type GraphStoreBatchSecodaTargetLineageEdge = {
|
|
59969
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageEdge';
|
|
59970
|
+
node: GraphStoreBatchSecodaTargetLineageInnerConnection;
|
|
59971
|
+
};
|
|
59972
|
+
export declare type GraphStoreBatchSecodaTargetLineageEndNode = {
|
|
59973
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageEndNode';
|
|
59974
|
+
id: Scalars['ID']['output'];
|
|
59975
|
+
};
|
|
59976
|
+
export declare type GraphStoreBatchSecodaTargetLineageInnerConnection = {
|
|
59977
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageInnerConnection';
|
|
59978
|
+
edges: Array<Maybe<GraphStoreBatchSecodaTargetLineageInnerEdge>>;
|
|
59979
|
+
nodes: Array<Maybe<GraphStoreBatchSecodaTargetLineageNode>>;
|
|
59980
|
+
requestedId: Scalars['ID']['output'];
|
|
59981
|
+
};
|
|
59982
|
+
export declare type GraphStoreBatchSecodaTargetLineageInnerEdge = {
|
|
59983
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageInnerEdge';
|
|
59984
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
59985
|
+
node: GraphStoreBatchSecodaTargetLineageNode;
|
|
59986
|
+
};
|
|
59987
|
+
export declare type GraphStoreBatchSecodaTargetLineageNode = Node & {
|
|
59988
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageNode';
|
|
59989
|
+
createdAt: Scalars['DateTime']['output'];
|
|
59990
|
+
from: GraphStoreBatchSecodaTargetLineageStartNode;
|
|
59991
|
+
id: Scalars['ID']['output'];
|
|
59992
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
59993
|
+
to: GraphStoreBatchSecodaTargetLineageEndNode;
|
|
59994
|
+
};
|
|
59995
|
+
export declare type GraphStoreBatchSecodaTargetLineageStartNode = {
|
|
59996
|
+
__typename?: 'GraphStoreBatchSecodaTargetLineageStartNode';
|
|
59997
|
+
id: Scalars['ID']['output'];
|
|
59998
|
+
};
|
|
59397
59999
|
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
|
|
59398
60000
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection';
|
|
59399
60001
|
edges: Array<Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEdge>>;
|
|
@@ -64599,6 +65201,9 @@ export declare type GraphStoreIncidentLinkedJswIssueSortInput = {
|
|
|
64599
65201
|
export declare type GraphStoreInferredProjectLinksEntitySortInput = {
|
|
64600
65202
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
64601
65203
|
};
|
|
65204
|
+
export declare type GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput = {
|
|
65205
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65206
|
+
};
|
|
64602
65207
|
export declare type GraphStoreIntFilterInput = {
|
|
64603
65208
|
greaterThan?: InputMaybe<Scalars['Int']['input']>;
|
|
64604
65209
|
greaterThanOrEqual?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -65835,6 +66440,15 @@ export declare type GraphStoreRiskHasProjectSortInput = {
|
|
|
65835
66440
|
export declare type GraphStoreScorecardHasAtlasGoalSortInput = {
|
|
65836
66441
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65837
66442
|
};
|
|
66443
|
+
export declare type GraphStoreSecodaDownstreamLineageSortInput = {
|
|
66444
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66445
|
+
};
|
|
66446
|
+
export declare type GraphStoreSecodaSourceLineageSortInput = {
|
|
66447
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66448
|
+
};
|
|
66449
|
+
export declare type GraphStoreSecodaTargetLineageSortInput = {
|
|
66450
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66451
|
+
};
|
|
65838
66452
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput = {
|
|
65839
66453
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65840
66454
|
};
|
|
@@ -66931,6 +67545,34 @@ export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommen
|
|
|
66931
67545
|
};
|
|
66932
67546
|
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
66933
67547
|
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityUnion = DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
|
|
67548
|
+
export declare type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagConnection = HasPageInfo & {
|
|
67549
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagConnection';
|
|
67550
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagEdge>>>;
|
|
67551
|
+
pageInfo: PageInfo;
|
|
67552
|
+
};
|
|
67553
|
+
export declare type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagEdge = {
|
|
67554
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagEdge';
|
|
67555
|
+
createdAt: Scalars['DateTime']['output'];
|
|
67556
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
67557
|
+
id: Scalars['ID']['output'];
|
|
67558
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
67559
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagUnion>;
|
|
67560
|
+
};
|
|
67561
|
+
export declare type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection = HasPageInfo & {
|
|
67562
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection';
|
|
67563
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge>>>;
|
|
67564
|
+
pageInfo: PageInfo;
|
|
67565
|
+
};
|
|
67566
|
+
export declare type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge = {
|
|
67567
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge';
|
|
67568
|
+
createdAt: Scalars['DateTime']['output'];
|
|
67569
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
67570
|
+
id: Scalars['ID']['output'];
|
|
67571
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
67572
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseUnion>;
|
|
67573
|
+
};
|
|
67574
|
+
export declare type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
67575
|
+
export declare type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagUnion = TownsquareTag;
|
|
66934
67576
|
export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection = HasPageInfo & {
|
|
66935
67577
|
__typename?: 'GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection';
|
|
66936
67578
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingEdge>>>;
|
|
@@ -67211,6 +67853,20 @@ export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInver
|
|
|
67211
67853
|
};
|
|
67212
67854
|
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
67213
67855
|
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusUnion = ExternalTestStatus;
|
|
67856
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection = HasPageInfo & {
|
|
67857
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection';
|
|
67858
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseEdge>>>;
|
|
67859
|
+
pageInfo: PageInfo;
|
|
67860
|
+
};
|
|
67861
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseEdge = {
|
|
67862
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseEdge';
|
|
67863
|
+
createdAt: Scalars['DateTime']['output'];
|
|
67864
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
67865
|
+
id: Scalars['ID']['output'];
|
|
67866
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
67867
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion>;
|
|
67868
|
+
};
|
|
67869
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
67214
67870
|
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection = HasPageInfo & {
|
|
67215
67871
|
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection';
|
|
67216
67872
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactEdge>>>;
|
|
@@ -69511,6 +70167,20 @@ export declare type GraphStoreSimplifiedInferredProjectLinksEntityEdge = {
|
|
|
69511
70167
|
node?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityUnion>;
|
|
69512
70168
|
};
|
|
69513
70169
|
export declare type GraphStoreSimplifiedInferredProjectLinksEntityUnion = JiraIssue | JiraProject;
|
|
70170
|
+
export declare type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
|
|
70171
|
+
__typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection';
|
|
70172
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge>>>;
|
|
70173
|
+
pageInfo: PageInfo;
|
|
70174
|
+
};
|
|
70175
|
+
export declare type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge = {
|
|
70176
|
+
__typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge';
|
|
70177
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70178
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70179
|
+
id: Scalars['ID']['output'];
|
|
70180
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70181
|
+
node?: Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion>;
|
|
70182
|
+
};
|
|
70183
|
+
export declare type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = JiraProject;
|
|
69514
70184
|
export declare type GraphStoreSimplifiedIssueAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
69515
70185
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchConnection';
|
|
69516
70186
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBranchEdge>>>;
|
|
@@ -72152,7 +72822,7 @@ export declare type GraphStoreSimplifiedProjectLinksToEntityInverseEdge = {
|
|
|
72152
72822
|
node?: Maybe<GraphStoreSimplifiedProjectLinksToEntityInverseUnion>;
|
|
72153
72823
|
};
|
|
72154
72824
|
export declare type GraphStoreSimplifiedProjectLinksToEntityInverseUnion = TownsquareProject;
|
|
72155
|
-
export declare type GraphStoreSimplifiedProjectLinksToEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomSpace | LoomVideo;
|
|
72825
|
+
export declare type GraphStoreSimplifiedProjectLinksToEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
72156
72826
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceConnection = HasPageInfo & {
|
|
72157
72827
|
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceConnection';
|
|
72158
72828
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceEdge>>>;
|
|
@@ -78390,6 +79060,8 @@ export declare type GraphStoreV2 = {
|
|
|
78390
79060
|
atlassianProjectHasAtlassianProjectUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianProjectHasAtlassianProjectUpdateConnection>;
|
|
78391
79061
|
atlassianProjectHasAtlassianProjectUpdateInverse?: Maybe<GraphStoreV2SimplifiedAtlassianProjectHasAtlassianProjectUpdateInverseConnection>;
|
|
78392
79062
|
atlassianProjectLinksAtlassianProject?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectConnection>;
|
|
79063
|
+
atlassianProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityConnection>;
|
|
79064
|
+
atlassianProjectLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseConnection>;
|
|
78393
79065
|
atlassianTeamAssignedJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection>;
|
|
78394
79066
|
atlassianTeamAssignedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemInverseConnection>;
|
|
78395
79067
|
atlassianTeamContributesToAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalConnection>;
|
|
@@ -78424,6 +79096,7 @@ export declare type GraphStoreV2 = {
|
|
|
78424
79096
|
atlassianUserAuthoritativelyLinkedExternalUserInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserAuthoritativelyLinkedExternalUserInverseConnection>;
|
|
78425
79097
|
atlassianUserCanViewConfluenceSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceConnection>;
|
|
78426
79098
|
atlassianUserCanViewConfluenceSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInverseConnection>;
|
|
79099
|
+
atlassianUserCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection>;
|
|
78427
79100
|
atlassianUserContributedToConfluenceBlogpost?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection>;
|
|
78428
79101
|
atlassianUserContributedToConfluenceBlogpostInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostInverseConnection>;
|
|
78429
79102
|
atlassianUserContributedToConfluenceDatabase?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceDatabaseConnection>;
|
|
@@ -78500,6 +79173,8 @@ export declare type GraphStoreV2 = {
|
|
|
78500
79173
|
atlassianUserFavoritedFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedFocusFocusAreaInverseConnection>;
|
|
78501
79174
|
atlassianUserFollowsAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianGoalConnection>;
|
|
78502
79175
|
atlassianUserFollowsAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianGoalInverseConnection>;
|
|
79176
|
+
atlassianUserFollowsAtlassianHomeTag?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagConnection>;
|
|
79177
|
+
atlassianUserFollowsAtlassianHomeTagInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection>;
|
|
78503
79178
|
atlassianUserFollowsAtlassianProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianProjectConnection>;
|
|
78504
79179
|
atlassianUserFollowsAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianProjectInverseConnection>;
|
|
78505
79180
|
atlassianUserHasConfluenceMeetingNotesFolder?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasConfluenceMeetingNotesFolderConnection>;
|
|
@@ -78512,7 +79187,6 @@ export declare type GraphStoreV2 = {
|
|
|
78512
79187
|
atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
78513
79188
|
atlassianUserIsInAtlassianTeam?: Maybe<GraphStoreV2SimplifiedAtlassianUserIsInAtlassianTeamConnection>;
|
|
78514
79189
|
atlassianUserIsInAtlassianTeamInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserIsInAtlassianTeamInverseConnection>;
|
|
78515
|
-
atlassianUserIsInInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserIsInInferredProjectInverseConnection>;
|
|
78516
79190
|
atlassianUserLaunchedJiraRelease?: Maybe<GraphStoreV2SimplifiedAtlassianUserLaunchedJiraReleaseConnection>;
|
|
78517
79191
|
atlassianUserLaunchedJiraReleaseInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserLaunchedJiraReleaseInverseConnection>;
|
|
78518
79192
|
atlassianUserLikedConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserLikedConfluencePageConnection>;
|
|
@@ -78549,6 +79223,7 @@ export declare type GraphStoreV2 = {
|
|
|
78549
79223
|
atlassianUserOwnsFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaInverseConnection>;
|
|
78550
79224
|
atlassianUserOwnsFocusStrategicPlan?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanConnection>;
|
|
78551
79225
|
atlassianUserOwnsFocusStrategicPlanInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseConnection>;
|
|
79226
|
+
atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
|
|
78552
79227
|
atlassianUserReactedToJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection>;
|
|
78553
79228
|
atlassianUserReactedToJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentInverseConnection>;
|
|
78554
79229
|
atlassianUserReactedToLoomVideo?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToLoomVideoConnection>;
|
|
@@ -78920,6 +79595,7 @@ export declare type GraphStoreV2 = {
|
|
|
78920
79595
|
focusStrategicPlanScenarioInvestmentHasInvestmentEntity?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityConnection>;
|
|
78921
79596
|
focusStrategicPlanScenarioInvestmentHasInvestmentEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityInverseConnection>;
|
|
78922
79597
|
inferredProjectLinksEntity?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityConnection>;
|
|
79598
|
+
inferredTeamCollaboratesOnInferredProjectInverse?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection>;
|
|
78923
79599
|
jiraEpicTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection>;
|
|
78924
79600
|
jiraEpicTracksAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectInverseConnection>;
|
|
78925
79601
|
jiraSpaceExplicitlyLinksExternalRepository?: Maybe<GraphStoreV2SimplifiedJiraSpaceExplicitlyLinksExternalRepositoryConnection>;
|
|
@@ -79024,8 +79700,8 @@ export declare type GraphStoreV2 = {
|
|
|
79024
79700
|
jiraWorkItemHasJiraPriorityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraPriorityInverseConnection>;
|
|
79025
79701
|
jiraWorkItemHasJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentConnection>;
|
|
79026
79702
|
jiraWorkItemHasJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseConnection>;
|
|
79027
|
-
|
|
79028
|
-
|
|
79703
|
+
jiraWorkItemLinksAssetsObject?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection>;
|
|
79704
|
+
jiraWorkItemLinksAssetsObjectInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseConnection>;
|
|
79029
79705
|
jiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection>;
|
|
79030
79706
|
jiraWorkItemLinksConfluenceWhiteboardInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardInverseConnection>;
|
|
79031
79707
|
jiraWorkItemLinksExternalBranch?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalBranchConnection>;
|
|
@@ -79269,6 +79945,20 @@ export declare type GraphStoreV2AtlassianProjectLinksAtlassianProjectArgs = {
|
|
|
79269
79945
|
id: Scalars['ID']['input'];
|
|
79270
79946
|
sort?: InputMaybe<GraphStoreV2AtlassianProjectLinksAtlassianProjectSortInput>;
|
|
79271
79947
|
};
|
|
79948
|
+
export declare type GraphStoreV2AtlassianProjectLinksEntityArgs = {
|
|
79949
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
79950
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
79951
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79952
|
+
id: Scalars['ID']['input'];
|
|
79953
|
+
sort?: InputMaybe<GraphStoreV2AtlassianProjectLinksEntitySortInput>;
|
|
79954
|
+
};
|
|
79955
|
+
export declare type GraphStoreV2AtlassianProjectLinksEntityInverseArgs = {
|
|
79956
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
79957
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
79958
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79959
|
+
id: Scalars['ID']['input'];
|
|
79960
|
+
sort?: InputMaybe<GraphStoreV2AtlassianProjectLinksEntitySortInput>;
|
|
79961
|
+
};
|
|
79272
79962
|
export declare type GraphStoreV2AtlassianTeamAssignedJiraWorkItemArgs = {
|
|
79273
79963
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
79274
79964
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -79509,6 +80199,13 @@ export declare type GraphStoreV2AtlassianUserCanViewConfluenceSpaceInverseArgs =
|
|
|
79509
80199
|
id: Scalars['ID']['input'];
|
|
79510
80200
|
sort?: InputMaybe<GraphStoreV2AtlassianUserCanViewConfluenceSpaceSortInput>;
|
|
79511
80201
|
};
|
|
80202
|
+
export declare type GraphStoreV2AtlassianUserCollaboratesOnInferredProjectInverseArgs = {
|
|
80203
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80204
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80205
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80206
|
+
id: Scalars['ID']['input'];
|
|
80207
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserCollaboratesOnInferredProjectSortInput>;
|
|
80208
|
+
};
|
|
79512
80209
|
export declare type GraphStoreV2AtlassianUserContributedToConfluenceBlogpostArgs = {
|
|
79513
80210
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
79514
80211
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -80043,6 +80740,20 @@ export declare type GraphStoreV2AtlassianUserFollowsAtlassianGoalInverseArgs = {
|
|
|
80043
80740
|
id: Scalars['ID']['input'];
|
|
80044
80741
|
sort?: InputMaybe<GraphStoreV2AtlassianUserFollowsAtlassianGoalSortInput>;
|
|
80045
80742
|
};
|
|
80743
|
+
export declare type GraphStoreV2AtlassianUserFollowsAtlassianHomeTagArgs = {
|
|
80744
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80745
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80746
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80747
|
+
id: Scalars['ID']['input'];
|
|
80748
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
80749
|
+
};
|
|
80750
|
+
export declare type GraphStoreV2AtlassianUserFollowsAtlassianHomeTagInverseArgs = {
|
|
80751
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80752
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80753
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80754
|
+
id: Scalars['ID']['input'];
|
|
80755
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
80756
|
+
};
|
|
80046
80757
|
export declare type GraphStoreV2AtlassianUserFollowsAtlassianProjectArgs = {
|
|
80047
80758
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80048
80759
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -80127,13 +80838,6 @@ export declare type GraphStoreV2AtlassianUserIsInAtlassianTeamInverseArgs = {
|
|
|
80127
80838
|
id: Scalars['ID']['input'];
|
|
80128
80839
|
sort?: InputMaybe<GraphStoreV2AtlassianUserIsInAtlassianTeamSortInput>;
|
|
80129
80840
|
};
|
|
80130
|
-
export declare type GraphStoreV2AtlassianUserIsInInferredProjectInverseArgs = {
|
|
80131
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
80132
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80133
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80134
|
-
id: Scalars['ID']['input'];
|
|
80135
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserIsInInferredProjectSortInput>;
|
|
80136
|
-
};
|
|
80137
80841
|
export declare type GraphStoreV2AtlassianUserLaunchedJiraReleaseArgs = {
|
|
80138
80842
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80139
80843
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -80390,6 +81094,13 @@ export declare type GraphStoreV2AtlassianUserOwnsFocusStrategicPlanInverseArgs =
|
|
|
80390
81094
|
id: Scalars['ID']['input'];
|
|
80391
81095
|
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsFocusStrategicPlanSortInput>;
|
|
80392
81096
|
};
|
|
81097
|
+
export declare type GraphStoreV2AtlassianUserOwnsInferredProjectInverseArgs = {
|
|
81098
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81099
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81100
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81101
|
+
id: Scalars['ID']['input'];
|
|
81102
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsInferredProjectSortInput>;
|
|
81103
|
+
};
|
|
80393
81104
|
export declare type GraphStoreV2AtlassianUserReactedToJiraWorkItemCommentArgs = {
|
|
80394
81105
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80395
81106
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -82994,6 +83705,13 @@ export declare type GraphStoreV2InferredProjectLinksEntityArgs = {
|
|
|
82994
83705
|
id: Scalars['ID']['input'];
|
|
82995
83706
|
sort?: InputMaybe<GraphStoreV2InferredProjectLinksEntitySortInput>;
|
|
82996
83707
|
};
|
|
83708
|
+
export declare type GraphStoreV2InferredTeamCollaboratesOnInferredProjectInverseArgs = {
|
|
83709
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
83710
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83711
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83712
|
+
id: Scalars['ID']['input'];
|
|
83713
|
+
sort?: InputMaybe<GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput>;
|
|
83714
|
+
};
|
|
82997
83715
|
export declare type GraphStoreV2JiraEpicTracksAtlassianProjectArgs = {
|
|
82998
83716
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
82999
83717
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -83754,19 +84472,19 @@ export declare type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentInverseArgs =
|
|
|
83754
84472
|
id: Scalars['ID']['input'];
|
|
83755
84473
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput>;
|
|
83756
84474
|
};
|
|
83757
|
-
export declare type
|
|
84475
|
+
export declare type GraphStoreV2JiraWorkItemLinksAssetsObjectArgs = {
|
|
83758
84476
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
83759
84477
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83760
84478
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83761
84479
|
id: Scalars['ID']['input'];
|
|
83762
|
-
sort?: InputMaybe<
|
|
84480
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksAssetsObjectSortInput>;
|
|
83763
84481
|
};
|
|
83764
|
-
export declare type
|
|
84482
|
+
export declare type GraphStoreV2JiraWorkItemLinksAssetsObjectInverseArgs = {
|
|
83765
84483
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
83766
84484
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83767
84485
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83768
84486
|
id: Scalars['ID']['input'];
|
|
83769
|
-
sort?: InputMaybe<
|
|
84487
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksAssetsObjectSortInput>;
|
|
83770
84488
|
};
|
|
83771
84489
|
export declare type GraphStoreV2JiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
83772
84490
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -84287,6 +85005,9 @@ export declare type GraphStoreV2AtlassianProjectHasAtlassianProjectUpdateSortInp
|
|
|
84287
85005
|
export declare type GraphStoreV2AtlassianProjectLinksAtlassianProjectSortInput = {
|
|
84288
85006
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84289
85007
|
};
|
|
85008
|
+
export declare type GraphStoreV2AtlassianProjectLinksEntitySortInput = {
|
|
85009
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
85010
|
+
};
|
|
84290
85011
|
export declare type GraphStoreV2AtlassianTeamAssignedJiraWorkItemSortInput = {
|
|
84291
85012
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84292
85013
|
};
|
|
@@ -84366,6 +85087,9 @@ export declare type GraphStoreV2AtlassianUserAuthoritativelyLinkedExternalUserSo
|
|
|
84366
85087
|
export declare type GraphStoreV2AtlassianUserCanViewConfluenceSpaceSortInput = {
|
|
84367
85088
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84368
85089
|
};
|
|
85090
|
+
export declare type GraphStoreV2AtlassianUserCollaboratesOnInferredProjectSortInput = {
|
|
85091
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
85092
|
+
};
|
|
84369
85093
|
export declare type GraphStoreV2AtlassianUserContributedToConfluenceBlogpostSortInput = {
|
|
84370
85094
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84371
85095
|
};
|
|
@@ -84533,6 +85257,9 @@ export declare type GraphStoreV2AtlassianUserFavoritedFocusFocusAreaSortInput =
|
|
|
84533
85257
|
export declare type GraphStoreV2AtlassianUserFollowsAtlassianGoalSortInput = {
|
|
84534
85258
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84535
85259
|
};
|
|
85260
|
+
export declare type GraphStoreV2AtlassianUserFollowsAtlassianHomeTagSortInput = {
|
|
85261
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
85262
|
+
};
|
|
84536
85263
|
export declare type GraphStoreV2AtlassianUserFollowsAtlassianProjectSortInput = {
|
|
84537
85264
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84538
85265
|
};
|
|
@@ -84557,9 +85284,6 @@ export declare type GraphStoreV2AtlassianUserInvitedToLoomMeetingSortInput = {
|
|
|
84557
85284
|
export declare type GraphStoreV2AtlassianUserIsInAtlassianTeamSortInput = {
|
|
84558
85285
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84559
85286
|
};
|
|
84560
|
-
export declare type GraphStoreV2AtlassianUserIsInInferredProjectSortInput = {
|
|
84561
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84562
|
-
};
|
|
84563
85287
|
export declare type GraphStoreV2AtlassianUserLaunchedJiraReleaseSortInput = {
|
|
84564
85288
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84565
85289
|
};
|
|
@@ -84648,6 +85372,9 @@ export declare type GraphStoreV2AtlassianUserOwnsFocusFocusAreaSortInput = {
|
|
|
84648
85372
|
export declare type GraphStoreV2AtlassianUserOwnsFocusStrategicPlanSortInput = {
|
|
84649
85373
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84650
85374
|
};
|
|
85375
|
+
export declare type GraphStoreV2AtlassianUserOwnsInferredProjectSortInput = {
|
|
85376
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
85377
|
+
};
|
|
84651
85378
|
export declare type GraphStoreV2AtlassianUserReactedToJiraWorkItemCommentSortInput = {
|
|
84652
85379
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
84653
85380
|
};
|
|
@@ -86233,6 +86960,9 @@ export declare type GraphStoreV2FocusStrategicPlanScenarioInvestmentHasInvestmen
|
|
|
86233
86960
|
export declare type GraphStoreV2InferredProjectLinksEntitySortInput = {
|
|
86234
86961
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86235
86962
|
};
|
|
86963
|
+
export declare type GraphStoreV2InferredTeamCollaboratesOnInferredProjectSortInput = {
|
|
86964
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86965
|
+
};
|
|
86236
86966
|
export declare type GraphStoreV2JiraEpicTracksAtlassianProjectSortInput = {
|
|
86237
86967
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86238
86968
|
};
|
|
@@ -87194,7 +87924,7 @@ export declare type GraphStoreV2JiraWorkItemHasJiraPrioritySortInput = {
|
|
|
87194
87924
|
export declare type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput = {
|
|
87195
87925
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87196
87926
|
};
|
|
87197
|
-
export declare type
|
|
87927
|
+
export declare type GraphStoreV2JiraWorkItemLinksAssetsObjectSortInput = {
|
|
87198
87928
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87199
87929
|
};
|
|
87200
87930
|
export declare type GraphStoreV2JiraWorkItemLinksConfluenceWhiteboardConditionalFilterInput = {
|
|
@@ -88078,6 +88808,34 @@ export declare type GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectE
|
|
|
88078
88808
|
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectUnion>;
|
|
88079
88809
|
};
|
|
88080
88810
|
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectUnion = TownsquareProject;
|
|
88811
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityConnection = HasPageInfo & {
|
|
88812
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianProjectLinksEntityConnection';
|
|
88813
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityEdge>>>;
|
|
88814
|
+
pageInfo: PageInfo;
|
|
88815
|
+
};
|
|
88816
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityEdge = {
|
|
88817
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianProjectLinksEntityEdge';
|
|
88818
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88819
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88820
|
+
id: Scalars['ID']['output'];
|
|
88821
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88822
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityUnion>;
|
|
88823
|
+
};
|
|
88824
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseConnection = HasPageInfo & {
|
|
88825
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseConnection';
|
|
88826
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseEdge>>>;
|
|
88827
|
+
pageInfo: PageInfo;
|
|
88828
|
+
};
|
|
88829
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseEdge = {
|
|
88830
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseEdge';
|
|
88831
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88832
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88833
|
+
id: Scalars['ID']['output'];
|
|
88834
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88835
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseUnion>;
|
|
88836
|
+
};
|
|
88837
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseUnion = TownsquareProject;
|
|
88838
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
88081
88839
|
export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection = HasPageInfo & {
|
|
88082
88840
|
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection';
|
|
88083
88841
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemEdge>>>;
|
|
@@ -88566,6 +89324,20 @@ export declare type GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInv
|
|
|
88566
89324
|
};
|
|
88567
89325
|
export declare type GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
88568
89326
|
export declare type GraphStoreV2SimplifiedAtlassianUserCanViewConfluenceSpaceUnion = ConfluenceSpace;
|
|
89327
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
|
|
89328
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseConnection';
|
|
89329
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseEdge>>>;
|
|
89330
|
+
pageInfo: PageInfo;
|
|
89331
|
+
};
|
|
89332
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseEdge = {
|
|
89333
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseEdge';
|
|
89334
|
+
createdAt: Scalars['DateTime']['output'];
|
|
89335
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
89336
|
+
id: Scalars['ID']['output'];
|
|
89337
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
89338
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseUnion>;
|
|
89339
|
+
};
|
|
89340
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCollaboratesOnInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
88569
89341
|
export declare type GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection = HasPageInfo & {
|
|
88570
89342
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostConnection';
|
|
88571
89343
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserContributedToConfluenceBlogpostEdge>>>;
|
|
@@ -89646,6 +90418,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianGoalInver
|
|
|
89646
90418
|
};
|
|
89647
90419
|
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
89648
90420
|
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianGoalUnion = TownsquareGoal;
|
|
90421
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagConnection = HasPageInfo & {
|
|
90422
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagConnection';
|
|
90423
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagEdge>>>;
|
|
90424
|
+
pageInfo: PageInfo;
|
|
90425
|
+
};
|
|
90426
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagEdge = {
|
|
90427
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagEdge';
|
|
90428
|
+
createdAt: Scalars['DateTime']['output'];
|
|
90429
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
90430
|
+
id: Scalars['ID']['output'];
|
|
90431
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
90432
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagUnion>;
|
|
90433
|
+
};
|
|
90434
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection = HasPageInfo & {
|
|
90435
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection';
|
|
90436
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge>>>;
|
|
90437
|
+
pageInfo: PageInfo;
|
|
90438
|
+
};
|
|
90439
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge = {
|
|
90440
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge';
|
|
90441
|
+
createdAt: Scalars['DateTime']['output'];
|
|
90442
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
90443
|
+
id: Scalars['ID']['output'];
|
|
90444
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
90445
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseUnion>;
|
|
90446
|
+
};
|
|
90447
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
90448
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianHomeTagUnion = TownsquareTag;
|
|
89649
90449
|
export declare type GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianProjectConnection = HasPageInfo & {
|
|
89650
90450
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianProjectConnection';
|
|
89651
90451
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserFollowsAtlassianProjectEdge>>>;
|
|
@@ -89822,20 +90622,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserIsInAtlassianTeamInverseE
|
|
|
89822
90622
|
};
|
|
89823
90623
|
export declare type GraphStoreV2SimplifiedAtlassianUserIsInAtlassianTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
89824
90624
|
export declare type GraphStoreV2SimplifiedAtlassianUserIsInAtlassianTeamUnion = TeamV2;
|
|
89825
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserIsInInferredProjectInverseConnection = HasPageInfo & {
|
|
89826
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserIsInInferredProjectInverseConnection';
|
|
89827
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserIsInInferredProjectInverseEdge>>>;
|
|
89828
|
-
pageInfo: PageInfo;
|
|
89829
|
-
};
|
|
89830
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserIsInInferredProjectInverseEdge = {
|
|
89831
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserIsInInferredProjectInverseEdge';
|
|
89832
|
-
createdAt: Scalars['DateTime']['output'];
|
|
89833
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
89834
|
-
id: Scalars['ID']['output'];
|
|
89835
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
89836
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserIsInInferredProjectInverseUnion>;
|
|
89837
|
-
};
|
|
89838
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserIsInInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
89839
90625
|
export declare type GraphStoreV2SimplifiedAtlassianUserLaunchedJiraReleaseConnection = HasPageInfo & {
|
|
89840
90626
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserLaunchedJiraReleaseConnection';
|
|
89841
90627
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserLaunchedJiraReleaseEdge>>>;
|
|
@@ -90348,6 +91134,20 @@ export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInv
|
|
|
90348
91134
|
};
|
|
90349
91135
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
90350
91136
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanUnion = SpfPlan;
|
|
91137
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection = HasPageInfo & {
|
|
91138
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseConnection';
|
|
91139
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseEdge>>>;
|
|
91140
|
+
pageInfo: PageInfo;
|
|
91141
|
+
};
|
|
91142
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseEdge = {
|
|
91143
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseEdge';
|
|
91144
|
+
createdAt: Scalars['DateTime']['output'];
|
|
91145
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
91146
|
+
id: Scalars['ID']['output'];
|
|
91147
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
91148
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseUnion>;
|
|
91149
|
+
};
|
|
91150
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
90351
91151
|
export declare type GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection = HasPageInfo & {
|
|
90352
91152
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection';
|
|
90353
91153
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentEdge>>>;
|
|
@@ -95564,6 +96364,20 @@ export declare type GraphStoreV2SimplifiedInferredProjectLinksEntityEdge = {
|
|
|
95564
96364
|
node?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityUnion>;
|
|
95565
96365
|
};
|
|
95566
96366
|
export declare type GraphStoreV2SimplifiedInferredProjectLinksEntityUnion = JiraIssue | JiraProject;
|
|
96367
|
+
export declare type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
|
|
96368
|
+
__typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection';
|
|
96369
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge>>>;
|
|
96370
|
+
pageInfo: PageInfo;
|
|
96371
|
+
};
|
|
96372
|
+
export declare type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge = {
|
|
96373
|
+
__typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge';
|
|
96374
|
+
createdAt: Scalars['DateTime']['output'];
|
|
96375
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
96376
|
+
id: Scalars['ID']['output'];
|
|
96377
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
96378
|
+
node?: Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion>;
|
|
96379
|
+
};
|
|
96380
|
+
export declare type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseUnion = JiraProject;
|
|
95567
96381
|
export declare type GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection = HasPageInfo & {
|
|
95568
96382
|
__typename?: 'GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection';
|
|
95569
96383
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectEdge>>>;
|
|
@@ -95927,7 +96741,7 @@ export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseEdge = {
|
|
|
95927
96741
|
node?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseUnion>;
|
|
95928
96742
|
};
|
|
95929
96743
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseUnion = TownsquareProject;
|
|
95930
|
-
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomSpace | LoomVideo;
|
|
96744
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
95931
96745
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchConnection = HasPageInfo & HasTotal & {
|
|
95932
96746
|
__typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchConnection';
|
|
95933
96747
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchEdge>>>;
|
|
@@ -97172,34 +97986,34 @@ export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInve
|
|
|
97172
97986
|
};
|
|
97173
97987
|
export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseUnion = JiraIssue;
|
|
97174
97988
|
export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
97175
|
-
export declare type
|
|
97176
|
-
__typename?: '
|
|
97177
|
-
edges?: Maybe<Array<Maybe<
|
|
97989
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection = HasPageInfo & {
|
|
97990
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectConnection';
|
|
97991
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectEdge>>>;
|
|
97178
97992
|
pageInfo: PageInfo;
|
|
97179
97993
|
};
|
|
97180
|
-
export declare type
|
|
97181
|
-
__typename?: '
|
|
97994
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectEdge = {
|
|
97995
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectEdge';
|
|
97182
97996
|
createdAt: Scalars['DateTime']['output'];
|
|
97183
97997
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
97184
97998
|
id: Scalars['ID']['output'];
|
|
97185
97999
|
lastUpdated: Scalars['DateTime']['output'];
|
|
97186
|
-
node?: Maybe<
|
|
98000
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectUnion>;
|
|
97187
98001
|
};
|
|
97188
|
-
export declare type
|
|
97189
|
-
__typename?: '
|
|
97190
|
-
edges?: Maybe<Array<Maybe<
|
|
98002
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseConnection = HasPageInfo & {
|
|
98003
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseConnection';
|
|
98004
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseEdge>>>;
|
|
97191
98005
|
pageInfo: PageInfo;
|
|
97192
98006
|
};
|
|
97193
|
-
export declare type
|
|
97194
|
-
__typename?: '
|
|
98007
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseEdge = {
|
|
98008
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseEdge';
|
|
97195
98009
|
createdAt: Scalars['DateTime']['output'];
|
|
97196
98010
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
97197
98011
|
id: Scalars['ID']['output'];
|
|
97198
98012
|
lastUpdated: Scalars['DateTime']['output'];
|
|
97199
|
-
node?: Maybe<
|
|
98013
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseUnion>;
|
|
97200
98014
|
};
|
|
97201
|
-
export declare type
|
|
97202
|
-
export declare type
|
|
98015
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectInverseUnion = JiraIssue;
|
|
98016
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetsObjectUnion = AssetsObject;
|
|
97203
98017
|
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection = HasPageInfo & HasTotal & {
|
|
97204
98018
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection';
|
|
97205
98019
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardEdge>>>;
|
|
@@ -98467,14 +99281,15 @@ export declare type GravityViewConfig = {
|
|
|
98467
99281
|
columnSize?: Maybe<GravityViewColumnSize>;
|
|
98468
99282
|
fieldRollups?: Maybe<Array<GravityFieldRollup>>;
|
|
98469
99283
|
fields: Array<Scalars['ID']['output']>;
|
|
98470
|
-
filter
|
|
99284
|
+
filter?: Maybe<Array<GravityViewFilter>>;
|
|
98471
99285
|
groupBy?: Maybe<Scalars['ID']['output']>;
|
|
98472
99286
|
groupsFilter?: Maybe<Array<GravityViewFilter>>;
|
|
98473
99287
|
hideEmptyColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
98474
99288
|
hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
|
|
98475
99289
|
layoutType?: Maybe<GravityViewLayoutType>;
|
|
98476
|
-
sort
|
|
99290
|
+
sort?: Maybe<Array<GravityViewSort>>;
|
|
98477
99291
|
sortMode?: Maybe<GravityViewSortMode>;
|
|
99292
|
+
tableColumnSizes?: Maybe<Array<GravityViewTableColumnSize>>;
|
|
98478
99293
|
verticalGroupBy?: Maybe<Scalars['ID']['output']>;
|
|
98479
99294
|
verticalGroupsFilter?: Maybe<Array<GravityViewFilter>>;
|
|
98480
99295
|
};
|
|
@@ -98534,6 +99349,11 @@ export declare enum GravityViewSortMode {
|
|
|
98534
99349
|
ProjectRank = "PROJECT_RANK",
|
|
98535
99350
|
ViewRank = "VIEW_RANK"
|
|
98536
99351
|
}
|
|
99352
|
+
export declare type GravityViewTableColumnSize = {
|
|
99353
|
+
__typename?: 'GravityViewTableColumnSize';
|
|
99354
|
+
field: Scalars['ID']['output'];
|
|
99355
|
+
size: Scalars['Int']['output'];
|
|
99356
|
+
};
|
|
98537
99357
|
export declare type GravityViewTemplate = {
|
|
98538
99358
|
__typename?: 'GravityViewTemplate';
|
|
98539
99359
|
colorScheme?: Maybe<GravityViewTemplateColorScheme>;
|
|
@@ -99854,6 +100674,7 @@ export declare type HelpCenterBrandingInput = {
|
|
|
99854
100674
|
colors?: InputMaybe<HelpCenterBrandingColorsInput>;
|
|
99855
100675
|
homePageTitle?: InputMaybe<HelpCenterHomePageTitleInput>;
|
|
99856
100676
|
logo?: InputMaybe<HelpCenterLogoInput>;
|
|
100677
|
+
navigationBar?: InputMaybe<HelpCenterNavigationBarInput>;
|
|
99857
100678
|
};
|
|
99858
100679
|
export declare type HelpCenterBulkCreateTopicsInput = {
|
|
99859
100680
|
helpCenterCreateTopicInputItem: Array<HelpCenterCreateTopicInput>;
|
|
@@ -100089,6 +100910,15 @@ export declare enum HelpCenterNavigationBarBorderType {
|
|
|
100089
100910
|
BottomBorder = "BOTTOM_BORDER",
|
|
100090
100911
|
NoBorder = "NO_BORDER"
|
|
100091
100912
|
}
|
|
100913
|
+
export declare type HelpCenterNavigationBarInput = {
|
|
100914
|
+
backgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
100915
|
+
borderColor?: InputMaybe<Scalars['String']['input']>;
|
|
100916
|
+
borderType?: InputMaybe<HelpCenterNavigationBarBorderType>;
|
|
100917
|
+
cornerRadius?: InputMaybe<Scalars['Int']['input']>;
|
|
100918
|
+
padding?: InputMaybe<Scalars['Boolean']['input']>;
|
|
100919
|
+
positionType?: InputMaybe<HelpCenterNavigationBarPositionType>;
|
|
100920
|
+
textColor?: InputMaybe<Scalars['String']['input']>;
|
|
100921
|
+
};
|
|
100092
100922
|
export declare enum HelpCenterNavigationBarPositionType {
|
|
100093
100923
|
Fixed = "FIXED",
|
|
100094
100924
|
Floating = "FLOATING"
|
|
@@ -100101,6 +100931,7 @@ export declare type HelpCenterPage = Node & {
|
|
|
100101
100931
|
id: Scalars['ID']['output'];
|
|
100102
100932
|
name?: Maybe<HelpCenterPageName>;
|
|
100103
100933
|
pageLayout?: Maybe<HelpCenterPageLayout>;
|
|
100934
|
+
pageType?: Maybe<HelpCenterPageType>;
|
|
100104
100935
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
100105
100936
|
};
|
|
100106
100937
|
export declare type HelpCenterPageCreateInput = {
|
|
@@ -100156,7 +100987,8 @@ export declare type HelpCenterPageQueryResultEdge = {
|
|
|
100156
100987
|
node?: Maybe<HelpCenterPageQueryResult>;
|
|
100157
100988
|
};
|
|
100158
100989
|
export declare enum HelpCenterPageType {
|
|
100159
|
-
Custom = "CUSTOM"
|
|
100990
|
+
Custom = "CUSTOM",
|
|
100991
|
+
Portal = "PORTAL"
|
|
100160
100992
|
}
|
|
100161
100993
|
export declare type HelpCenterPageUpdateInput = {
|
|
100162
100994
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -101886,6 +102718,9 @@ export declare type IncomingLinksCount = {
|
|
|
101886
102718
|
__typename?: 'IncomingLinksCount';
|
|
101887
102719
|
count?: Maybe<Scalars['Int']['output']>;
|
|
101888
102720
|
};
|
|
102721
|
+
export declare type IndexHintInputType = {
|
|
102722
|
+
hints?: InputMaybe<Array<InputMaybe<PreferredIndexInputType>>>;
|
|
102723
|
+
};
|
|
101889
102724
|
export declare type IndividualInlineTaskNotification = {
|
|
101890
102725
|
__typename?: 'IndividualInlineTaskNotification';
|
|
101891
102726
|
notificationAction?: Maybe<NotificationAction>;
|
|
@@ -102916,6 +103751,19 @@ export declare type JiraActivitySortOrderPayload = Payload & {
|
|
|
102916
103751
|
errors?: Maybe<Array<MutationError>>;
|
|
102917
103752
|
success: Scalars['Boolean']['output'];
|
|
102918
103753
|
};
|
|
103754
|
+
export declare type JiraActor = {
|
|
103755
|
+
user?: Maybe<User>;
|
|
103756
|
+
};
|
|
103757
|
+
export declare type JiraActorConnection = HasPageInfo & {
|
|
103758
|
+
__typename?: 'JiraActorConnection';
|
|
103759
|
+
edges?: Maybe<Array<Maybe<JiraActorEdge>>>;
|
|
103760
|
+
pageInfo: PageInfo;
|
|
103761
|
+
};
|
|
103762
|
+
export declare type JiraActorEdge = {
|
|
103763
|
+
__typename?: 'JiraActorEdge';
|
|
103764
|
+
cursor: Scalars['String']['output'];
|
|
103765
|
+
node?: Maybe<JiraActor>;
|
|
103766
|
+
};
|
|
102919
103767
|
export declare type JiraAddAttachmentInput = {
|
|
102920
103768
|
fileId: Scalars['String']['input'];
|
|
102921
103769
|
issue: Scalars['ID']['input'];
|
|
@@ -103165,6 +104013,13 @@ export declare type JiraAgentAssignableInput = {
|
|
|
103165
104013
|
agentAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
103166
104014
|
agentId?: InputMaybe<Scalars['ID']['input']>;
|
|
103167
104015
|
};
|
|
104016
|
+
export declare type JiraAgenticUser = JiraActor & {
|
|
104017
|
+
__typename?: 'JiraAgenticUser';
|
|
104018
|
+
createdByUser?: Maybe<User>;
|
|
104019
|
+
isAssignable?: Maybe<Scalars['Boolean']['output']>;
|
|
104020
|
+
isFavorite?: Maybe<Scalars['Boolean']['output']>;
|
|
104021
|
+
user?: Maybe<User>;
|
|
104022
|
+
};
|
|
103168
104023
|
export declare type JiraAggregatedDate = JiraDatePickerField | JiraDateTimePickerField;
|
|
103169
104024
|
export declare type JiraAggregatedStatusField = JiraIssueField & JiraListRowField & Node & {
|
|
103170
104025
|
__typename?: 'JiraAggregatedStatusField';
|
|
@@ -104719,9 +105574,13 @@ export declare type JiraBacklogViewCardFieldInput = {
|
|
|
104719
105574
|
id: Scalars['ID']['input'];
|
|
104720
105575
|
};
|
|
104721
105576
|
export declare type JiraBacklogViewCardList = {
|
|
105577
|
+
estimationDetails?: Maybe<JiraBacklogViewEstimationDetails>;
|
|
104722
105578
|
id: Scalars['ID']['output'];
|
|
104723
105579
|
issues?: Maybe<JiraIssueConnection>;
|
|
104724
105580
|
};
|
|
105581
|
+
export declare type JiraBacklogViewCardListEstimationDetailsArgs = {
|
|
105582
|
+
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
105583
|
+
};
|
|
104725
105584
|
export declare type JiraBacklogViewCardListIssuesArgs = {
|
|
104726
105585
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
104727
105586
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -104752,9 +105611,14 @@ export declare type JiraBacklogViewColumn = {
|
|
|
104752
105611
|
export declare type JiraBacklogViewColumnCardList = JiraBacklogViewCardList & Node & {
|
|
104753
105612
|
__typename?: 'JiraBacklogViewColumnCardList';
|
|
104754
105613
|
column?: Maybe<JiraBacklogViewColumn>;
|
|
105614
|
+
columnConstraintIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
105615
|
+
estimationDetails?: Maybe<JiraBacklogViewEstimationDetails>;
|
|
104755
105616
|
id: Scalars['ID']['output'];
|
|
104756
105617
|
issues?: Maybe<JiraIssueConnection>;
|
|
104757
105618
|
};
|
|
105619
|
+
export declare type JiraBacklogViewColumnCardListEstimationDetailsArgs = {
|
|
105620
|
+
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
105621
|
+
};
|
|
104758
105622
|
export declare type JiraBacklogViewColumnCardListIssuesArgs = {
|
|
104759
105623
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
104760
105624
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -104762,6 +105626,13 @@ export declare type JiraBacklogViewColumnCardListIssuesArgs = {
|
|
|
104762
105626
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
104763
105627
|
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
104764
105628
|
};
|
|
105629
|
+
export declare type JiraBacklogViewEstimationDetails = {
|
|
105630
|
+
__typename?: 'JiraBacklogViewEstimationDetails';
|
|
105631
|
+
doneEstimate?: Maybe<Scalars['String']['output']>;
|
|
105632
|
+
inProgressEstimate?: Maybe<Scalars['String']['output']>;
|
|
105633
|
+
toDoEstimate?: Maybe<Scalars['String']['output']>;
|
|
105634
|
+
totalEstimate?: Maybe<Scalars['String']['output']>;
|
|
105635
|
+
};
|
|
104765
105636
|
export declare type JiraBacklogViewGlobalConfig = {
|
|
104766
105637
|
__typename?: 'JiraBacklogViewGlobalConfig';
|
|
104767
105638
|
parentHierarchyLevel?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
@@ -104780,13 +105651,18 @@ export declare type JiraBacklogViewQueryInput = {
|
|
|
104780
105651
|
export declare type JiraBacklogViewSettings = {
|
|
104781
105652
|
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
104782
105653
|
quickFilterIds?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
105654
|
+
skipCollapsedIssues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
104783
105655
|
};
|
|
104784
105656
|
export declare type JiraBacklogViewSprintCardList = JiraBacklogViewCardList & Node & {
|
|
104785
105657
|
__typename?: 'JiraBacklogViewSprintCardList';
|
|
105658
|
+
estimationDetails?: Maybe<JiraBacklogViewEstimationDetails>;
|
|
104786
105659
|
id: Scalars['ID']['output'];
|
|
104787
105660
|
issues?: Maybe<JiraIssueConnection>;
|
|
104788
105661
|
sprint?: Maybe<JiraSprint>;
|
|
104789
105662
|
};
|
|
105663
|
+
export declare type JiraBacklogViewSprintCardListEstimationDetailsArgs = {
|
|
105664
|
+
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
105665
|
+
};
|
|
104790
105666
|
export declare type JiraBacklogViewSprintCardListIssuesArgs = {
|
|
104791
105667
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
104792
105668
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -104973,6 +105849,7 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
104973
105849
|
isEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
104974
105850
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
104975
105851
|
isWorkflowsMigrationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
105852
|
+
issuePositions?: Maybe<Array<JiraBoardViewIssuePositions>>;
|
|
104976
105853
|
layout?: Maybe<JiraBoardViewLayout>;
|
|
104977
105854
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
104978
105855
|
sprints?: Maybe<JiraSprintConnection>;
|
|
@@ -105010,6 +105887,12 @@ export declare type JiraBoardViewIsEmptyArgs = {
|
|
|
105010
105887
|
export declare type JiraBoardViewIsViewConfigModifiedArgs = {
|
|
105011
105888
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
105012
105889
|
};
|
|
105890
|
+
export declare type JiraBoardViewIssuePositionsArgs = {
|
|
105891
|
+
columns: Array<Scalars['ID']['input']>;
|
|
105892
|
+
issues: Array<Scalars['ID']['input']>;
|
|
105893
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
105894
|
+
swimlanes?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
105895
|
+
};
|
|
105013
105896
|
export declare type JiraBoardViewLayoutArgs = {
|
|
105014
105897
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
105015
105898
|
};
|
|
@@ -105103,6 +105986,11 @@ export declare type JiraBoardViewCellIssuePosition = {
|
|
|
105103
105986
|
issue?: Maybe<JiraIssue>;
|
|
105104
105987
|
previousIssue?: Maybe<JiraIssue>;
|
|
105105
105988
|
};
|
|
105989
|
+
export declare type JiraBoardViewCellIssuePositionMapping = {
|
|
105990
|
+
__typename?: 'JiraBoardViewCellIssuePositionMapping';
|
|
105991
|
+
cell?: Maybe<JiraBoardViewCell>;
|
|
105992
|
+
positions?: Maybe<Array<JiraBoardViewCellIssuePosition>>;
|
|
105993
|
+
};
|
|
105106
105994
|
export declare type JiraBoardViewColumn = {
|
|
105107
105995
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
105108
105996
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105158,12 +106046,17 @@ export declare type JiraBoardViewFieldSwimlaneUser = {
|
|
|
105158
106046
|
__typename?: 'JiraBoardViewFieldSwimlaneUser';
|
|
105159
106047
|
user?: Maybe<User>;
|
|
105160
106048
|
};
|
|
105161
|
-
export declare type JiraBoardViewFieldSwimlaneValue = JiraBoardViewFieldSwimlaneUser | JiraOption | JiraPriority | JiraTownsquareProject;
|
|
106049
|
+
export declare type JiraBoardViewFieldSwimlaneValue = JiraBoardViewFieldSwimlaneUser | JiraIssue | JiraOption | JiraPriority | JiraTownsquareProject;
|
|
105162
106050
|
export declare type JiraBoardViewInput = {
|
|
105163
106051
|
jiraBoardViewQueryInput?: InputMaybe<JiraBoardViewQueryInput>;
|
|
105164
106052
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
105165
106053
|
viewQueryInput?: InputMaybe<JiraViewQueryInput>;
|
|
105166
106054
|
};
|
|
106055
|
+
export declare type JiraBoardViewIssuePositions = {
|
|
106056
|
+
__typename?: 'JiraBoardViewIssuePositions';
|
|
106057
|
+
issuesToInsert?: Maybe<Array<JiraBoardViewCellIssuePositionMapping>>;
|
|
106058
|
+
swimlanesToInsert?: Maybe<Array<JiraBoardViewSwimlanePosition>>;
|
|
106059
|
+
};
|
|
105167
106060
|
export declare type JiraBoardViewLayout = JiraBoardViewColumnLayout | JiraBoardViewSwimlaneLayout;
|
|
105168
106061
|
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & Node & {
|
|
105169
106062
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
@@ -105291,6 +106184,11 @@ export declare type JiraBoardViewSwimlaneLayoutSwimlanesArgs = {
|
|
|
105291
106184
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
105292
106185
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
105293
106186
|
};
|
|
106187
|
+
export declare type JiraBoardViewSwimlanePosition = {
|
|
106188
|
+
__typename?: 'JiraBoardViewSwimlanePosition';
|
|
106189
|
+
previousSwimlane?: Maybe<JiraBoardViewSwimlane>;
|
|
106190
|
+
swimlane?: Maybe<JiraBoardViewSwimlane>;
|
|
106191
|
+
};
|
|
105294
106192
|
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
105295
106193
|
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
|
|
105296
106194
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107885,11 +108783,15 @@ export declare type JiraDateFieldOperationInput = {
|
|
|
107885
108783
|
date?: InputMaybe<Scalars['Date']['input']>;
|
|
107886
108784
|
operation: JiraSingleValueFieldOperations;
|
|
107887
108785
|
};
|
|
107888
|
-
export declare type JiraDateFieldPayload = Payload & {
|
|
108786
|
+
export declare type JiraDateFieldPayload = JiraSupportsUpdatedDependentFields & Payload & {
|
|
107889
108787
|
__typename?: 'JiraDateFieldPayload';
|
|
107890
108788
|
errors?: Maybe<Array<MutationError>>;
|
|
107891
108789
|
field?: Maybe<JiraDatePickerField>;
|
|
107892
108790
|
success: Scalars['Boolean']['output'];
|
|
108791
|
+
updatedDependentFields?: Maybe<JiraIssueFieldConnection>;
|
|
108792
|
+
};
|
|
108793
|
+
export declare type JiraDateFieldPayloadUpdatedDependentFieldsArgs = {
|
|
108794
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107893
108795
|
};
|
|
107894
108796
|
export declare type JiraDateFormulaField = JiraDateLikeField & JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
107895
108797
|
__typename?: 'JiraDateFormulaField';
|
|
@@ -107949,11 +108851,15 @@ export declare type JiraDateTimeFieldOperationInput = {
|
|
|
107949
108851
|
datetime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
107950
108852
|
operation: JiraSingleValueFieldOperations;
|
|
107951
108853
|
};
|
|
107952
|
-
export declare type JiraDateTimeFieldPayload = Payload & {
|
|
108854
|
+
export declare type JiraDateTimeFieldPayload = JiraSupportsUpdatedDependentFields & Payload & {
|
|
107953
108855
|
__typename?: 'JiraDateTimeFieldPayload';
|
|
107954
108856
|
errors?: Maybe<Array<MutationError>>;
|
|
107955
108857
|
field?: Maybe<JiraDateTimePickerField>;
|
|
107956
108858
|
success: Scalars['Boolean']['output'];
|
|
108859
|
+
updatedDependentFields?: Maybe<JiraIssueFieldConnection>;
|
|
108860
|
+
};
|
|
108861
|
+
export declare type JiraDateTimeFieldPayloadUpdatedDependentFieldsArgs = {
|
|
108862
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107957
108863
|
};
|
|
107958
108864
|
export declare type JiraDateTimeInput = {
|
|
107959
108865
|
formattedDateTime: Scalars['String']['input'];
|
|
@@ -110877,6 +111783,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
110877
111783
|
incidentActionItems?: Maybe<GraphIncidentHasActionItemRelationshipConnection>;
|
|
110878
111784
|
incidentLinkedJswIssues?: Maybe<GraphIncidentLinkedJswIssueRelationshipConnection>;
|
|
110879
111785
|
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
111786
|
+
isFlagged?: Maybe<Scalars['Boolean']['output']>;
|
|
110880
111787
|
isIncidentManagementEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
110881
111788
|
isRemoteIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
110882
111789
|
isResolved?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -110945,6 +111852,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
110945
111852
|
statusCategory?: Maybe<JiraStatusCategory>;
|
|
110946
111853
|
statusField?: Maybe<JiraStatusField>;
|
|
110947
111854
|
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
111855
|
+
storyPoints?: Maybe<Scalars['Float']['output']>;
|
|
110948
111856
|
storyPointsField?: Maybe<JiraNumberField>;
|
|
110949
111857
|
suggestFieldValues?: Maybe<JiraSuggestedIssueFieldValuesResult>;
|
|
110950
111858
|
summarisedBuilds?: Maybe<DevOpsSummarisedBuilds>;
|
|
@@ -113487,6 +114395,18 @@ export declare type JiraJirtEventPayload = {
|
|
|
113487
114395
|
resource: Scalars['String']['output'];
|
|
113488
114396
|
type: Scalars['String']['output'];
|
|
113489
114397
|
};
|
|
114398
|
+
export declare type JiraJourney = Node & {
|
|
114399
|
+
__typename?: 'JiraJourney';
|
|
114400
|
+
id: Scalars['ID']['output'];
|
|
114401
|
+
journeyConfigurationName?: Maybe<Scalars['String']['output']>;
|
|
114402
|
+
steps?: Maybe<JiraJourneyStepConnection>;
|
|
114403
|
+
};
|
|
114404
|
+
export declare type JiraJourneyStepsArgs = {
|
|
114405
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
114406
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
114407
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
114408
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
114409
|
+
};
|
|
113490
114410
|
export declare enum JiraJourneyActiveState {
|
|
113491
114411
|
Active = "ACTIVE",
|
|
113492
114412
|
Inactive = "INACTIVE",
|
|
@@ -113541,6 +114461,13 @@ export declare enum JiraJourneyConfigurationType {
|
|
|
113541
114461
|
CustomizableJourney = "CUSTOMIZABLE_JOURNEY",
|
|
113542
114462
|
JourneyType = "JOURNEY_TYPE"
|
|
113543
114463
|
}
|
|
114464
|
+
export declare type JiraJourneyConnection = {
|
|
114465
|
+
__typename?: 'JiraJourneyConnection';
|
|
114466
|
+
edges?: Maybe<Array<Maybe<JiraJourneyEdge>>>;
|
|
114467
|
+
errors?: Maybe<Array<QueryError>>;
|
|
114468
|
+
pageInfo: PageInfo;
|
|
114469
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
114470
|
+
};
|
|
113544
114471
|
export declare type JiraJourneyCustomizationSettings = {
|
|
113545
114472
|
__typename?: 'JiraJourneyCustomizationSettings';
|
|
113546
114473
|
agentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -113550,6 +114477,11 @@ export declare type JiraJourneyCustomizationSettingsInput = {
|
|
|
113550
114477
|
agentId: Scalars['ID']['input'];
|
|
113551
114478
|
timeout: Scalars['Int']['input'];
|
|
113552
114479
|
};
|
|
114480
|
+
export declare type JiraJourneyEdge = {
|
|
114481
|
+
__typename?: 'JiraJourneyEdge';
|
|
114482
|
+
cursor: Scalars['String']['output'];
|
|
114483
|
+
node?: Maybe<JiraJourney>;
|
|
114484
|
+
};
|
|
113553
114485
|
export declare type JiraJourneyItem = JiraJourneyStatusDependency | JiraJourneyWorkItem;
|
|
113554
114486
|
export declare type JiraJourneyItemCommon = {
|
|
113555
114487
|
id: Scalars['ID']['output'];
|
|
@@ -113687,6 +114619,29 @@ export declare enum JiraJourneyStatusDependencyType {
|
|
|
113687
114619
|
Status = "STATUS",
|
|
113688
114620
|
StatusCategory = "STATUS_CATEGORY"
|
|
113689
114621
|
}
|
|
114622
|
+
export declare type JiraJourneyStep = {
|
|
114623
|
+
id: Scalars['ID']['output'];
|
|
114624
|
+
journeyItemName?: Maybe<Scalars['String']['output']>;
|
|
114625
|
+
status?: Maybe<JiraJourneyStepStatus>;
|
|
114626
|
+
};
|
|
114627
|
+
export declare type JiraJourneyStepConnection = {
|
|
114628
|
+
__typename?: 'JiraJourneyStepConnection';
|
|
114629
|
+
edges?: Maybe<Array<Maybe<JiraJourneyStepEdge>>>;
|
|
114630
|
+
errors?: Maybe<Array<QueryError>>;
|
|
114631
|
+
pageInfo: PageInfo;
|
|
114632
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
114633
|
+
};
|
|
114634
|
+
export declare type JiraJourneyStepEdge = {
|
|
114635
|
+
__typename?: 'JiraJourneyStepEdge';
|
|
114636
|
+
cursor: Scalars['String']['output'];
|
|
114637
|
+
node?: Maybe<JiraJourneyStep>;
|
|
114638
|
+
};
|
|
114639
|
+
export declare enum JiraJourneyStepStatus {
|
|
114640
|
+
StepExecuted = "STEP_EXECUTED",
|
|
114641
|
+
StepExpired = "STEP_EXPIRED",
|
|
114642
|
+
StepPending = "STEP_PENDING",
|
|
114643
|
+
StepSkipped = "STEP_SKIPPED"
|
|
114644
|
+
}
|
|
113690
114645
|
export declare type JiraJourneyTrigger = {
|
|
113691
114646
|
__typename?: 'JiraJourneyTrigger';
|
|
113692
114647
|
type: JiraJourneyTriggerType;
|
|
@@ -113765,6 +114720,14 @@ export declare type JiraJourneyWorkItemFieldValueKeyValuePairInput = {
|
|
|
113765
114720
|
key: Scalars['String']['input'];
|
|
113766
114721
|
value: Array<InputMaybe<Scalars['String']['input']>>;
|
|
113767
114722
|
};
|
|
114723
|
+
export declare type JiraJourneyWorkItemStep = JiraJourneyStep & Node & {
|
|
114724
|
+
__typename?: 'JiraJourneyWorkItemStep';
|
|
114725
|
+
id: Scalars['ID']['output'];
|
|
114726
|
+
journeyItemName?: Maybe<Scalars['String']['output']>;
|
|
114727
|
+
status?: Maybe<JiraJourneyStepStatus>;
|
|
114728
|
+
workItem?: Maybe<JiraIssue>;
|
|
114729
|
+
workItemId?: Maybe<Scalars['ID']['output']>;
|
|
114730
|
+
};
|
|
113768
114731
|
export declare type JiraJourneyWorkdayIntegrationTriggerConfiguration = {
|
|
113769
114732
|
__typename?: 'JiraJourneyWorkdayIntegrationTriggerConfiguration';
|
|
113770
114733
|
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -116951,6 +117914,55 @@ export declare type JiraOnboardingStepInput = {
|
|
|
116951
117914
|
export declare enum JiraOnboardingTargetType {
|
|
116952
117915
|
TeamType = "TEAM_TYPE"
|
|
116953
117916
|
}
|
|
117917
|
+
export declare type JiraOpenBetaFeature = JiraOpenBetaFeatureNode & {
|
|
117918
|
+
__typename?: 'JiraOpenBetaFeature';
|
|
117919
|
+
_type?: Maybe<Scalars['String']['output']>;
|
|
117920
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
117921
|
+
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
117922
|
+
featureKey?: Maybe<Scalars['String']['output']>;
|
|
117923
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
117924
|
+
version?: Maybe<Scalars['Long']['output']>;
|
|
117925
|
+
};
|
|
117926
|
+
export declare type JiraOpenBetaFeatureConnection = {
|
|
117927
|
+
__typename?: 'JiraOpenBetaFeatureConnection';
|
|
117928
|
+
edges?: Maybe<Array<Maybe<JiraOpenBetaFeatureEdge>>>;
|
|
117929
|
+
nodes?: Maybe<Array<Maybe<JiraOpenBetaFeature>>>;
|
|
117930
|
+
pageInfo?: Maybe<PageInfo>;
|
|
117931
|
+
};
|
|
117932
|
+
export declare type JiraOpenBetaFeatureCreateInput = {
|
|
117933
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
117934
|
+
expireTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
117935
|
+
featureKey?: InputMaybe<Scalars['String']['input']>;
|
|
117936
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
117937
|
+
shardingContext: Scalars['String']['input'];
|
|
117938
|
+
};
|
|
117939
|
+
export declare type JiraOpenBetaFeatureCreatePayload = Payload & {
|
|
117940
|
+
__typename?: 'JiraOpenBetaFeatureCreatePayload';
|
|
117941
|
+
createdEntity?: Maybe<JiraOpenBetaFeature>;
|
|
117942
|
+
errors?: Maybe<Array<MutationError>>;
|
|
117943
|
+
success: Scalars['Boolean']['output'];
|
|
117944
|
+
};
|
|
117945
|
+
export declare type JiraOpenBetaFeatureEdge = {
|
|
117946
|
+
__typename?: 'JiraOpenBetaFeatureEdge';
|
|
117947
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
117948
|
+
node?: Maybe<JiraOpenBetaFeature>;
|
|
117949
|
+
};
|
|
117950
|
+
export declare type JiraOpenBetaFeatureNode = {
|
|
117951
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
117952
|
+
};
|
|
117953
|
+
export declare type JiraOpenBetaFeatureUpdateInput = {
|
|
117954
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
117955
|
+
expireTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
117956
|
+
featureKey?: InputMaybe<Scalars['String']['input']>;
|
|
117957
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
117958
|
+
shardingContext: Scalars['String']['input'];
|
|
117959
|
+
};
|
|
117960
|
+
export declare type JiraOpenBetaFeatureUpdatePayload = Payload & {
|
|
117961
|
+
__typename?: 'JiraOpenBetaFeatureUpdatePayload';
|
|
117962
|
+
errors?: Maybe<Array<MutationError>>;
|
|
117963
|
+
success: Scalars['Boolean']['output'];
|
|
117964
|
+
updatedEntity?: Maybe<JiraOpenBetaFeature>;
|
|
117965
|
+
};
|
|
116954
117966
|
export declare type JiraOpsgenieTeam = Node & {
|
|
116955
117967
|
__typename?: 'JiraOpsgenieTeam';
|
|
116956
117968
|
id: Scalars['ID']['output'];
|
|
@@ -117440,6 +118452,7 @@ export declare type JiraPlan = Node & {
|
|
|
117440
118452
|
__typename?: 'JiraPlan';
|
|
117441
118453
|
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
117442
118454
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
118455
|
+
hasPlanInvitePermission?: Maybe<Scalars['Boolean']['output']>;
|
|
117443
118456
|
hasReleaseUnsavedChanges?: Maybe<Scalars['Boolean']['output']>;
|
|
117444
118457
|
id: Scalars['ID']['output'];
|
|
117445
118458
|
isAutoSchedulerEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -117543,6 +118556,7 @@ export declare type JiraPlaybook = Node & {
|
|
|
117543
118556
|
__typename?: 'JiraPlaybook';
|
|
117544
118557
|
filters?: Maybe<Array<JiraPlaybookIssueFilter>>;
|
|
117545
118558
|
id: Scalars['ID']['output'];
|
|
118559
|
+
isAiCreated?: Maybe<Scalars['Boolean']['output']>;
|
|
117546
118560
|
jql?: Maybe<Scalars['String']['output']>;
|
|
117547
118561
|
labels?: Maybe<Array<JiraPlaybookLabel>>;
|
|
117548
118562
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -119103,6 +120117,7 @@ export declare type JiraQuery = {
|
|
|
119103
120117
|
isLinkingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
119104
120118
|
isNaturalLanguageSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
119105
120119
|
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
120120
|
+
isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
119106
120121
|
isSubtasksEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
119107
120122
|
isVotingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
119108
120123
|
issue?: Maybe<JiraIssue>;
|
|
@@ -119151,6 +120166,8 @@ export declare type JiraQuery = {
|
|
|
119151
120166
|
jiraProjectsMappedToHelpCenter?: Maybe<JiraProjectConnection>;
|
|
119152
120167
|
jiraServiceManagementRequestTypeCategoriesByProject?: Maybe<JiraServiceManagementRequestTypeCategoryConnection>;
|
|
119153
120168
|
jiraServiceManagementSlaIssue?: Maybe<JiraServiceManagementSlaIssueResult>;
|
|
120169
|
+
jiraWorkItemJourneys?: Maybe<JiraJourneyConnection>;
|
|
120170
|
+
jira_recommendedAgents?: Maybe<JiraActorConnection>;
|
|
119154
120171
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
119155
120172
|
jpdGlobalViewFields?: Maybe<JiraPolarisGlobalViewFields>;
|
|
119156
120173
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
@@ -119704,6 +120721,9 @@ export declare type JiraQueryIsNaturalLanguageSearchEnabledArgs = {
|
|
|
119704
120721
|
export declare type JiraQueryIsRovoEnabledArgs = {
|
|
119705
120722
|
cloudId: Scalars['ID']['input'];
|
|
119706
120723
|
};
|
|
120724
|
+
export declare type JiraQueryIsRovoLlmEnabledArgs = {
|
|
120725
|
+
cloudId: Scalars['ID']['input'];
|
|
120726
|
+
};
|
|
119707
120727
|
export declare type JiraQueryIsSubtasksEnabledArgs = {
|
|
119708
120728
|
cloudId: Scalars['ID']['input'];
|
|
119709
120729
|
};
|
|
@@ -119947,6 +120967,24 @@ export declare type JiraQueryJiraServiceManagementSlaIssueArgs = {
|
|
|
119947
120967
|
cloudId: Scalars['ID']['input'];
|
|
119948
120968
|
issueKey: Scalars['String']['input'];
|
|
119949
120969
|
};
|
|
120970
|
+
export declare type JiraQueryJiraWorkItemJourneysArgs = {
|
|
120971
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
120972
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
120973
|
+
cloudId: Scalars['ID']['input'];
|
|
120974
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
120975
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
120976
|
+
workItemKey: Scalars['String']['input'];
|
|
120977
|
+
};
|
|
120978
|
+
export declare type JiraQueryJira_RecommendedAgentsArgs = {
|
|
120979
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
120980
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
120981
|
+
cloudId: Scalars['ID']['input'];
|
|
120982
|
+
contextAri: Scalars['ID']['input'];
|
|
120983
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
120984
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
120985
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
120986
|
+
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
120987
|
+
};
|
|
119950
120988
|
export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
|
|
119951
120989
|
cloudId: Scalars['ID']['input'];
|
|
119952
120990
|
};
|
|
@@ -127828,6 +128866,9 @@ export declare type JpdViewsServiceAxisConfigInput = {
|
|
|
127828
128866
|
fieldOptions: Array<JpdViewsServiceOptionInput>;
|
|
127829
128867
|
reversed: Scalars['Boolean']['input'];
|
|
127830
128868
|
};
|
|
128869
|
+
export declare type JpdViewsServiceCloneViewIntoGlobalInput = {
|
|
128870
|
+
id: Scalars['ID']['input'];
|
|
128871
|
+
};
|
|
127831
128872
|
export declare enum JpdViewsServiceColorStyle {
|
|
127832
128873
|
Background = "BACKGROUND",
|
|
127833
128874
|
Highlight = "HIGHLIGHT"
|
|
@@ -128105,6 +129146,10 @@ export declare type JpdViewsServiceRerankGlobalViewPayload = Payload & {
|
|
|
128105
129146
|
errors?: Maybe<Array<MutationError>>;
|
|
128106
129147
|
success: Scalars['Boolean']['output'];
|
|
128107
129148
|
};
|
|
129149
|
+
export declare type JpdViewsServiceSetAssocToNewSpacesInput = {
|
|
129150
|
+
assocToNewSpaces: Scalars['Boolean']['input'];
|
|
129151
|
+
id: Scalars['ID']['input'];
|
|
129152
|
+
};
|
|
128108
129153
|
export declare type JpdViewsServiceSort = {
|
|
128109
129154
|
__typename?: 'JpdViewsServiceSort';
|
|
128110
129155
|
field: JpdViewsServiceField;
|
|
@@ -128288,6 +129333,11 @@ export declare enum JsmChannelsConnectionType {
|
|
|
128288
129333
|
Okta = "OKTA"
|
|
128289
129334
|
}
|
|
128290
129335
|
export declare type JsmChannelsConversationsByContainerAriResult = JsmChannelsOrchestratorConversationsConnection | QueryError;
|
|
129336
|
+
export declare type JsmChannelsCustomPlanGraphAttribute = {
|
|
129337
|
+
__typename?: 'JsmChannelsCustomPlanGraphAttribute';
|
|
129338
|
+
key: Scalars['String']['output'];
|
|
129339
|
+
value: Scalars['String']['output'];
|
|
129340
|
+
};
|
|
128291
129341
|
export declare type JsmChannelsCustomPlanNodeAttribute = {
|
|
128292
129342
|
__typename?: 'JsmChannelsCustomPlanNodeAttribute';
|
|
128293
129343
|
key: Scalars['String']['output'];
|
|
@@ -128477,6 +129527,7 @@ export declare type JsmChannelsResolutionPlanActionPayload = Payload & {
|
|
|
128477
129527
|
export declare type JsmChannelsResolutionPlanGraph = {
|
|
128478
129528
|
__typename?: 'JsmChannelsResolutionPlanGraph';
|
|
128479
129529
|
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
129530
|
+
customPlanGraphAttributes?: Maybe<Array<JsmChannelsCustomPlanGraphAttribute>>;
|
|
128480
129531
|
graph?: Maybe<Array<Array<Scalars['ID']['output']>>>;
|
|
128481
129532
|
isLoading: Scalars['Boolean']['output'];
|
|
128482
129533
|
nodes: Array<JsmChannelsPlanNodeMapEntry>;
|
|
@@ -129222,12 +130273,14 @@ export declare type JsmConversationSettings = {
|
|
|
129222
130273
|
__typename?: 'JsmConversationSettings';
|
|
129223
130274
|
assignedTeam?: Maybe<TeamV2>;
|
|
129224
130275
|
defaultRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
130276
|
+
issueLabel?: Maybe<Scalars['String']['output']>;
|
|
129225
130277
|
projectAri?: Maybe<Scalars['String']['output']>;
|
|
129226
130278
|
slaList?: Maybe<Array<Maybe<JsmConversationSla>>>;
|
|
129227
130279
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
129228
130280
|
};
|
|
129229
130281
|
export declare type JsmConversationSettingsInput = {
|
|
129230
130282
|
defaultRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
130283
|
+
issueLabel?: InputMaybe<Scalars['String']['input']>;
|
|
129231
130284
|
projectAri?: InputMaybe<Scalars['String']['input']>;
|
|
129232
130285
|
slaList?: InputMaybe<Array<JsmConversationSlaInput>>;
|
|
129233
130286
|
teamId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -129660,7 +130713,8 @@ export declare enum KitsuneComparisonOperator {
|
|
|
129660
130713
|
IsLowerThanOrEqualTo = "IS_LOWER_THAN_OR_EQUAL_TO",
|
|
129661
130714
|
IsNot = "IS_NOT",
|
|
129662
130715
|
IsNotEmpty = "IS_NOT_EMPTY",
|
|
129663
|
-
IsTrue = "IS_TRUE"
|
|
130716
|
+
IsTrue = "IS_TRUE",
|
|
130717
|
+
PastNbDays = "PAST_NB_DAYS"
|
|
129664
130718
|
}
|
|
129665
130719
|
export declare type KitsuneConnection = {
|
|
129666
130720
|
edges: Array<KitsuneEdge>;
|
|
@@ -129673,6 +130727,21 @@ export declare type KitsuneCustomer = {
|
|
|
129673
130727
|
id: Scalars['ID']['output'];
|
|
129674
130728
|
organizations?: Maybe<Array<KitsuneOrganization>>;
|
|
129675
130729
|
};
|
|
130730
|
+
export declare type KitsuneCustomerConnection = KitsuneConnection & {
|
|
130731
|
+
__typename?: 'KitsuneCustomerConnection';
|
|
130732
|
+
edges: Array<KitsuneCustomerEdge>;
|
|
130733
|
+
pageInfo: PageInfo;
|
|
130734
|
+
};
|
|
130735
|
+
export declare type KitsuneCustomerEdge = KitsuneEdge & {
|
|
130736
|
+
__typename?: 'KitsuneCustomerEdge';
|
|
130737
|
+
cursor: Scalars['String']['output'];
|
|
130738
|
+
node?: Maybe<KitsuneCustomer>;
|
|
130739
|
+
};
|
|
130740
|
+
export declare type KitsuneCustomerNode = {
|
|
130741
|
+
__typename?: 'KitsuneCustomerNode';
|
|
130742
|
+
customer?: Maybe<CustomerServiceCsmCustomer>;
|
|
130743
|
+
customerId: Scalars['ID']['output'];
|
|
130744
|
+
};
|
|
129676
130745
|
export declare type KitsuneDateValue = {
|
|
129677
130746
|
__typename?: 'KitsuneDateValue';
|
|
129678
130747
|
_id: Scalars['ID']['output'];
|
|
@@ -129709,6 +130778,7 @@ export declare type KitsuneFeedback = Node & {
|
|
|
129709
130778
|
snippets: KitsuneSnippetConnection;
|
|
129710
130779
|
source: KitsuneSource;
|
|
129711
130780
|
sourceCategory: KitsuneSourceCategory;
|
|
130781
|
+
spaceId: Scalars['ID']['output'];
|
|
129712
130782
|
summary?: Maybe<KitsuneSummary>;
|
|
129713
130783
|
title?: Maybe<Scalars['String']['output']>;
|
|
129714
130784
|
type: KitsuneFeedbackType;
|
|
@@ -129802,7 +130872,7 @@ export declare type KitsuneFilterInput = {
|
|
|
129802
130872
|
logicalOperator: KitsuneLogicalOperator;
|
|
129803
130873
|
values: KitsuneFilterValueInput;
|
|
129804
130874
|
};
|
|
129805
|
-
export declare type KitsuneFilterValue = KitsuneDateValue | KitsuneFieldValue | KitsuneNumberValue | KitsuneSourceCategory | KitsuneTextValue | KitsuneUser;
|
|
130875
|
+
export declare type KitsuneFilterValue = KitsuneCustomerNode | KitsuneDateValue | KitsuneFieldValue | KitsuneNumberValue | KitsuneSourceCategory | KitsuneTextValue | KitsuneUser;
|
|
129806
130876
|
export declare type KitsuneFilterValueInput = {
|
|
129807
130877
|
valueDate?: InputMaybe<Array<Scalars['Date']['input']>>;
|
|
129808
130878
|
valueId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -129869,6 +130939,21 @@ export declare type KitsuneOrganization = {
|
|
|
129869
130939
|
id: Scalars['ID']['output'];
|
|
129870
130940
|
name: Scalars['String']['output'];
|
|
129871
130941
|
};
|
|
130942
|
+
export declare type KitsuneOrganizationConnection = KitsuneConnection & {
|
|
130943
|
+
__typename?: 'KitsuneOrganizationConnection';
|
|
130944
|
+
edges: Array<KitsuneOrganizationEdge>;
|
|
130945
|
+
pageInfo: PageInfo;
|
|
130946
|
+
};
|
|
130947
|
+
export declare type KitsuneOrganizationEdge = KitsuneEdge & {
|
|
130948
|
+
__typename?: 'KitsuneOrganizationEdge';
|
|
130949
|
+
cursor: Scalars['String']['output'];
|
|
130950
|
+
node?: Maybe<KitsuneOrganization>;
|
|
130951
|
+
};
|
|
130952
|
+
export declare type KitsuneOrganizationNode = {
|
|
130953
|
+
__typename?: 'KitsuneOrganizationNode';
|
|
130954
|
+
organization?: Maybe<CustomerServiceCsmCustomer>;
|
|
130955
|
+
organizationId: Scalars['ID']['output'];
|
|
130956
|
+
};
|
|
129872
130957
|
export declare type KitsunePaginationInput = {
|
|
129873
130958
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129874
130959
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -131213,7 +132298,8 @@ export declare enum KnowledgeDiscoveryQueryClassification {
|
|
|
131213
132298
|
OrgChart = "ORG_CHART",
|
|
131214
132299
|
Person = "PERSON",
|
|
131215
132300
|
Team = "TEAM",
|
|
131216
|
-
Topic = "TOPIC"
|
|
132301
|
+
Topic = "TOPIC",
|
|
132302
|
+
Visual = "VISUAL"
|
|
131217
132303
|
}
|
|
131218
132304
|
export declare enum KnowledgeDiscoveryQuerySubType {
|
|
131219
132305
|
Command = "COMMAND",
|
|
@@ -131274,7 +132360,8 @@ export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
|
131274
132360
|
OrgChart = "ORG_CHART",
|
|
131275
132361
|
Person = "PERSON",
|
|
131276
132362
|
Team = "TEAM",
|
|
131277
|
-
Topic = "TOPIC"
|
|
132363
|
+
Topic = "TOPIC",
|
|
132364
|
+
Visual = "VISUAL"
|
|
131278
132365
|
}
|
|
131279
132366
|
export declare enum KnowledgeDiscoverySearchQueryClassificationSubtype {
|
|
131280
132367
|
Command = "COMMAND",
|
|
@@ -131801,6 +132888,10 @@ export declare type LoomAcceptOrganizationInvitation = {
|
|
|
131801
132888
|
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
131802
132889
|
success: Scalars['String']['output'];
|
|
131803
132890
|
};
|
|
132891
|
+
export declare enum LoomCalendarIntegrationType {
|
|
132892
|
+
GoogleCalendar = "GOOGLE_CALENDAR",
|
|
132893
|
+
MicrosoftOutlook = "MICROSOFT_OUTLOOK"
|
|
132894
|
+
}
|
|
131804
132895
|
export declare type LoomComment = Node & {
|
|
131805
132896
|
__typename?: 'LoomComment';
|
|
131806
132897
|
content?: Maybe<Scalars['String']['output']>;
|
|
@@ -131814,6 +132905,29 @@ export declare type LoomComment = Node & {
|
|
|
131814
132905
|
video?: Maybe<LoomVideo>;
|
|
131815
132906
|
videoId: Scalars['ID']['output'];
|
|
131816
132907
|
};
|
|
132908
|
+
export declare type LoomCommentConnection = {
|
|
132909
|
+
__typename?: 'LoomCommentConnection';
|
|
132910
|
+
edges?: Maybe<Array<Maybe<LoomCommentEdge>>>;
|
|
132911
|
+
pageInfo?: Maybe<LoomPageInfo>;
|
|
132912
|
+
};
|
|
132913
|
+
export declare type LoomCommentEdge = {
|
|
132914
|
+
__typename?: 'LoomCommentEdge';
|
|
132915
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
132916
|
+
node?: Maybe<LoomComment>;
|
|
132917
|
+
};
|
|
132918
|
+
export declare type LoomConnectedCalendar = {
|
|
132919
|
+
__typename?: 'LoomConnectedCalendar';
|
|
132920
|
+
guid: Scalars['ID']['output'];
|
|
132921
|
+
integrationType: LoomCalendarIntegrationType;
|
|
132922
|
+
meetings?: Maybe<LoomMeetingConnection>;
|
|
132923
|
+
};
|
|
132924
|
+
export declare type LoomConnectedCalendarMeetingsArgs = {
|
|
132925
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132926
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132927
|
+
order?: InputMaybe<LoomSortDirection>;
|
|
132928
|
+
rangeEnd?: InputMaybe<Scalars['String']['input']>;
|
|
132929
|
+
rangeStart?: InputMaybe<Scalars['String']['input']>;
|
|
132930
|
+
};
|
|
131817
132931
|
export declare type LoomDeleteVideo = {
|
|
131818
132932
|
__typename?: 'LoomDeleteVideo';
|
|
131819
132933
|
failed?: Maybe<Array<Maybe<LoomDeleteVideoFailure>>>;
|
|
@@ -131847,6 +132961,8 @@ export declare type LoomMeeting = Node & {
|
|
|
131847
132961
|
external?: Maybe<Scalars['Boolean']['output']>;
|
|
131848
132962
|
externalCalendarEventId?: Maybe<Scalars['String']['output']>;
|
|
131849
132963
|
id: Scalars['ID']['output'];
|
|
132964
|
+
inviteeAris?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
132965
|
+
invitees?: Maybe<Array<Maybe<User>>>;
|
|
131850
132966
|
recorder?: Maybe<User>;
|
|
131851
132967
|
recorderId?: Maybe<Scalars['ID']['output']>;
|
|
131852
132968
|
recurrenceAri?: Maybe<Scalars['ID']['output']>;
|
|
@@ -131856,15 +132972,33 @@ export declare type LoomMeeting = Node & {
|
|
|
131856
132972
|
title: Scalars['String']['output'];
|
|
131857
132973
|
video?: Maybe<LoomVideo>;
|
|
131858
132974
|
};
|
|
132975
|
+
export declare type LoomMeetingConnection = {
|
|
132976
|
+
__typename?: 'LoomMeetingConnection';
|
|
132977
|
+
edges?: Maybe<Array<Maybe<LoomMeetingEdge>>>;
|
|
132978
|
+
pageInfo?: Maybe<LoomPageInfo>;
|
|
132979
|
+
};
|
|
132980
|
+
export declare type LoomMeetingEdge = {
|
|
132981
|
+
__typename?: 'LoomMeetingEdge';
|
|
132982
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
132983
|
+
node?: Maybe<LoomMeeting>;
|
|
132984
|
+
};
|
|
131859
132985
|
export declare type LoomMeetingRecurrence = Node & {
|
|
131860
132986
|
__typename?: 'LoomMeetingRecurrence';
|
|
131861
132987
|
id: Scalars['ID']['output'];
|
|
131862
132988
|
meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
132989
|
+
meetingsConnections?: Maybe<LoomMeetingConnection>;
|
|
131863
132990
|
};
|
|
131864
132991
|
export declare type LoomMeetingRecurrenceMeetingsArgs = {
|
|
131865
132992
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131866
132993
|
meetingIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
131867
132994
|
};
|
|
132995
|
+
export declare type LoomMeetingRecurrenceMeetingsConnectionsArgs = {
|
|
132996
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132997
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132998
|
+
order?: InputMaybe<LoomSortDirection>;
|
|
132999
|
+
rangeEnd?: InputMaybe<Scalars['String']['input']>;
|
|
133000
|
+
rangeStart?: InputMaybe<Scalars['String']['input']>;
|
|
133001
|
+
};
|
|
131868
133002
|
export declare enum LoomMeetingSource {
|
|
131869
133003
|
GoogleCalendar = "GOOGLE_CALENDAR",
|
|
131870
133004
|
MicrosoftOutlook = "MICROSOFT_OUTLOOK",
|
|
@@ -131875,6 +133009,13 @@ export declare type LoomMeetings = {
|
|
|
131875
133009
|
recurring?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
131876
133010
|
single?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
131877
133011
|
};
|
|
133012
|
+
export declare type LoomPageInfo = {
|
|
133013
|
+
__typename?: 'LoomPageInfo';
|
|
133014
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
133015
|
+
hasNextPage?: Maybe<Scalars['Boolean']['output']>;
|
|
133016
|
+
hasPreviousPage?: Maybe<Scalars['Boolean']['output']>;
|
|
133017
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
133018
|
+
};
|
|
131878
133019
|
export declare type LoomPhrase = {
|
|
131879
133020
|
__typename?: 'LoomPhrase';
|
|
131880
133021
|
ranges?: Maybe<Array<LoomPhraseRange>>;
|
|
@@ -131898,6 +133039,10 @@ export declare type LoomSettings = {
|
|
|
131898
133039
|
meetingNotesAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
131899
133040
|
meetingNotesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131900
133041
|
};
|
|
133042
|
+
export declare enum LoomSortDirection {
|
|
133043
|
+
Asc = "ASC",
|
|
133044
|
+
Desc = "DESC"
|
|
133045
|
+
}
|
|
131901
133046
|
export declare type LoomSpace = Node & {
|
|
131902
133047
|
__typename?: 'LoomSpace';
|
|
131903
133048
|
id: Scalars['ID']['output'];
|
|
@@ -132041,6 +133186,7 @@ export declare type LoomVideo = Node & {
|
|
|
132041
133186
|
__typename?: 'LoomVideo';
|
|
132042
133187
|
collaborators?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
132043
133188
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
133189
|
+
comments?: Maybe<LoomCommentConnection>;
|
|
132044
133190
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
132045
133191
|
description?: Maybe<Scalars['String']['output']>;
|
|
132046
133192
|
id: Scalars['ID']['output'];
|
|
@@ -132061,6 +133207,10 @@ export declare type LoomVideo = Node & {
|
|
|
132061
133207
|
url: Scalars['String']['output'];
|
|
132062
133208
|
viewCounts?: Maybe<LoomVideoViewCounts>;
|
|
132063
133209
|
};
|
|
133210
|
+
export declare type LoomVideoCommentsArgs = {
|
|
133211
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
133212
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133213
|
+
};
|
|
132064
133214
|
export declare type LoomVideoDefaultThumbnailsSources = {
|
|
132065
133215
|
__typename?: 'LoomVideoDefaultThumbnailsSources';
|
|
132066
133216
|
default?: Maybe<Scalars['String']['output']>;
|
|
@@ -132076,6 +133226,16 @@ export declare type LoomVideoViewCounts = {
|
|
|
132076
133226
|
distinct?: Maybe<Scalars['Int']['output']>;
|
|
132077
133227
|
total?: Maybe<Scalars['Int']['output']>;
|
|
132078
133228
|
};
|
|
133229
|
+
export declare type LoomWorkspace = Node & {
|
|
133230
|
+
__typename?: 'LoomWorkspace';
|
|
133231
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
133232
|
+
guid: Scalars['ID']['output'];
|
|
133233
|
+
hidden: Scalars['Boolean']['output'];
|
|
133234
|
+
id: Scalars['ID']['output'];
|
|
133235
|
+
memberCount: Scalars['Int']['output'];
|
|
133236
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
133237
|
+
type: Scalars['String']['output'];
|
|
133238
|
+
};
|
|
132079
133239
|
export declare type LpCertSort = {
|
|
132080
133240
|
sortDirection?: InputMaybe<SortDirection>;
|
|
132081
133241
|
sortField?: InputMaybe<LpCertSortField>;
|
|
@@ -135039,6 +136199,30 @@ export declare type MarketplaceStoreGetUserPreferencesResponse = {
|
|
|
135039
136199
|
preferences: MarketplaceStoreUserPreferences;
|
|
135040
136200
|
version: Scalars['Int']['output'];
|
|
135041
136201
|
};
|
|
136202
|
+
export declare type MarketplaceStoreGridBreakpointConfig = {
|
|
136203
|
+
__typename?: 'MarketplaceStoreGridBreakpointConfig';
|
|
136204
|
+
cells: Array<Array<MarketplaceStoreGridCell>>;
|
|
136205
|
+
columns?: Maybe<Scalars['Int']['output']>;
|
|
136206
|
+
};
|
|
136207
|
+
export declare type MarketplaceStoreGridCell = {
|
|
136208
|
+
__typename?: 'MarketplaceStoreGridCell';
|
|
136209
|
+
columnSpan?: Maybe<Scalars['Int']['output']>;
|
|
136210
|
+
content: MarketplaceStoreGridCellContent;
|
|
136211
|
+
rowSpan?: Maybe<Scalars['Int']['output']>;
|
|
136212
|
+
};
|
|
136213
|
+
export declare type MarketplaceStoreGridCellContent = MarketplaceStoreGridCellSlot | MarketplaceStoreMarketingSlot;
|
|
136214
|
+
export declare type MarketplaceStoreGridCellSlot = {
|
|
136215
|
+
__typename?: 'MarketplaceStoreGridCellSlot';
|
|
136216
|
+
theme?: Maybe<Scalars['String']['output']>;
|
|
136217
|
+
variant?: Maybe<Scalars['String']['output']>;
|
|
136218
|
+
widgetKind: MarketplaceStoreLayoutSlotWidgetKind;
|
|
136219
|
+
};
|
|
136220
|
+
export declare type MarketplaceStoreGridWidget = {
|
|
136221
|
+
__typename?: 'MarketplaceStoreGridWidget';
|
|
136222
|
+
lg: MarketplaceStoreGridBreakpointConfig;
|
|
136223
|
+
md: MarketplaceStoreGridBreakpointConfig;
|
|
136224
|
+
sm: MarketplaceStoreGridBreakpointConfig;
|
|
136225
|
+
};
|
|
135042
136226
|
export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
|
|
135043
136227
|
__typename?: 'MarketplaceStoreHomePageFeaturedSection';
|
|
135044
136228
|
description: Scalars['String']['output'];
|
|
@@ -135059,6 +136243,15 @@ export declare type MarketplaceStoreHomePageHighlightedSection = MarketplaceStor
|
|
|
135059
136243
|
export declare enum MarketplaceStoreHomePageHighlightedSectionVariation {
|
|
135060
136244
|
Prominent = "PROMINENT"
|
|
135061
136245
|
}
|
|
136246
|
+
export declare type MarketplaceStoreHomePageRecommendationsSection = MarketplaceStoreHomePageSection & {
|
|
136247
|
+
__typename?: 'MarketplaceStoreHomePageRecommendationsSection';
|
|
136248
|
+
description: Scalars['String']['output'];
|
|
136249
|
+
id: Scalars['ID']['output'];
|
|
136250
|
+
recommendationResultsCount: Scalars['Int']['output'];
|
|
136251
|
+
screenSpecificProperties: MarketplaceStoreHomePageSectionScreenSpecificProperties;
|
|
136252
|
+
searchMetadata: MarketplaceStoreSearchMetadata;
|
|
136253
|
+
title: Scalars['String']['output'];
|
|
136254
|
+
};
|
|
135062
136255
|
export declare type MarketplaceStoreHomePageRegularSection = MarketplaceStoreHomePageSection & {
|
|
135063
136256
|
__typename?: 'MarketplaceStoreHomePageRegularSection';
|
|
135064
136257
|
algoliaQueryMetadata: MarketplaceStoreAlgoliaQueryMetadata;
|
|
@@ -135179,9 +136372,10 @@ export declare type MarketplaceStoreLayoutRegularSection = MarketplaceStoreLayou
|
|
|
135179
136372
|
key: MarketplaceStoreLayoutSectionKeys;
|
|
135180
136373
|
navigationUrl?: Maybe<Scalars['String']['output']>;
|
|
135181
136374
|
objectsFetchCount?: Maybe<Scalars['Int']['output']>;
|
|
135182
|
-
screenSpecificProperties?: Maybe<MarketplaceStoreLayoutSectionScreenSpecificProperties>;
|
|
135183
136375
|
searchMetadata?: Maybe<MarketplaceStoreSearchMetadata>;
|
|
135184
136376
|
title: Scalars['String']['output'];
|
|
136377
|
+
type: MarketplaceStoreLayoutSectionType;
|
|
136378
|
+
widgets?: Maybe<Array<Maybe<MarketplaceStoreLayoutWidget>>>;
|
|
135185
136379
|
};
|
|
135186
136380
|
export declare type MarketplaceStoreLayoutSection = {
|
|
135187
136381
|
description: Scalars['String']['output'];
|
|
@@ -135189,22 +136383,19 @@ export declare type MarketplaceStoreLayoutSection = {
|
|
|
135189
136383
|
title: Scalars['String']['output'];
|
|
135190
136384
|
};
|
|
135191
136385
|
export declare enum MarketplaceStoreLayoutSectionKeys {
|
|
135192
|
-
BestSellers = "BEST_SELLERS",
|
|
135193
136386
|
PickupWhereYouLeft = "PICKUP_WHERE_YOU_LEFT",
|
|
135194
|
-
|
|
135195
|
-
|
|
136387
|
+
RecommendedForYou = "RECOMMENDED_FOR_YOU",
|
|
136388
|
+
TrustedPartners = "TRUSTED_PARTNERS"
|
|
135196
136389
|
}
|
|
135197
|
-
export declare
|
|
135198
|
-
|
|
135199
|
-
|
|
135200
|
-
|
|
135201
|
-
}
|
|
135202
|
-
export declare
|
|
135203
|
-
|
|
135204
|
-
|
|
135205
|
-
|
|
135206
|
-
sm: MarketplaceStoreLayoutSectionScreenConfig;
|
|
135207
|
-
};
|
|
136390
|
+
export declare enum MarketplaceStoreLayoutSectionType {
|
|
136391
|
+
Brand = "BRAND",
|
|
136392
|
+
Dark = "DARK",
|
|
136393
|
+
List = "LIST"
|
|
136394
|
+
}
|
|
136395
|
+
export declare enum MarketplaceStoreLayoutSlotWidgetKind {
|
|
136396
|
+
ObjectTile = "OBJECT_TILE"
|
|
136397
|
+
}
|
|
136398
|
+
export declare type MarketplaceStoreLayoutWidget = MarketplaceStoreGridWidget;
|
|
135208
136399
|
export declare type MarketplaceStoreLogDetails = {
|
|
135209
136400
|
__typename?: 'MarketplaceStoreLogDetails';
|
|
135210
136401
|
logEUDShareWithThirdParty?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -135246,6 +136437,18 @@ export declare type MarketplaceStoreLoggedInUserLinksManageDeveloperSpaceArgs =
|
|
|
135246
136437
|
developerId?: InputMaybe<Scalars['ID']['input']>;
|
|
135247
136438
|
vendorId: Scalars['ID']['input'];
|
|
135248
136439
|
};
|
|
136440
|
+
export declare type MarketplaceStoreMarketingAction = {
|
|
136441
|
+
__typename?: 'MarketplaceStoreMarketingAction';
|
|
136442
|
+
label: Scalars['String']['output'];
|
|
136443
|
+
url: Scalars['String']['output'];
|
|
136444
|
+
};
|
|
136445
|
+
export declare type MarketplaceStoreMarketingSlot = {
|
|
136446
|
+
__typename?: 'MarketplaceStoreMarketingSlot';
|
|
136447
|
+
actions?: Maybe<Array<Maybe<MarketplaceStoreMarketingAction>>>;
|
|
136448
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
136449
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
136450
|
+
title: Scalars['String']['output'];
|
|
136451
|
+
};
|
|
135249
136452
|
export declare type MarketplaceStoreMultiInstanceDetails = {
|
|
135250
136453
|
isMultiInstance: Scalars['Boolean']['output'];
|
|
135251
136454
|
multiInstanceEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
@@ -135525,6 +136728,12 @@ export declare type MarketplaceStoreProductListing = {
|
|
|
135525
136728
|
summary?: Maybe<Scalars['String']['output']>;
|
|
135526
136729
|
vendorId: Scalars['String']['output'];
|
|
135527
136730
|
};
|
|
136731
|
+
export declare type MarketplaceStoreProductListingError = {
|
|
136732
|
+
__typename?: 'MarketplaceStoreProductListingError';
|
|
136733
|
+
id: Scalars['ID']['output'];
|
|
136734
|
+
message: Scalars['String']['output'];
|
|
136735
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
136736
|
+
};
|
|
135528
136737
|
export declare type MarketplaceStoreProductListingHighlight = {
|
|
135529
136738
|
__typename?: 'MarketplaceStoreProductListingHighlight';
|
|
135530
136739
|
caption?: Maybe<Scalars['String']['output']>;
|
|
@@ -135543,6 +136752,7 @@ export declare type MarketplaceStoreProductListingImage = {
|
|
|
135543
136752
|
url?: Maybe<Scalars['String']['output']>;
|
|
135544
136753
|
width: Scalars['Int']['output'];
|
|
135545
136754
|
};
|
|
136755
|
+
export declare type MarketplaceStoreProductListingResponse = MarketplaceStoreProductListing | MarketplaceStoreProductListingError;
|
|
135546
136756
|
export declare type MarketplaceStoreProductListingScreenshot = {
|
|
135547
136757
|
__typename?: 'MarketplaceStoreProductListingScreenshot';
|
|
135548
136758
|
caption?: Maybe<Scalars['String']['output']>;
|
|
@@ -135599,6 +136809,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
135599
136809
|
eligibleOfferingsForApp: MarketplaceStoreEligibleAppOfferingsResponse;
|
|
135600
136810
|
geoip: MarketplaceStoreGeoIpResponse;
|
|
135601
136811
|
getAppMigration: MarketplaceStoreProductMigrationResponse;
|
|
136812
|
+
getProductListing: MarketplaceStoreProductListingResponse;
|
|
135602
136813
|
getProductMigration: MarketplaceStoreProductMigrationResponse;
|
|
135603
136814
|
homePage: MarketplaceStoreHomePageResponse;
|
|
135604
136815
|
hostStatus: MarketplaceStoreHostStatusResponse;
|
|
@@ -135678,6 +136889,9 @@ export declare type MarketplaceStoreQueryApiEligibleOfferingsForAppArgs = {
|
|
|
135678
136889
|
export declare type MarketplaceStoreQueryApiGetAppMigrationArgs = {
|
|
135679
136890
|
appKey: Scalars['String']['input'];
|
|
135680
136891
|
};
|
|
136892
|
+
export declare type MarketplaceStoreQueryApiGetProductListingArgs = {
|
|
136893
|
+
productId: Scalars['ID']['input'];
|
|
136894
|
+
};
|
|
135681
136895
|
export declare type MarketplaceStoreQueryApiGetProductMigrationArgs = {
|
|
135682
136896
|
productId: Scalars['ID']['input'];
|
|
135683
136897
|
};
|
|
@@ -136752,6 +137966,17 @@ export declare type MercuryCreateFiscalCalendarConfigurationPayload = Payload &
|
|
|
136752
137966
|
errors?: Maybe<Array<MutationError>>;
|
|
136753
137967
|
success: Scalars['Boolean']['output'];
|
|
136754
137968
|
};
|
|
137969
|
+
export declare type MercuryCreateFocusAreaBudgetInput = {
|
|
137970
|
+
amount: Scalars['String']['input'];
|
|
137971
|
+
fiscalYear: Scalars['Int']['input'];
|
|
137972
|
+
focusAreaId: Scalars['ID']['input'];
|
|
137973
|
+
};
|
|
137974
|
+
export declare type MercuryCreateFocusAreaBudgetPayload = Payload & {
|
|
137975
|
+
__typename?: 'MercuryCreateFocusAreaBudgetPayload';
|
|
137976
|
+
createdFocusAreaBudget?: Maybe<MercuryFocusAreaBudget>;
|
|
137977
|
+
errors?: Maybe<Array<MutationError>>;
|
|
137978
|
+
success: Scalars['Boolean']['output'];
|
|
137979
|
+
};
|
|
136755
137980
|
export declare type MercuryCreateFocusAreaChange = MercuryChangeInterface & Node & {
|
|
136756
137981
|
__typename?: 'MercuryCreateFocusAreaChange';
|
|
136757
137982
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
@@ -137131,6 +138356,14 @@ export declare type MercuryDeleteCustomFieldDefinitionPayload = {
|
|
|
137131
138356
|
errors?: Maybe<Array<MutationError>>;
|
|
137132
138357
|
success: Scalars['Boolean']['output'];
|
|
137133
138358
|
};
|
|
138359
|
+
export declare type MercuryDeleteFocusAreaBudgetInput = {
|
|
138360
|
+
id: Scalars['ID']['input'];
|
|
138361
|
+
};
|
|
138362
|
+
export declare type MercuryDeleteFocusAreaBudgetPayload = Payload & {
|
|
138363
|
+
__typename?: 'MercuryDeleteFocusAreaBudgetPayload';
|
|
138364
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138365
|
+
success: Scalars['Boolean']['output'];
|
|
138366
|
+
};
|
|
137134
138367
|
export declare type MercuryDeleteFocusAreaGoalLinksInput = {
|
|
137135
138368
|
atlasGoalAris: Array<Scalars['String']['input']>;
|
|
137136
138369
|
focusAreaAri: Scalars['String']['input'];
|
|
@@ -137270,19 +138503,19 @@ export declare type MercuryEstimateCostAtCompletion = {
|
|
|
137270
138503
|
};
|
|
137271
138504
|
export declare type MercuryEstimateCostAtCompletionByCostClassification = {
|
|
137272
138505
|
__typename?: 'MercuryEstimateCostAtCompletionByCostClassification';
|
|
137273
|
-
|
|
137274
|
-
|
|
138506
|
+
costSubtype?: Maybe<MercuryCostSubtype>;
|
|
138507
|
+
costType?: Maybe<MercuryCostType>;
|
|
137275
138508
|
total?: Maybe<MercuryMoney>;
|
|
137276
138509
|
};
|
|
137277
138510
|
export declare type MercuryEstimateCostAtCompletionByDimension = MercuryEstimateCostAtCompletionByCostClassification | MercuryEstimateCostAtCompletionByExpenditureType | MercuryEstimateCostAtCompletionByInvestmentCategory;
|
|
137278
138511
|
export declare type MercuryEstimateCostAtCompletionByExpenditureType = {
|
|
137279
138512
|
__typename?: 'MercuryEstimateCostAtCompletionByExpenditureType';
|
|
137280
|
-
|
|
138513
|
+
expenditureType?: Maybe<MercuryExpenditureType>;
|
|
137281
138514
|
total?: Maybe<MercuryMoney>;
|
|
137282
138515
|
};
|
|
137283
138516
|
export declare type MercuryEstimateCostAtCompletionByInvestmentCategory = {
|
|
137284
138517
|
__typename?: 'MercuryEstimateCostAtCompletionByInvestmentCategory';
|
|
137285
|
-
|
|
138518
|
+
investmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
137286
138519
|
total?: Maybe<MercuryMoney>;
|
|
137287
138520
|
};
|
|
137288
138521
|
export declare enum MercuryEventType {
|
|
@@ -137406,7 +138639,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
137406
138639
|
archived: Scalars['Boolean']['output'];
|
|
137407
138640
|
ari: Scalars['String']['output'];
|
|
137408
138641
|
asks?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
137409
|
-
|
|
138642
|
+
budgets?: Maybe<Array<Maybe<MercuryFocusAreaBudget>>>;
|
|
137410
138643
|
costSummary?: Maybe<MercuryFocusAreaCostSummary>;
|
|
137411
138644
|
createdDate: Scalars['String']['output'];
|
|
137412
138645
|
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
@@ -137442,6 +138675,10 @@ export declare type MercuryFocusAreaAsksArgs = {
|
|
|
137442
138675
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
137443
138676
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
137444
138677
|
};
|
|
138678
|
+
export declare type MercuryFocusAreaBudgetsArgs = {
|
|
138679
|
+
endFiscalYear: Scalars['Int']['input'];
|
|
138680
|
+
startFiscalYear: Scalars['Int']['input'];
|
|
138681
|
+
};
|
|
137445
138682
|
export declare type MercuryFocusAreaCostSummaryArgs = {
|
|
137446
138683
|
dimensions?: InputMaybe<Array<MercuryCostSummaryDimension>>;
|
|
137447
138684
|
endYearMonth: Scalars['String']['input'];
|
|
@@ -137500,6 +138737,35 @@ export declare type MercuryFocusAreaActivityHistory = Node & {
|
|
|
137500
138737
|
export declare type MercuryFocusAreaActivitySort = {
|
|
137501
138738
|
order: SortOrder;
|
|
137502
138739
|
};
|
|
138740
|
+
export declare type MercuryFocusAreaBudget = Node & {
|
|
138741
|
+
__typename?: 'MercuryFocusAreaBudget';
|
|
138742
|
+
amount: MercuryMoney;
|
|
138743
|
+
createdBy?: Maybe<User>;
|
|
138744
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
138745
|
+
fiscalYear: Scalars['Int']['output'];
|
|
138746
|
+
focusArea?: Maybe<MercuryFocusArea>;
|
|
138747
|
+
id: Scalars['ID']['output'];
|
|
138748
|
+
updatedBy?: Maybe<User>;
|
|
138749
|
+
updatedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
138750
|
+
};
|
|
138751
|
+
export declare type MercuryFocusAreaBudgetConnection = {
|
|
138752
|
+
__typename?: 'MercuryFocusAreaBudgetConnection';
|
|
138753
|
+
edges?: Maybe<Array<MercuryFocusAreaBudgetEdge>>;
|
|
138754
|
+
pageInfo: PageInfo;
|
|
138755
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
138756
|
+
};
|
|
138757
|
+
export declare type MercuryFocusAreaBudgetEdge = {
|
|
138758
|
+
__typename?: 'MercuryFocusAreaBudgetEdge';
|
|
138759
|
+
cursor: Scalars['String']['output'];
|
|
138760
|
+
node?: Maybe<MercuryFocusAreaBudget>;
|
|
138761
|
+
};
|
|
138762
|
+
export declare type MercuryFocusAreaBudgetSort = {
|
|
138763
|
+
field: MercuryFocusAreaBudgetSortField;
|
|
138764
|
+
order: SortOrder;
|
|
138765
|
+
};
|
|
138766
|
+
export declare enum MercuryFocusAreaBudgetSortField {
|
|
138767
|
+
FiscalYear = "FISCAL_YEAR"
|
|
138768
|
+
}
|
|
137503
138769
|
export declare type MercuryFocusAreaChangeRequirements = {
|
|
137504
138770
|
__typename?: 'MercuryFocusAreaChangeRequirements';
|
|
137505
138771
|
changeProposalId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -137921,6 +139187,7 @@ export declare type MercuryFundsMutationApi = {
|
|
|
137921
139187
|
createCostPeriodValue?: Maybe<MercuryCreateCostPeriodValuePayload>;
|
|
137922
139188
|
createCostSubtype?: Maybe<MercuryCreateCostSubtypePayload>;
|
|
137923
139189
|
createFiscalCalendarConfiguration?: Maybe<MercuryCreateFiscalCalendarConfigurationPayload>;
|
|
139190
|
+
createFocusAreaBudget?: Maybe<MercuryCreateFocusAreaBudgetPayload>;
|
|
137924
139191
|
createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
|
|
137925
139192
|
deleteBenefitItem?: Maybe<MercuryDeleteBenefitItemPayload>;
|
|
137926
139193
|
deleteBenefitPeriodValue?: Maybe<MercuryDeleteBenefitPeriodValuePayload>;
|
|
@@ -137928,6 +139195,7 @@ export declare type MercuryFundsMutationApi = {
|
|
|
137928
139195
|
deleteCostItem?: Maybe<MercuryDeleteCostItemPayload>;
|
|
137929
139196
|
deleteCostPeriodValue?: Maybe<MercuryDeleteCostPeriodValuePayload>;
|
|
137930
139197
|
deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
|
|
139198
|
+
deleteFocusAreaBudget?: Maybe<MercuryDeleteFocusAreaBudgetPayload>;
|
|
137931
139199
|
deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
|
|
137932
139200
|
setBaseline?: Maybe<MercurySetBaselinePayload>;
|
|
137933
139201
|
unsetBaseline?: Maybe<MercuryUnsetBaselinePayload>;
|
|
@@ -137941,6 +139209,7 @@ export declare type MercuryFundsMutationApi = {
|
|
|
137941
139209
|
updateCostItemName?: Maybe<MercuryUpdateCostItemNamePayload>;
|
|
137942
139210
|
updateCostPeriodValueAmount?: Maybe<MercuryUpdateCostPeriodValueAmountPayload>;
|
|
137943
139211
|
updateCostSubtypeName?: Maybe<MercuryUpdateCostSubtypePayload>;
|
|
139212
|
+
updateFocusAreaBudgetAmount?: Maybe<MercuryUpdateFocusAreaBudgetPayload>;
|
|
137944
139213
|
updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
137945
139214
|
};
|
|
137946
139215
|
export declare type MercuryFundsMutationApiCreateBenefitItemArgs = {
|
|
@@ -137964,6 +139233,9 @@ export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
|
|
|
137964
139233
|
export declare type MercuryFundsMutationApiCreateFiscalCalendarConfigurationArgs = {
|
|
137965
139234
|
input: MercuryCreateFiscalCalendarConfigurationInput;
|
|
137966
139235
|
};
|
|
139236
|
+
export declare type MercuryFundsMutationApiCreateFocusAreaBudgetArgs = {
|
|
139237
|
+
input: MercuryCreateFocusAreaBudgetInput;
|
|
139238
|
+
};
|
|
137967
139239
|
export declare type MercuryFundsMutationApiCreateInvestmentCategoryArgs = {
|
|
137968
139240
|
input: MercuryCreateInvestmentCategoryInput;
|
|
137969
139241
|
};
|
|
@@ -137985,6 +139257,9 @@ export declare type MercuryFundsMutationApiDeleteCostPeriodValueArgs = {
|
|
|
137985
139257
|
export declare type MercuryFundsMutationApiDeleteCostSubtypeArgs = {
|
|
137986
139258
|
input: MercuryDeleteCostSubtypeInput;
|
|
137987
139259
|
};
|
|
139260
|
+
export declare type MercuryFundsMutationApiDeleteFocusAreaBudgetArgs = {
|
|
139261
|
+
input: MercuryDeleteFocusAreaBudgetInput;
|
|
139262
|
+
};
|
|
137988
139263
|
export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
|
|
137989
139264
|
input: MercuryDeleteInvestmentCategoryInput;
|
|
137990
139265
|
};
|
|
@@ -138024,6 +139299,9 @@ export declare type MercuryFundsMutationApiUpdateCostPeriodValueAmountArgs = {
|
|
|
138024
139299
|
export declare type MercuryFundsMutationApiUpdateCostSubtypeNameArgs = {
|
|
138025
139300
|
input: MercuryUpdateCostSubtypeNameInput;
|
|
138026
139301
|
};
|
|
139302
|
+
export declare type MercuryFundsMutationApiUpdateFocusAreaBudgetAmountArgs = {
|
|
139303
|
+
input: MercuryUpdateFocusAreaBudgetAmountInput;
|
|
139304
|
+
};
|
|
138027
139305
|
export declare type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
|
|
138028
139306
|
input: MercuryUpdateInvestmentCategoryNameInput;
|
|
138029
139307
|
};
|
|
@@ -138051,6 +139329,9 @@ export declare type MercuryFundsQueryApi = {
|
|
|
138051
139329
|
fiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
138052
139330
|
fiscalCalendarConfigurations?: Maybe<Array<Maybe<MercuryFiscalCalendarConfiguration>>>;
|
|
138053
139331
|
fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
|
|
139332
|
+
focusAreaBudgets?: Maybe<Array<Maybe<MercuryFocusAreaBudget>>>;
|
|
139333
|
+
focusAreaBudgetsByFocusAreaIds?: Maybe<Array<Maybe<MercuryFocusAreaBudget>>>;
|
|
139334
|
+
focusAreaBudgetsSearch?: Maybe<MercuryFocusAreaBudgetConnection>;
|
|
138054
139335
|
focusAreaMonthlySummaries?: Maybe<Array<Maybe<MercuryFocusAreaFundsMonthlySummary>>>;
|
|
138055
139336
|
investmentCategories?: Maybe<Array<Maybe<MercuryInvestmentCategory>>>;
|
|
138056
139337
|
investmentCategoriesSearch?: Maybe<MercuryInvestmentCategoryConnection>;
|
|
@@ -138140,6 +139421,21 @@ export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsSearchArgs =
|
|
|
138140
139421
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138141
139422
|
sort?: InputMaybe<Array<InputMaybe<MercuryFiscalCalendarConfigurationSort>>>;
|
|
138142
139423
|
};
|
|
139424
|
+
export declare type MercuryFundsQueryApiFocusAreaBudgetsArgs = {
|
|
139425
|
+
ids: Array<Scalars['ID']['input']>;
|
|
139426
|
+
};
|
|
139427
|
+
export declare type MercuryFundsQueryApiFocusAreaBudgetsByFocusAreaIdsArgs = {
|
|
139428
|
+
endFiscalYear: Scalars['Int']['input'];
|
|
139429
|
+
ids: Array<Scalars['ID']['input']>;
|
|
139430
|
+
startFiscalYear: Scalars['Int']['input'];
|
|
139431
|
+
};
|
|
139432
|
+
export declare type MercuryFundsQueryApiFocusAreaBudgetsSearchArgs = {
|
|
139433
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
139434
|
+
cloudId: Scalars['ID']['input'];
|
|
139435
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139436
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
139437
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaBudgetSort>>>;
|
|
139438
|
+
};
|
|
138143
139439
|
export declare type MercuryFundsQueryApiFocusAreaMonthlySummariesArgs = {
|
|
138144
139440
|
costTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
138145
139441
|
endDateExclusive?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -138211,6 +139507,7 @@ export declare enum MercuryImportExecutionErrorEntityType {
|
|
|
138211
139507
|
FocusArea = "FOCUS_AREA",
|
|
138212
139508
|
FocusAreaFunds = "FOCUS_AREA_FUNDS",
|
|
138213
139509
|
FocusAreaLink = "FOCUS_AREA_LINK",
|
|
139510
|
+
FundsBenefitItem = "FUNDS_BENEFIT_ITEM",
|
|
138214
139511
|
FundsCostItem = "FUNDS_COST_ITEM",
|
|
138215
139512
|
PeopleBudget = "PEOPLE_BUDGET",
|
|
138216
139513
|
Team = "TEAM",
|
|
@@ -138546,6 +139843,11 @@ export declare type MercuryLinkWorkToRiskPayload = Payload & {
|
|
|
138546
139843
|
errors?: Maybe<Array<MutationError>>;
|
|
138547
139844
|
success: Scalars['Boolean']['output'];
|
|
138548
139845
|
};
|
|
139846
|
+
export declare type MercuryLinkedGoalOrWorkAiSummary = {
|
|
139847
|
+
__typename?: 'MercuryLinkedGoalOrWorkAiSummary';
|
|
139848
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
139849
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
139850
|
+
};
|
|
138549
139851
|
export declare type MercuryLinkedGoalOrWorkSummary = {
|
|
138550
139852
|
__typename?: 'MercuryLinkedGoalOrWorkSummary';
|
|
138551
139853
|
focusAreaId: Scalars['ID']['output'];
|
|
@@ -139141,6 +140443,15 @@ export declare type MercuryPositionCountByStatus = {
|
|
|
139141
140443
|
count?: Maybe<Scalars['Int']['output']>;
|
|
139142
140444
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
139143
140445
|
};
|
|
140446
|
+
export declare type MercuryPositionDataSummary = {
|
|
140447
|
+
__typename?: 'MercuryPositionDataSummary';
|
|
140448
|
+
filledPositions?: Maybe<Scalars['Int']['output']>;
|
|
140449
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
140450
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
140451
|
+
totalPositions?: Maybe<Scalars['Int']['output']>;
|
|
140452
|
+
unfilledPercentage?: Maybe<Scalars['Float']['output']>;
|
|
140453
|
+
unfilledPositions?: Maybe<Scalars['Int']['output']>;
|
|
140454
|
+
};
|
|
139144
140455
|
export declare type MercuryPositionDeltaByStatus = {
|
|
139145
140456
|
__typename?: 'MercuryPositionDeltaByStatus';
|
|
139146
140457
|
positionDelta?: Maybe<Scalars['Int']['output']>;
|
|
@@ -139447,7 +140758,8 @@ export declare type MercuryQueryApi = {
|
|
|
139447
140758
|
aiFocusAreaGoalContextData?: Maybe<MercuryFocusAreaGoalContext>;
|
|
139448
140759
|
aiFocusAreaSummary?: Maybe<MercuryFocusAreaSummary>;
|
|
139449
140760
|
aiFocusAreaWorkContextData?: Maybe<MercuryFocusAreaWorkContext>;
|
|
139450
|
-
aiLinkedGoalOrWorkInsightSummary?: Maybe<
|
|
140761
|
+
aiLinkedGoalOrWorkInsightSummary?: Maybe<MercuryLinkedGoalOrWorkAiSummary>;
|
|
140762
|
+
aiPositionInsightSummary?: Maybe<MercuryPositionDataSummary>;
|
|
139451
140763
|
comments?: Maybe<MercuryCommentConnection>;
|
|
139452
140764
|
commentsByAris?: Maybe<Array<Maybe<MercuryComment>>>;
|
|
139453
140765
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
@@ -139464,7 +140776,6 @@ export declare type MercuryQueryApi = {
|
|
|
139464
140776
|
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
139465
140777
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
139466
140778
|
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
139467
|
-
focusAreas_internalDoNotUse?: Maybe<MercuryFocusAreaConnection>;
|
|
139468
140779
|
linkedGoalOrWorkSummary?: Maybe<MercuryLinkedGoalOrWorkSummary>;
|
|
139469
140780
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
139470
140781
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
@@ -139497,6 +140808,10 @@ export declare type MercuryQueryApiAiLinkedGoalOrWorkInsightSummaryArgs = {
|
|
|
139497
140808
|
focusAreaId: Scalars['ID']['input'];
|
|
139498
140809
|
sowId: Scalars['ID']['input'];
|
|
139499
140810
|
};
|
|
140811
|
+
export declare type MercuryQueryApiAiPositionInsightSummaryArgs = {
|
|
140812
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
140813
|
+
focusAreaId: Scalars['ID']['input'];
|
|
140814
|
+
};
|
|
139500
140815
|
export declare type MercuryQueryApiCommentsArgs = {
|
|
139501
140816
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139502
140817
|
cloudId: Scalars['ID']['input'];
|
|
@@ -139569,12 +140884,6 @@ export declare type MercuryQueryApiFocusAreasByExternalIdsArgs = {
|
|
|
139569
140884
|
cloudId: Scalars['ID']['input'];
|
|
139570
140885
|
ids: Array<Scalars['String']['input']>;
|
|
139571
140886
|
};
|
|
139572
|
-
export declare type MercuryQueryApiFocusAreas_InternalDoNotUseArgs = {
|
|
139573
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
139574
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139575
|
-
hydrationContextId?: InputMaybe<Scalars['ID']['input']>;
|
|
139576
|
-
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
139577
|
-
};
|
|
139578
140887
|
export declare type MercuryQueryApiLinkedGoalOrWorkSummaryArgs = {
|
|
139579
140888
|
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
139580
140889
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -140346,7 +141655,6 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
140346
141655
|
changeSummaryByFocusAreaIds?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
140347
141656
|
changeSummaryForChangeProposal?: Maybe<MercuryChangeSummaryForChangeProposal>;
|
|
140348
141657
|
changeSummaryForStrategicEvent?: Maybe<MercuryFocusAreaChangeSummary>;
|
|
140349
|
-
changeSummaryInternal?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
140350
141658
|
changeTypes: Array<MercuryChangeType>;
|
|
140351
141659
|
changes?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
140352
141660
|
changesByPositionIds?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
@@ -140417,9 +141725,6 @@ export declare type MercuryStrategicEventsQueryApiChangeSummaryForChangeProposal
|
|
|
140417
141725
|
export declare type MercuryStrategicEventsQueryApiChangeSummaryForStrategicEventArgs = {
|
|
140418
141726
|
strategicEventId?: InputMaybe<Scalars['ID']['input']>;
|
|
140419
141727
|
};
|
|
140420
|
-
export declare type MercuryStrategicEventsQueryApiChangeSummaryInternalArgs = {
|
|
140421
|
-
inputs: Array<MercuryChangeSummaryInput>;
|
|
140422
|
-
};
|
|
140423
141728
|
export declare type MercuryStrategicEventsQueryApiChangeTypesArgs = {
|
|
140424
141729
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
140425
141730
|
};
|
|
@@ -140881,6 +142186,16 @@ export declare type MercuryUpdateFocusAreaAboutContentInput = {
|
|
|
140881
142186
|
cloudId: Scalars['ID']['input'];
|
|
140882
142187
|
id: Scalars['ID']['input'];
|
|
140883
142188
|
};
|
|
142189
|
+
export declare type MercuryUpdateFocusAreaBudgetAmountInput = {
|
|
142190
|
+
amount: Scalars['String']['input'];
|
|
142191
|
+
id: Scalars['ID']['input'];
|
|
142192
|
+
};
|
|
142193
|
+
export declare type MercuryUpdateFocusAreaBudgetPayload = Payload & {
|
|
142194
|
+
__typename?: 'MercuryUpdateFocusAreaBudgetPayload';
|
|
142195
|
+
errors?: Maybe<Array<MutationError>>;
|
|
142196
|
+
success: Scalars['Boolean']['output'];
|
|
142197
|
+
updatedFocusAreaBudget?: Maybe<MercuryFocusAreaBudget>;
|
|
142198
|
+
};
|
|
140884
142199
|
export declare type MercuryUpdateFocusAreaHierarchyNameInput = {
|
|
140885
142200
|
id: Scalars['ID']['input'];
|
|
140886
142201
|
name: Scalars['String']['input'];
|
|
@@ -141387,7 +142702,6 @@ export declare type Mutation = {
|
|
|
141387
142702
|
__typename?: 'Mutation';
|
|
141388
142703
|
actions?: Maybe<ActionsMutation>;
|
|
141389
142704
|
activatePaywallContent?: Maybe<ActivatePaywallContentPayload>;
|
|
141390
|
-
addBetaUserAsSiteCreator?: Maybe<AddBetaUserAsSiteCreatorPayload>;
|
|
141391
142705
|
addDefaultExCoSpacePermissions?: Maybe<AddDefaultExCoSpacePermissionsPayload>;
|
|
141392
142706
|
addLabels?: Maybe<AddLabelsPayload>;
|
|
141393
142707
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
@@ -141502,6 +142816,7 @@ export declare type Mutation = {
|
|
|
141502
142816
|
assetsDM_createDataSource?: Maybe<AssetsDmCreateDataSourcePayload>;
|
|
141503
142817
|
assetsDM_createDataSourceType?: Maybe<AssetsDmCreateDataSourceTypeResponse>;
|
|
141504
142818
|
assetsDM_createDefaultCleansingRule?: Maybe<AssetsDmCreateDefaultCleansingRuleResponse>;
|
|
142819
|
+
assetsDM_createObjectAttribute?: Maybe<AssetsDmCreateObjectAttributeResponse>;
|
|
141505
142820
|
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
141506
142821
|
assetsDM_createObjectsListExportRequest?: Maybe<AssetsDmObjectsListExportRequestCreateResponse>;
|
|
141507
142822
|
assetsDM_createSavedSearch?: Maybe<AssetsDmSavedSearchesCreateResponse>;
|
|
@@ -141530,6 +142845,7 @@ export declare type Mutation = {
|
|
|
141530
142845
|
assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
|
|
141531
142846
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
141532
142847
|
assetsDM_importDataDictionary?: Maybe<AssetsDmImportDataDictionaryResponse>;
|
|
142848
|
+
assetsDM_resetDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
141533
142849
|
assetsDM_updateAttributePriority?: Maybe<AssetsDmUpdateAttributePriorityPayload>;
|
|
141534
142850
|
assetsDM_updateAttributePriorityOrder?: Maybe<AssetsDmAttributePriorityResponse>;
|
|
141535
142851
|
assetsDM_updateCleansingReason?: Maybe<AssetsDmUpdateCleansingReasonResponse>;
|
|
@@ -141537,8 +142853,10 @@ export declare type Mutation = {
|
|
|
141537
142853
|
assetsDM_updateDataSourcePriority?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
141538
142854
|
assetsDM_updateDataSourceType?: Maybe<AssetsDmUpdateDataSourceTypeResponse>;
|
|
141539
142855
|
assetsDM_updateDefaultCleansingRule?: Maybe<AssetsDmUpdateDefaultCleansingRuleResponse>;
|
|
142856
|
+
assetsVertical_createVerticalInstantiation: AssetsVerticalVerticalInstantiationPayload;
|
|
141540
142857
|
assetsVertical_generateInsights?: Maybe<AssetsVerticalGenerateInsightsPayload>;
|
|
141541
142858
|
assetsVertical_instantiateBundleByType: AssetsVerticalAsyncTaskPayload;
|
|
142859
|
+
assetsVertical_updateVerticalInstantiation: AssetsVerticalVerticalInstantiationPayload;
|
|
141542
142860
|
assets_updateObjectAttributeValue?: Maybe<AssetsAttributeOnObject>;
|
|
141543
142861
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
141544
142862
|
attachDanglingComment?: Maybe<Comment>;
|
|
@@ -141610,10 +142928,12 @@ export declare type Mutation = {
|
|
|
141610
142928
|
channelPlatform_createQueues?: Maybe<ChannelPlatformConnectQueue>;
|
|
141611
142929
|
channelPlatform_deleteQueues?: Maybe<ChannelPlatformMutationStatus>;
|
|
141612
142930
|
channelPlatform_endChatIfTicketIsNotPresent?: Maybe<ChannelPlatformChatClosureResponse>;
|
|
142931
|
+
channelPlatform_initiateOtp?: Maybe<ChannelPlatformSendOtpResponse>;
|
|
141613
142932
|
channelPlatform_performPluginAction?: Maybe<ChannelPlatformPluginActionResponse>;
|
|
141614
142933
|
channelPlatform_relayMessage?: Maybe<ChannelPlatformMutationStatus>;
|
|
141615
142934
|
channelPlatform_updateTracMetrics?: Maybe<ChannelPlatformTracMetricsResponse>;
|
|
141616
142935
|
channelPlatform_uploadAttachmentMetadata?: Maybe<ChannelPlatformAttachmentMetadataResponse>;
|
|
142936
|
+
channelPlatform_verifyOtp?: Maybe<ChannelPlatformVerifyOtpResponse>;
|
|
141617
142937
|
clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
|
|
141618
142938
|
cloudify_addRecommendation: CloudifyRecommendation;
|
|
141619
142939
|
cloudify_deleteRecommendations: Array<CloudifyRecommendationId>;
|
|
@@ -141697,6 +143017,7 @@ export declare type Mutation = {
|
|
|
141697
143017
|
confluence_removeTrack?: Maybe<ConfluenceRemoveTrackPayload>;
|
|
141698
143018
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
141699
143019
|
confluence_reorderTracks?: Maybe<ConfluenceReorderTrackPayload>;
|
|
143020
|
+
confluence_resolveApprovalAgent?: Maybe<ConfluenceApprovalAgentPayload>;
|
|
141700
143021
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
141701
143022
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
141702
143023
|
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
@@ -141758,6 +143079,7 @@ export declare type Mutation = {
|
|
|
141758
143079
|
copyDefaultSpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
141759
143080
|
copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
|
|
141760
143081
|
copySpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
143082
|
+
cpls_acceptAllSuggestions?: Maybe<CplsAcceptAllSuggestionsPayload>;
|
|
141761
143083
|
cpls_addContributions?: Maybe<CplsAddContributionsPayload>;
|
|
141762
143084
|
cpls_addContributorScopeAssociation?: Maybe<CplsAddContributorScopeAssociationPayload>;
|
|
141763
143085
|
cpls_addContributorWorkAssociation?: Maybe<CplsAddContributorWorkAssociationPayload>;
|
|
@@ -141935,6 +143257,7 @@ export declare type Mutation = {
|
|
|
141935
143257
|
goals_addProjectLink?: Maybe<TownsquareAddProjectLinkPayload>;
|
|
141936
143258
|
goals_archiveMetric?: Maybe<TownsquareGoalsArchiveMetricPayload>;
|
|
141937
143259
|
goals_clone?: Maybe<TownsquareGoalsClonePayload>;
|
|
143260
|
+
goals_connectSlackChannel?: Maybe<TownsquareGoalsConnectSlackChannelPayload>;
|
|
141938
143261
|
goals_create?: Maybe<TownsquareGoalsCreatePayload>;
|
|
141939
143262
|
goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
|
|
141940
143263
|
goals_createComment?: Maybe<TownsquareGoalsCreateCommentPayload>;
|
|
@@ -141949,6 +143272,7 @@ export declare type Mutation = {
|
|
|
141949
143272
|
goals_deleteLearning?: Maybe<TownsquareGoalsDeleteLearningPayload>;
|
|
141950
143273
|
goals_deleteProjectLink?: Maybe<TownsquareGoalsDeleteProjectLinkPayload>;
|
|
141951
143274
|
goals_deleteRisk?: Maybe<TownsquareGoalsDeleteRiskPayload>;
|
|
143275
|
+
goals_disconnectSlackChannel?: Maybe<TownsquareGoalsDisconnectSlackChannelPayload>;
|
|
141952
143276
|
goals_edit?: Maybe<TownsquareGoalsEditPayload>;
|
|
141953
143277
|
goals_editComment?: Maybe<TownsquareGoalsEditCommentPayload>;
|
|
141954
143278
|
goals_editDecision?: Maybe<TownsquareGoalsEditDecisionPayload>;
|
|
@@ -142017,6 +143341,8 @@ export declare type Mutation = {
|
|
|
142017
143341
|
jira?: Maybe<JiraMutation>;
|
|
142018
143342
|
jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
|
|
142019
143343
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
143344
|
+
jiraOpenBeta_createFeature?: Maybe<JiraOpenBetaFeatureCreatePayload>;
|
|
143345
|
+
jiraOpenBeta_updateFeature?: Maybe<JiraOpenBetaFeatureUpdatePayload>;
|
|
142020
143346
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
142021
143347
|
jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
142022
143348
|
jira_archiveIssue?: Maybe<JiraIssueArchivePayload>;
|
|
@@ -142141,6 +143467,7 @@ export declare type Mutation = {
|
|
|
142141
143467
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
142142
143468
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
142143
143469
|
jpdViewsService_associateGlobalView?: Maybe<JpdViewsServiceAssociateGlobalViewPayload>;
|
|
143470
|
+
jpdViewsService_cloneViewIntoGlobal?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
142144
143471
|
jpdViewsService_createGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload>;
|
|
142145
143472
|
jpdViewsService_createGlobalViewV2?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
142146
143473
|
jpdViewsService_deleteGlobalView?: Maybe<JpdViewsServiceDeleteGlobalViewPayload>;
|
|
@@ -142148,6 +143475,7 @@ export declare type Mutation = {
|
|
|
142148
143475
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
142149
143476
|
jpdViewsService_publishGlobalView?: Maybe<JpdViewsServicePublishGlobalViewPayload>;
|
|
142150
143477
|
jpdViewsService_rerankGlobalView?: Maybe<JpdViewsServiceRerankGlobalViewPayload>;
|
|
143478
|
+
jpdViewsService_setAssocToNewSpaces?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
142151
143479
|
jpdViewsService_unassociateGlobalView?: Maybe<JpdViewsServiceUnassociateGlobalViewPayload>;
|
|
142152
143480
|
jpdViewsService_updateGlobalView?: Maybe<JpdViewsServiceUpdateGlobalViewPayload>;
|
|
142153
143481
|
jpdViewsService_updateGlobalViewV2?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
@@ -142181,6 +143509,7 @@ export declare type Mutation = {
|
|
|
142181
143509
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
142182
143510
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
142183
143511
|
kitsune_updateInsight?: Maybe<KitsuneInsight>;
|
|
143512
|
+
kitsune_updateOrganization?: Maybe<KitsuneOrganizationNode>;
|
|
142184
143513
|
kitsune_updateSection?: Maybe<KitsuneSection>;
|
|
142185
143514
|
kitsune_updateSnippet?: Maybe<KitsuneSnippet>;
|
|
142186
143515
|
kitsune_updateSpace?: Maybe<KitsuneSpace>;
|
|
@@ -142466,6 +143795,7 @@ export declare type Mutation = {
|
|
|
142466
143795
|
stakeholderComms_validateSubscriberToken?: Maybe<Scalars['Boolean']['output']>;
|
|
142467
143796
|
stakeholderComms_verifyDns?: Maybe<StakeholderCommsVerifyDnsResponse>;
|
|
142468
143797
|
startSprint?: Maybe<SprintResponse>;
|
|
143798
|
+
studio_createDraftBuild?: Maybe<StudioCreateDraftBuildPayload>;
|
|
142469
143799
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
142470
143800
|
team?: Maybe<TeamMutation>;
|
|
142471
143801
|
templateMigration?: Maybe<TemplateMigration>;
|
|
@@ -142555,9 +143885,6 @@ export declare type Mutation = {
|
|
|
142555
143885
|
export declare type MutationActivatePaywallContentArgs = {
|
|
142556
143886
|
input: ActivatePaywallContentInput;
|
|
142557
143887
|
};
|
|
142558
|
-
export declare type MutationAddBetaUserAsSiteCreatorArgs = {
|
|
142559
|
-
input: AddBetaUserAsSiteCreatorInput;
|
|
142560
|
-
};
|
|
142561
143888
|
export declare type MutationAddDefaultExCoSpacePermissionsArgs = {
|
|
142562
143889
|
spacePermissionsInput: AddDefaultExCoSpacePermissionsInput;
|
|
142563
143890
|
};
|
|
@@ -143004,6 +144331,11 @@ export declare type MutationAssetsDm_CreateDefaultCleansingRuleArgs = {
|
|
|
143004
144331
|
input: AssetsDmCreateDefaultCleansingRuleInput;
|
|
143005
144332
|
workspaceId: Scalars['ID']['input'];
|
|
143006
144333
|
};
|
|
144334
|
+
export declare type MutationAssetsDm_CreateObjectAttributeArgs = {
|
|
144335
|
+
cloudId: Scalars['ID']['input'];
|
|
144336
|
+
payload: AssetsDmCreateObjectAttributeInput;
|
|
144337
|
+
workspaceId: Scalars['ID']['input'];
|
|
144338
|
+
};
|
|
143007
144339
|
export declare type MutationAssetsDm_CreateObjectTagArgs = {
|
|
143008
144340
|
cloudId: Scalars['ID']['input'];
|
|
143009
144341
|
input: AssetsDmObjectTagCreateInput;
|
|
@@ -143154,6 +144486,11 @@ export declare type MutationAssetsDm_ImportDataDictionaryArgs = {
|
|
|
143154
144486
|
payload: AssetsDmImportDataDictionaryInput;
|
|
143155
144487
|
workspaceId: Scalars['ID']['input'];
|
|
143156
144488
|
};
|
|
144489
|
+
export declare type MutationAssetsDm_ResetDataSourceMappingArgs = {
|
|
144490
|
+
cloudId: Scalars['ID']['input'];
|
|
144491
|
+
dataSourceId: Scalars['ID']['input'];
|
|
144492
|
+
workspaceId: Scalars['ID']['input'];
|
|
144493
|
+
};
|
|
143157
144494
|
export declare type MutationAssetsDm_UpdateAttributePriorityArgs = {
|
|
143158
144495
|
cloudId: Scalars['ID']['input'];
|
|
143159
144496
|
input: AssetsDmUpdateAttributePriorityInput;
|
|
@@ -143189,12 +144526,18 @@ export declare type MutationAssetsDm_UpdateDefaultCleansingRuleArgs = {
|
|
|
143189
144526
|
input: AssetsDmUpdateDefaultCleansingRuleInput;
|
|
143190
144527
|
workspaceId: Scalars['ID']['input'];
|
|
143191
144528
|
};
|
|
144529
|
+
export declare type MutationAssetsVertical_CreateVerticalInstantiationArgs = {
|
|
144530
|
+
input: AssetsVerticalCreateVerticalInstantiationInput;
|
|
144531
|
+
};
|
|
143192
144532
|
export declare type MutationAssetsVertical_GenerateInsightsArgs = {
|
|
143193
144533
|
input: AssetsVerticalGenerateInsightsInput;
|
|
143194
144534
|
};
|
|
143195
144535
|
export declare type MutationAssetsVertical_InstantiateBundleByTypeArgs = {
|
|
143196
144536
|
input: AssetsVerticalInstantiateBundleByTypeInput;
|
|
143197
144537
|
};
|
|
144538
|
+
export declare type MutationAssetsVertical_UpdateVerticalInstantiationArgs = {
|
|
144539
|
+
input: AssetsVerticalUpdateVerticalInstantiationInput;
|
|
144540
|
+
};
|
|
143198
144541
|
export declare type MutationAssets_UpdateObjectAttributeValueArgs = {
|
|
143199
144542
|
cloudId: Scalars['ID']['input'];
|
|
143200
144543
|
id: Scalars['ID']['input'];
|
|
@@ -143419,6 +144762,9 @@ export declare type MutationChannelPlatform_DeleteQueuesArgs = {
|
|
|
143419
144762
|
export declare type MutationChannelPlatform_EndChatIfTicketIsNotPresentArgs = {
|
|
143420
144763
|
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
143421
144764
|
};
|
|
144765
|
+
export declare type MutationChannelPlatform_InitiateOtpArgs = {
|
|
144766
|
+
conversationId: Scalars['String']['input'];
|
|
144767
|
+
};
|
|
143422
144768
|
export declare type MutationChannelPlatform_PerformPluginActionArgs = {
|
|
143423
144769
|
pluginActionRequest?: InputMaybe<ChannelPlatformPluginActionRequest>;
|
|
143424
144770
|
};
|
|
@@ -143432,6 +144778,10 @@ export declare type MutationChannelPlatform_UploadAttachmentMetadataArgs = {
|
|
|
143432
144778
|
attachmentId: Scalars['String']['input'];
|
|
143433
144779
|
metadata: Scalars['JSON']['input'];
|
|
143434
144780
|
};
|
|
144781
|
+
export declare type MutationChannelPlatform_VerifyOtpArgs = {
|
|
144782
|
+
conversationId: Scalars['String']['input'];
|
|
144783
|
+
otp: Scalars['String']['input'];
|
|
144784
|
+
};
|
|
143435
144785
|
export declare type MutationClearRestrictionsForFreeArgs = {
|
|
143436
144786
|
contentId: Scalars['ID']['input'];
|
|
143437
144787
|
};
|
|
@@ -143735,6 +145085,9 @@ export declare type MutationConfluence_ReorderTracksArgs = {
|
|
|
143735
145085
|
cloudId: Scalars['ID']['input'];
|
|
143736
145086
|
input: ConfluenceReorderTrackInput;
|
|
143737
145087
|
};
|
|
145088
|
+
export declare type MutationConfluence_ResolveApprovalAgentArgs = {
|
|
145089
|
+
cloudId: Scalars['ID']['input'];
|
|
145090
|
+
};
|
|
143738
145091
|
export declare type MutationConfluence_ResolveCommentsArgs = {
|
|
143739
145092
|
cloudId: Scalars['ID']['input'];
|
|
143740
145093
|
commentIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
@@ -143979,6 +145332,9 @@ export declare type MutationCopySpacePermissionsArgs = {
|
|
|
143979
145332
|
sourceSpaceKey: Scalars['String']['input'];
|
|
143980
145333
|
targetSpaceKey: Scalars['String']['input'];
|
|
143981
145334
|
};
|
|
145335
|
+
export declare type MutationCpls_AcceptAllSuggestionsArgs = {
|
|
145336
|
+
input: CplsAcceptAllSuggestionsInput;
|
|
145337
|
+
};
|
|
143982
145338
|
export declare type MutationCpls_AddContributionsArgs = {
|
|
143983
145339
|
input: CplsAddContributionsInput;
|
|
143984
145340
|
};
|
|
@@ -144597,6 +145953,9 @@ export declare type MutationGoals_ArchiveMetricArgs = {
|
|
|
144597
145953
|
export declare type MutationGoals_CloneArgs = {
|
|
144598
145954
|
input: TownsquareGoalsCloneInput;
|
|
144599
145955
|
};
|
|
145956
|
+
export declare type MutationGoals_ConnectSlackChannelArgs = {
|
|
145957
|
+
input: TownsquareGoalsConnectSlackChannelInput;
|
|
145958
|
+
};
|
|
144600
145959
|
export declare type MutationGoals_CreateArgs = {
|
|
144601
145960
|
input: TownsquareGoalsCreateInput;
|
|
144602
145961
|
};
|
|
@@ -144639,6 +145998,9 @@ export declare type MutationGoals_DeleteProjectLinkArgs = {
|
|
|
144639
145998
|
export declare type MutationGoals_DeleteRiskArgs = {
|
|
144640
145999
|
input: TownsquareGoalsDeleteRiskInput;
|
|
144641
146000
|
};
|
|
146001
|
+
export declare type MutationGoals_DisconnectSlackChannelArgs = {
|
|
146002
|
+
input: TownsquareGoalsDisconnectSlackChannelInput;
|
|
146003
|
+
};
|
|
144642
146004
|
export declare type MutationGoals_EditArgs = {
|
|
144643
146005
|
input?: InputMaybe<TownsquareGoalsEditInput>;
|
|
144644
146006
|
};
|
|
@@ -144826,6 +146188,14 @@ export declare type MutationInvokeExtensionArgs = {
|
|
|
144826
146188
|
export declare type MutationInvokePolarisObjectArgs = {
|
|
144827
146189
|
input: InvokePolarisObjectInput;
|
|
144828
146190
|
};
|
|
146191
|
+
export declare type MutationJiraOpenBeta_CreateFeatureArgs = {
|
|
146192
|
+
cloudId: Scalars['ID']['input'];
|
|
146193
|
+
input?: InputMaybe<JiraOpenBetaFeatureCreateInput>;
|
|
146194
|
+
};
|
|
146195
|
+
export declare type MutationJiraOpenBeta_UpdateFeatureArgs = {
|
|
146196
|
+
cloudId: Scalars['ID']['input'];
|
|
146197
|
+
input?: InputMaybe<JiraOpenBetaFeatureUpdateInput>;
|
|
146198
|
+
};
|
|
144829
146199
|
export declare type MutationJira_AddFieldsToFieldSchemeArgs = {
|
|
144830
146200
|
cloudId: Scalars['ID']['input'];
|
|
144831
146201
|
input: JiraAddFieldsToFieldSchemeInput;
|
|
@@ -145227,6 +146597,9 @@ export declare type MutationJira_UpdateSchemeFieldPerWorkTypeCustomizationsArgs
|
|
|
145227
146597
|
export declare type MutationJpdViewsService_AssociateGlobalViewArgs = {
|
|
145228
146598
|
input: JpdViewsServiceAssociateGlobalViewInput;
|
|
145229
146599
|
};
|
|
146600
|
+
export declare type MutationJpdViewsService_CloneViewIntoGlobalArgs = {
|
|
146601
|
+
input: JpdViewsServiceCloneViewIntoGlobalInput;
|
|
146602
|
+
};
|
|
145230
146603
|
export declare type MutationJpdViewsService_CreateGlobalViewArgs = {
|
|
145231
146604
|
cloudId: Scalars['ID']['input'];
|
|
145232
146605
|
input: JpdViewsServiceCreateGlobalViewInput;
|
|
@@ -145251,6 +146624,9 @@ export declare type MutationJpdViewsService_PublishGlobalViewArgs = {
|
|
|
145251
146624
|
export declare type MutationJpdViewsService_RerankGlobalViewArgs = {
|
|
145252
146625
|
input: JpdViewsServiceRerankGlobalViewInput;
|
|
145253
146626
|
};
|
|
146627
|
+
export declare type MutationJpdViewsService_SetAssocToNewSpacesArgs = {
|
|
146628
|
+
input: JpdViewsServiceSetAssocToNewSpacesInput;
|
|
146629
|
+
};
|
|
145254
146630
|
export declare type MutationJpdViewsService_UnassociateGlobalViewArgs = {
|
|
145255
146631
|
input: JpdViewsServiceUnassociateGlobalViewInput;
|
|
145256
146632
|
};
|
|
@@ -145389,6 +146765,12 @@ export declare type MutationKitsune_UpdateInsightArgs = {
|
|
|
145389
146765
|
id: Scalars['ID']['input'];
|
|
145390
146766
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
145391
146767
|
};
|
|
146768
|
+
export declare type MutationKitsune_UpdateOrganizationArgs = {
|
|
146769
|
+
defaultCustomerId?: InputMaybe<Scalars['ID']['input']>;
|
|
146770
|
+
id: Scalars['ID']['input'];
|
|
146771
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
146772
|
+
workspaceAri: Scalars['ID']['input'];
|
|
146773
|
+
};
|
|
145392
146774
|
export declare type MutationKitsune_UpdateSectionArgs = {
|
|
145393
146775
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
145394
146776
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -146317,6 +147699,9 @@ export declare type MutationStakeholderComms_VerifyDnsArgs = {
|
|
|
146317
147699
|
export declare type MutationStartSprintArgs = {
|
|
146318
147700
|
input?: InputMaybe<StartSprintInput>;
|
|
146319
147701
|
};
|
|
147702
|
+
export declare type MutationStudio_CreateDraftBuildArgs = {
|
|
147703
|
+
input: StudioCreateDraftBuildInput;
|
|
147704
|
+
};
|
|
146320
147705
|
export declare type MutationSubscribeToAppArgs = {
|
|
146321
147706
|
input: AppSubscribeInput;
|
|
146322
147707
|
};
|
|
@@ -148371,6 +149756,7 @@ export declare type PlaybookDetailsForView = {
|
|
|
148371
149756
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
148372
149757
|
executedOnIssues?: Maybe<Array<PlaybookExecutedIssue>>;
|
|
148373
149758
|
id: Scalars['ID']['output'];
|
|
149759
|
+
isAiCreated?: Maybe<Scalars['Boolean']['output']>;
|
|
148374
149760
|
lastUpdatedAt?: Maybe<Scalars['String']['output']>;
|
|
148375
149761
|
name?: Maybe<Scalars['String']['output']>;
|
|
148376
149762
|
owner?: Maybe<User>;
|
|
@@ -148408,6 +149794,7 @@ export declare enum PlaybookTemplateIcon {
|
|
|
148408
149794
|
ChangeManagement_4Icon = "CHANGE_MANAGEMENT_4_ICON",
|
|
148409
149795
|
Chat_5Icon = "CHAT_5_ICON",
|
|
148410
149796
|
DataPrivacyIcon = "DATA_PRIVACY_ICON",
|
|
149797
|
+
HourglassIcon = "HOURGLASS_ICON",
|
|
148411
149798
|
OnboardingIcon = "ONBOARDING_ICON",
|
|
148412
149799
|
RainstormIncidentIcon = "RAINSTORM_INCIDENT_ICON",
|
|
148413
149800
|
RefreshUpdateIcon = "REFRESH_UPDATE_ICON"
|
|
@@ -149151,12 +150538,17 @@ export declare type PostOfficeScopeEntryInput = {
|
|
|
149151
150538
|
name: Scalars['String']['input'];
|
|
149152
150539
|
};
|
|
149153
150540
|
export declare type PostOfficeSubscriptionMatchersInput = {
|
|
149154
|
-
activeScopes?: InputMaybe<
|
|
150541
|
+
activeScopes?: InputMaybe<Scalars['String']['input']>;
|
|
149155
150542
|
atlassianAccountId: Scalars['String']['input'];
|
|
149156
150543
|
placementId: Scalars['String']['input'];
|
|
149157
150544
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
149158
150545
|
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
149159
150546
|
};
|
|
150547
|
+
export declare type PreferredIndexInputType = {
|
|
150548
|
+
allowSelectAllAsFallback?: InputMaybe<Scalars['Boolean']['input']>;
|
|
150549
|
+
gqlSchemaName?: InputMaybe<Scalars['String']['input']>;
|
|
150550
|
+
indexName?: InputMaybe<Scalars['String']['input']>;
|
|
150551
|
+
};
|
|
149160
150552
|
export declare type PremiumExtensionsFeature = {
|
|
149161
150553
|
__typename?: 'PremiumExtensionsFeature';
|
|
149162
150554
|
isEntitled: Scalars['Boolean']['output'];
|
|
@@ -149553,6 +150945,7 @@ export declare type Query = {
|
|
|
149553
150945
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
149554
150946
|
admin_auditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
149555
150947
|
admin_auditLogProductMapping?: Maybe<Array<AdminAuditLogProductMapping>>;
|
|
150948
|
+
admin_auditLogUsers?: Maybe<AdminUserConnection>;
|
|
149556
150949
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
149557
150950
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
149558
150951
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
@@ -149571,6 +150964,7 @@ export declare type Query = {
|
|
|
149571
150964
|
admin_tokens?: Maybe<AdminTokenConnection>;
|
|
149572
150965
|
admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
|
|
149573
150966
|
admin_unitProfile?: Maybe<AdminUnit>;
|
|
150967
|
+
admin_unitSettings?: Maybe<AdminOrgUnitsSettings>;
|
|
149574
150968
|
admin_unitValidateName?: Maybe<AdminUnitValidateName>;
|
|
149575
150969
|
admin_unitsForOrg?: Maybe<AdminUnitConnection>;
|
|
149576
150970
|
admin_user?: Maybe<AdminUser>;
|
|
@@ -149754,10 +151148,14 @@ export declare type Query = {
|
|
|
149754
151148
|
assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
|
|
149755
151149
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
149756
151150
|
assetsVertical_attributeValues?: Maybe<AssetsVerticalAttributeValuesResult>;
|
|
151151
|
+
assetsVertical_attributesByTypes?: Maybe<AssetsVerticalAttributesResult>;
|
|
149757
151152
|
assetsVertical_bundle: AssetsVerticalBundleResult;
|
|
149758
151153
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
149759
151154
|
assetsVertical_insights?: Maybe<AssetsVerticalInsights>;
|
|
151155
|
+
assetsVertical_instantiatedBundle?: Maybe<AssetsVerticalBundleInstantiationResult>;
|
|
149760
151156
|
assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
|
|
151157
|
+
assetsVertical_verticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationResult>;
|
|
151158
|
+
assetsVertical_verticalInstantiations: AssetsVerticalVerticalInstantiationConnection;
|
|
149761
151159
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
149762
151160
|
assets_objectTypeAttributesByObjectTypeIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
149763
151161
|
assets_objectTypeAttributesBySchemaIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
@@ -149777,6 +151175,7 @@ export declare type Query = {
|
|
|
149777
151175
|
avpPermissions_getResourcePermission?: Maybe<AvpPermissionsResourcePermission>;
|
|
149778
151176
|
avpPermissions_hasCapability?: Maybe<AvpPermissionsHasCapabilityResponse>;
|
|
149779
151177
|
avp_getChart?: Maybe<AvpChart>;
|
|
151178
|
+
avp_getChartByConfigId?: Maybe<AvpChart>;
|
|
149780
151179
|
avp_getChartTemplatePreview?: Maybe<AvpChartTemplatePreview>;
|
|
149781
151180
|
avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
|
|
149782
151181
|
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
@@ -149833,6 +151232,7 @@ export declare type Query = {
|
|
|
149833
151232
|
changeManagement_rovoRiskAssessmentSettings: ChangeManagementRovoRiskAssessmentSettingsPayload;
|
|
149834
151233
|
changeManagement_rovoRiskAssessmentSettingsByIssue?: Maybe<ChangeManagementRovoRiskAssessmentSettingsPayload>;
|
|
149835
151234
|
channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
151235
|
+
channelPlatform_checkOtpVerified?: Maybe<ChannelPlatformCheckOtpVerifiedResponse>;
|
|
149836
151236
|
channelPlatform_createContact?: Maybe<ChannelPlatformCreateContactResponse>;
|
|
149837
151237
|
channelPlatform_downloadTranscript?: Maybe<ChannelPlatformDownloadTranscriptResponse>;
|
|
149838
151238
|
channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
|
|
@@ -150210,6 +151610,7 @@ export declare type Query = {
|
|
|
150210
151610
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
150211
151611
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
150212
151612
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
151613
|
+
goals_allWatchedGoalUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
150213
151614
|
goals_allWatchedGoalUpdatesCount?: Maybe<Scalars['Int']['output']>;
|
|
150214
151615
|
goals_appSettings?: Maybe<TownsquareGoalsAppSettings>;
|
|
150215
151616
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
@@ -150297,6 +151698,9 @@ export declare type Query = {
|
|
|
150297
151698
|
jiraAlignAgg_sitesByOrgId?: Maybe<Array<Maybe<JiraAlignAggSite>>>;
|
|
150298
151699
|
jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
|
|
150299
151700
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
151701
|
+
jiraOpenBeta_featureGetById?: Maybe<JiraOpenBetaFeature>;
|
|
151702
|
+
jiraOpenBeta_featureGetByIds?: Maybe<Array<Maybe<JiraOpenBetaFeature>>>;
|
|
151703
|
+
jiraOpenBeta_featureQuery?: Maybe<JiraOpenBetaFeatureConnection>;
|
|
150300
151704
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
150301
151705
|
jiraReleases?: Maybe<JiraReleases>;
|
|
150302
151706
|
jiraServers?: Maybe<JiraServersResult>;
|
|
@@ -150376,7 +151780,9 @@ export declare type Query = {
|
|
|
150376
151780
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
150377
151781
|
kitsune_organizations?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
150378
151782
|
kitsune_organizationsByName?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
151783
|
+
kitsune_searchCustomers?: Maybe<KitsuneCustomerConnection>;
|
|
150379
151784
|
kitsune_searchFeedback?: Maybe<KitsuneFeedbackConnection>;
|
|
151785
|
+
kitsune_searchOrganizations?: Maybe<KitsuneOrganizationConnection>;
|
|
150380
151786
|
kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
|
|
150381
151787
|
kitsune_snippets?: Maybe<Array<Maybe<KitsuneSnippet>>>;
|
|
150382
151788
|
kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
|
|
@@ -150408,6 +151814,7 @@ export declare type Query = {
|
|
|
150408
151814
|
loomUserStatus?: Maybe<LoomUserStatus>;
|
|
150409
151815
|
loom_comment?: Maybe<LoomComment>;
|
|
150410
151816
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
151817
|
+
loom_connectedCalendars?: Maybe<Array<Maybe<LoomConnectedCalendar>>>;
|
|
150411
151818
|
loom_createSpace?: Maybe<LoomSpace>;
|
|
150412
151819
|
loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
|
|
150413
151820
|
loom_joinableWorkspaces?: Maybe<Array<Maybe<LoomJoinableWorkspace>>>;
|
|
@@ -150425,7 +151832,9 @@ export declare type Query = {
|
|
|
150425
151832
|
loom_videoDurations?: Maybe<LoomVideoDurations>;
|
|
150426
151833
|
loom_videos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
150427
151834
|
loom_viewableVideo?: Maybe<LoomVideo>;
|
|
151835
|
+
loom_workspace?: Maybe<LoomWorkspace>;
|
|
150428
151836
|
loom_workspaceTrendingVideos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
151837
|
+
loom_workspaces?: Maybe<Array<Maybe<LoomWorkspace>>>;
|
|
150429
151838
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
150430
151839
|
macroBodyRenderer?: Maybe<MacroBody>;
|
|
150431
151840
|
macros?: Maybe<MacroConnection>;
|
|
@@ -150517,6 +151926,7 @@ export declare type Query = {
|
|
|
150517
151926
|
productListing?: Maybe<ProductListingResult>;
|
|
150518
151927
|
productListings: Array<ProductListingResult>;
|
|
150519
151928
|
projects_allWatchedProjectUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
151929
|
+
projects_allWatchedProjectUpdatesCount?: Maybe<Scalars['Int']['output']>;
|
|
150520
151930
|
projects_appSettings?: Maybe<TownsquareProjectsAppSettings>;
|
|
150521
151931
|
projects_byAri?: Maybe<TownsquareProject>;
|
|
150522
151932
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
@@ -150794,7 +152204,8 @@ export declare type QueryAdmin_AccessUrlsArgs = {
|
|
|
150794
152204
|
};
|
|
150795
152205
|
export declare type QueryAdmin_AppModulesArgs = {
|
|
150796
152206
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
150797
|
-
|
|
152207
|
+
appIdentifier?: InputMaybe<AdminAppModulesKey>;
|
|
152208
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
150798
152209
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
150799
152210
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
150800
152211
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -150834,6 +152245,13 @@ export declare type QueryAdmin_AuditLogEventsArgs = {
|
|
|
150834
152245
|
export declare type QueryAdmin_AuditLogProductMappingArgs = {
|
|
150835
152246
|
container: AdminAuditLogContainer;
|
|
150836
152247
|
};
|
|
152248
|
+
export declare type QueryAdmin_AuditLogUsersArgs = {
|
|
152249
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
152250
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
152251
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
152252
|
+
input: AdminAuditLogSearchUsersInput;
|
|
152253
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
152254
|
+
};
|
|
150837
152255
|
export declare type QueryAdmin_CheckLicensesCapacityArgs = {
|
|
150838
152256
|
input: AdminLicenseInput;
|
|
150839
152257
|
orgId: Scalars['ID']['input'];
|
|
@@ -150941,6 +152359,9 @@ export declare type QueryAdmin_UnitProfileArgs = {
|
|
|
150941
152359
|
orgId: Scalars['ID']['input'];
|
|
150942
152360
|
unitId?: InputMaybe<Scalars['ID']['input']>;
|
|
150943
152361
|
};
|
|
152362
|
+
export declare type QueryAdmin_UnitSettingsArgs = {
|
|
152363
|
+
orgId: Scalars['ID']['input'];
|
|
152364
|
+
};
|
|
150944
152365
|
export declare type QueryAdmin_UnitValidateNameArgs = {
|
|
150945
152366
|
orgId: Scalars['ID']['input'];
|
|
150946
152367
|
unitName: Scalars['String']['input'];
|
|
@@ -151329,7 +152750,8 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
|
151329
152750
|
projectKey: Scalars['String']['input'];
|
|
151330
152751
|
};
|
|
151331
152752
|
export declare type QueryAgentWorkspace_EligibleGroupsArgs = {
|
|
151332
|
-
|
|
152753
|
+
cloudId: Scalars['ID']['input'];
|
|
152754
|
+
projectKey: Scalars['String']['input'];
|
|
151333
152755
|
};
|
|
151334
152756
|
export declare type QueryAgentWorkspace_FindBestMatchAgentsArgs = {
|
|
151335
152757
|
input: AgentWorkspaceFindBestMatchAgentsInput;
|
|
@@ -151907,6 +153329,10 @@ export declare type QueryAssetsVertical_AttributeValuesArgs = {
|
|
|
151907
153329
|
cloudId: Scalars['ID']['input'];
|
|
151908
153330
|
input: AssetsVerticalAttributeValuesInput;
|
|
151909
153331
|
};
|
|
153332
|
+
export declare type QueryAssetsVertical_AttributesByTypesArgs = {
|
|
153333
|
+
cloudId: Scalars['ID']['input'];
|
|
153334
|
+
input: AssetsVerticalAttributesInput;
|
|
153335
|
+
};
|
|
151910
153336
|
export declare type QueryAssetsVertical_BundleArgs = {
|
|
151911
153337
|
cloudId: Scalars['ID']['input'];
|
|
151912
153338
|
type: AssetsVerticalBundleType;
|
|
@@ -151919,10 +153345,24 @@ export declare type QueryAssetsVertical_InsightsArgs = {
|
|
|
151919
153345
|
cloudId: Scalars['ID']['input'];
|
|
151920
153346
|
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
151921
153347
|
};
|
|
153348
|
+
export declare type QueryAssetsVertical_InstantiatedBundleArgs = {
|
|
153349
|
+
cloudId: Scalars['ID']['input'];
|
|
153350
|
+
type: AssetsVerticalBundleType;
|
|
153351
|
+
};
|
|
151922
153352
|
export declare type QueryAssetsVertical_ObjectsArgs = {
|
|
151923
153353
|
cloudId: Scalars['ID']['input'];
|
|
151924
153354
|
input?: InputMaybe<AssetsVerticalObjectsInput>;
|
|
151925
153355
|
};
|
|
153356
|
+
export declare type QueryAssetsVertical_VerticalInstantiationArgs = {
|
|
153357
|
+
cloudId: Scalars['ID']['input'];
|
|
153358
|
+
id: Scalars['ID']['input'];
|
|
153359
|
+
};
|
|
153360
|
+
export declare type QueryAssetsVertical_VerticalInstantiationsArgs = {
|
|
153361
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
153362
|
+
cloudId: Scalars['ID']['input'];
|
|
153363
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
153364
|
+
type?: InputMaybe<AssetsVerticalVerticalType>;
|
|
153365
|
+
};
|
|
151926
153366
|
export declare type QueryAssets_ObjectByIdArgs = {
|
|
151927
153367
|
id: Scalars['ID']['input'];
|
|
151928
153368
|
};
|
|
@@ -151986,6 +153426,11 @@ export declare type QueryAvpPermissions_HasCapabilityArgs = {
|
|
|
151986
153426
|
export declare type QueryAvp_GetChartArgs = {
|
|
151987
153427
|
chartAri: Scalars['ID']['input'];
|
|
151988
153428
|
};
|
|
153429
|
+
export declare type QueryAvp_GetChartByConfigIdArgs = {
|
|
153430
|
+
chartConfigId: Scalars['ID']['input'];
|
|
153431
|
+
cloudId: Scalars['ID']['input'];
|
|
153432
|
+
workspaceId: Scalars['ID']['input'];
|
|
153433
|
+
};
|
|
151989
153434
|
export declare type QueryAvp_GetChartTemplatePreviewArgs = {
|
|
151990
153435
|
cloudId: Scalars['ID']['input'];
|
|
151991
153436
|
templateFileName: Scalars['String']['input'];
|
|
@@ -152189,6 +153634,9 @@ export declare type QueryChangeManagement_RovoRiskAssessmentSettingsByIssueArgs
|
|
|
152189
153634
|
export declare type QueryChannelPlatform_ChatRequestDetailsArgs = {
|
|
152190
153635
|
request?: InputMaybe<ChannelPlatformChatRequestDetailsRequest>;
|
|
152191
153636
|
};
|
|
153637
|
+
export declare type QueryChannelPlatform_CheckOtpVerifiedArgs = {
|
|
153638
|
+
conversationId: Scalars['String']['input'];
|
|
153639
|
+
};
|
|
152192
153640
|
export declare type QueryChannelPlatform_CreateContactArgs = {
|
|
152193
153641
|
anonymousId?: InputMaybe<Scalars['String']['input']>;
|
|
152194
153642
|
request?: InputMaybe<ChannelPlatformSubmitRequestInput>;
|
|
@@ -153882,6 +155330,14 @@ export declare type QueryGetSummaryArgs = {
|
|
|
153882
155330
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
153883
155331
|
responseType?: InputMaybe<ResponseType>;
|
|
153884
155332
|
};
|
|
155333
|
+
export declare type QueryGoals_AllWatchedGoalUpdatesArgs = {
|
|
155334
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
155335
|
+
containerId: Scalars['ID']['input'];
|
|
155336
|
+
createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
155337
|
+
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
155338
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
155339
|
+
stateFilter?: InputMaybe<TownsquareUpdateStateFilter>;
|
|
155340
|
+
};
|
|
153885
155341
|
export declare type QueryGoals_AllWatchedGoalUpdatesCountArgs = {
|
|
153886
155342
|
containerId: Scalars['ID']['input'];
|
|
153887
155343
|
createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -154201,6 +155657,23 @@ export declare type QueryJiraAlignAgg_SitesByOrgIdArgs = {
|
|
|
154201
155657
|
env: Scalars['String']['input'];
|
|
154202
155658
|
orgId: Scalars['String']['input'];
|
|
154203
155659
|
};
|
|
155660
|
+
export declare type QueryJiraOpenBeta_FeatureGetByIdArgs = {
|
|
155661
|
+
cloudId: Scalars['ID']['input'];
|
|
155662
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
155663
|
+
shardingContext?: InputMaybe<Scalars['String']['input']>;
|
|
155664
|
+
};
|
|
155665
|
+
export declare type QueryJiraOpenBeta_FeatureGetByIdsArgs = {
|
|
155666
|
+
cloudId: Scalars['ID']['input'];
|
|
155667
|
+
ids?: InputMaybe<Array<InputMaybe<SkyBridgeIdInput>>>;
|
|
155668
|
+
};
|
|
155669
|
+
export declare type QueryJiraOpenBeta_FeatureQueryArgs = {
|
|
155670
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
155671
|
+
aqlQuery?: InputMaybe<Scalars['String']['input']>;
|
|
155672
|
+
cloudId: Scalars['ID']['input'];
|
|
155673
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
155674
|
+
shardingContext?: InputMaybe<Scalars['String']['input']>;
|
|
155675
|
+
sort?: InputMaybe<Scalars['String']['input']>;
|
|
155676
|
+
};
|
|
154204
155677
|
export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
154205
155678
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
154206
155679
|
filter?: InputMaybe<DevOpsServiceAndJiraProjectRelationshipFilter>;
|
|
@@ -154505,6 +155978,13 @@ export declare type QueryKitsune_OrganizationsByNameArgs = {
|
|
|
154505
155978
|
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
154506
155979
|
workspaceAri: Scalars['ID']['input'];
|
|
154507
155980
|
};
|
|
155981
|
+
export declare type QueryKitsune_SearchCustomersArgs = {
|
|
155982
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
155983
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
155984
|
+
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
155985
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
155986
|
+
workspaceAri: Scalars['ID']['input'];
|
|
155987
|
+
};
|
|
154508
155988
|
export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
154509
155989
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
154510
155990
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -154513,6 +155993,12 @@ export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
|
154513
155993
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
154514
155994
|
workspaceAri: Scalars['ID']['input'];
|
|
154515
155995
|
};
|
|
155996
|
+
export declare type QueryKitsune_SearchOrganizationsArgs = {
|
|
155997
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
155998
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
155999
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
156000
|
+
workspaceAri: Scalars['ID']['input'];
|
|
156001
|
+
};
|
|
154516
156002
|
export declare type QueryKitsune_SectionsArgs = {
|
|
154517
156003
|
ids: Array<Scalars['ID']['input']>;
|
|
154518
156004
|
};
|
|
@@ -154608,6 +156094,9 @@ export declare type QueryLoom_CommentArgs = {
|
|
|
154608
156094
|
export declare type QueryLoom_CommentsArgs = {
|
|
154609
156095
|
ids: Array<Scalars['ID']['input']>;
|
|
154610
156096
|
};
|
|
156097
|
+
export declare type QueryLoom_ConnectedCalendarsArgs = {
|
|
156098
|
+
siteId: Scalars['ID']['input'];
|
|
156099
|
+
};
|
|
154611
156100
|
export declare type QueryLoom_CreateSpaceArgs = {
|
|
154612
156101
|
analyticsSource?: InputMaybe<Scalars['String']['input']>;
|
|
154613
156102
|
name: Scalars['String']['input'];
|
|
@@ -154664,9 +156153,15 @@ export declare type QueryLoom_ViewableVideoArgs = {
|
|
|
154664
156153
|
feature: Scalars['String']['input'];
|
|
154665
156154
|
id: Scalars['ID']['input'];
|
|
154666
156155
|
};
|
|
156156
|
+
export declare type QueryLoom_WorkspaceArgs = {
|
|
156157
|
+
id: Scalars['ID']['input'];
|
|
156158
|
+
};
|
|
154667
156159
|
export declare type QueryLoom_WorkspaceTrendingVideosArgs = {
|
|
154668
156160
|
id: Scalars['ID']['input'];
|
|
154669
156161
|
};
|
|
156162
|
+
export declare type QueryLoom_WorkspacesArgs = {
|
|
156163
|
+
ids: Array<Scalars['ID']['input']>;
|
|
156164
|
+
};
|
|
154670
156165
|
export declare type QueryMacroBodyRendererArgs = {
|
|
154671
156166
|
adf: Scalars['String']['input'];
|
|
154672
156167
|
containedRender?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -154950,6 +156445,12 @@ export declare type QueryProjects_AllWatchedProjectUpdatesArgs = {
|
|
|
154950
156445
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
154951
156446
|
stateFilter?: InputMaybe<TownsquareUpdateStateFilter>;
|
|
154952
156447
|
};
|
|
156448
|
+
export declare type QueryProjects_AllWatchedProjectUpdatesCountArgs = {
|
|
156449
|
+
containerId: Scalars['ID']['input'];
|
|
156450
|
+
createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
156451
|
+
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
156452
|
+
stateFilter?: InputMaybe<TownsquareUpdateStateFilter>;
|
|
156453
|
+
};
|
|
154953
156454
|
export declare type QueryProjects_AppSettingsArgs = {
|
|
154954
156455
|
containerId: Scalars['ID']['input'];
|
|
154955
156456
|
};
|
|
@@ -158334,6 +159835,10 @@ export declare enum Scope {
|
|
|
158334
159835
|
ReadAppInstallation = "READ_APP_INSTALLATION",
|
|
158335
159836
|
ReadAppLogs = "READ_APP_LOGS",
|
|
158336
159837
|
ReadAppSystemToken = "READ_APP_SYSTEM_TOKEN",
|
|
159838
|
+
ReadCmdbAttributeJira = "READ_CMDB_ATTRIBUTE_JIRA",
|
|
159839
|
+
ReadCmdbObjectJira = "READ_CMDB_OBJECT_JIRA",
|
|
159840
|
+
ReadCmdbSchemaJira = "READ_CMDB_SCHEMA_JIRA",
|
|
159841
|
+
ReadCmdbTypeJira = "READ_CMDB_TYPE_JIRA",
|
|
158337
159842
|
ReadCompassAttentionItem = "READ_COMPASS_ATTENTION_ITEM",
|
|
158338
159843
|
ReadCompassComponent = "READ_COMPASS_COMPONENT",
|
|
158339
159844
|
ReadCompassEvent = "READ_COMPASS_EVENT",
|
|
@@ -158370,6 +159875,7 @@ export declare enum Scope {
|
|
|
158370
159875
|
ReadCustomer = "READ_CUSTOMER",
|
|
158371
159876
|
ReadDesign = "READ_DESIGN",
|
|
158372
159877
|
ReadDeveloperSpace = "READ_DEVELOPER_SPACE",
|
|
159878
|
+
ReadDevInfoJira = "READ_DEV_INFO_JIRA",
|
|
158373
159879
|
ReadFeedbackFeedback = "READ_FEEDBACK_FEEDBACK",
|
|
158374
159880
|
ReadInsightJpd = "READ_INSIGHT_JPD",
|
|
158375
159881
|
ReadJiraUser = "READ_JIRA_USER",
|
|
@@ -158386,6 +159892,7 @@ export declare enum Scope {
|
|
|
158386
159892
|
ReadJswSprint = "READ_JSW_SPRINT",
|
|
158387
159893
|
ReadKnowledgebase = "READ_KNOWLEDGEBASE",
|
|
158388
159894
|
ReadMe = "READ_ME",
|
|
159895
|
+
ReadMeetingLoom = "READ_MEETING_LOOM",
|
|
158389
159896
|
ReadNotifications = "READ_NOTIFICATIONS",
|
|
158390
159897
|
ReadOrganization = "READ_ORGANIZATION",
|
|
158391
159898
|
ReadOrganizationProperty = "READ_ORGANIZATION_PROPERTY",
|
|
@@ -158408,6 +159915,8 @@ export declare enum Scope {
|
|
|
158408
159915
|
ReadServicedeskOrganization = "READ_SERVICEDESK_ORGANIZATION",
|
|
158409
159916
|
ReadServicedeskProperty = "READ_SERVICEDESK_PROPERTY",
|
|
158410
159917
|
ReadServicedeskRequest = "READ_SERVICEDESK_REQUEST",
|
|
159918
|
+
ReadSettingsLoom = "READ_SETTINGS_LOOM",
|
|
159919
|
+
ReadSpaceLoom = "READ_SPACE_LOOM",
|
|
158411
159920
|
ReadStakeholderCommsAssignment = "READ_STAKEHOLDER_COMMS_ASSIGNMENT",
|
|
158412
159921
|
ReadStakeholderCommsComponent = "READ_STAKEHOLDER_COMMS_COMPONENT",
|
|
158413
159922
|
ReadStakeholderCommsIncident = "READ_STAKEHOLDER_COMMS_INCIDENT",
|
|
@@ -158422,6 +159931,7 @@ export declare enum Scope {
|
|
|
158422
159931
|
ReadTownsquareGoal = "READ_TOWNSQUARE_GOAL",
|
|
158423
159932
|
ReadTownsquareProject = "READ_TOWNSQUARE_PROJECT",
|
|
158424
159933
|
ReadTownsquareWorkspace = "READ_TOWNSQUARE_WORKSPACE",
|
|
159934
|
+
ReadVideoLoom = "READ_VIDEO_LOOM",
|
|
158425
159935
|
ReadViewJpd = "READ_VIEW_JPD",
|
|
158426
159936
|
ResolutionRead = "RESOLUTION_READ",
|
|
158427
159937
|
RovoAtlassianExternal = "ROVO_ATLASSIAN_EXTERNAL",
|
|
@@ -158463,6 +159973,7 @@ export declare enum Scope {
|
|
|
158463
159973
|
WorkflowSchemeWrite = "WORKFLOW_SCHEME_WRITE",
|
|
158464
159974
|
WorkflowWrite = "WORKFLOW_WRITE",
|
|
158465
159975
|
WriteAppDetails = "WRITE_APP_DETAILS",
|
|
159976
|
+
WriteCmdbAttributeJira = "WRITE_CMDB_ATTRIBUTE_JIRA",
|
|
158466
159977
|
WriteCompassComponent = "WRITE_COMPASS_COMPONENT",
|
|
158467
159978
|
WriteCompassEvent = "WRITE_COMPASS_EVENT",
|
|
158468
159979
|
WriteCompassMetric = "WRITE_COMPASS_METRIC",
|
|
@@ -158507,6 +160018,7 @@ export declare enum Scope {
|
|
|
158507
160018
|
WriteJswRemoteLink = "WRITE_JSW_REMOTE_LINK",
|
|
158508
160019
|
WriteJswSourceCode = "WRITE_JSW_SOURCE_CODE",
|
|
158509
160020
|
WriteJswSprint = "WRITE_JSW_SPRINT",
|
|
160021
|
+
WriteMeetingLoom = "WRITE_MEETING_LOOM",
|
|
158510
160022
|
WriteNotifications = "WRITE_NOTIFICATIONS",
|
|
158511
160023
|
WriteOrganization = "WRITE_ORGANIZATION",
|
|
158512
160024
|
WriteOrganizationProperty = "WRITE_ORGANIZATION_PROPERTY",
|
|
@@ -158526,6 +160038,8 @@ export declare enum Scope {
|
|
|
158526
160038
|
WriteServicedeskOrganization = "WRITE_SERVICEDESK_ORGANIZATION",
|
|
158527
160039
|
WriteServicedeskProperty = "WRITE_SERVICEDESK_PROPERTY",
|
|
158528
160040
|
WriteServicedeskRequest = "WRITE_SERVICEDESK_REQUEST",
|
|
160041
|
+
WriteSettingsLoom = "WRITE_SETTINGS_LOOM",
|
|
160042
|
+
WriteSpaceLoom = "WRITE_SPACE_LOOM",
|
|
158529
160043
|
WriteStakeholderCommsComponent = "WRITE_STAKEHOLDER_COMMS_COMPONENT",
|
|
158530
160044
|
WriteStakeholderCommsIncident = "WRITE_STAKEHOLDER_COMMS_INCIDENT",
|
|
158531
160045
|
WriteStakeholderCommsPage = "WRITE_STAKEHOLDER_COMMS_PAGE",
|
|
@@ -158537,6 +160051,7 @@ export declare enum Scope {
|
|
|
158537
160051
|
WriteTownsquareGoal = "WRITE_TOWNSQUARE_GOAL",
|
|
158538
160052
|
WriteTownsquareProject = "WRITE_TOWNSQUARE_PROJECT",
|
|
158539
160053
|
WriteTownsquareRelationship = "WRITE_TOWNSQUARE_RELATIONSHIP",
|
|
160054
|
+
WriteVideoLoom = "WRITE_VIDEO_LOOM",
|
|
158540
160055
|
WriteViewJpd = "WRITE_VIEW_JPD"
|
|
158541
160056
|
}
|
|
158542
160057
|
export declare type ScopeSprintIssue = {
|
|
@@ -158938,7 +160453,8 @@ export declare enum SearchLinkedEntitiesType {
|
|
|
158938
160453
|
export declare enum SearchLinkedEntityGranularity {
|
|
158939
160454
|
AllMatchingMessages = "ALL_MATCHING_MESSAGES",
|
|
158940
160455
|
Default = "DEFAULT",
|
|
158941
|
-
FullThread = "FULL_THREAD"
|
|
160456
|
+
FullThread = "FULL_THREAD",
|
|
160457
|
+
OnlyLinkedEntities = "ONLY_LINKED_ENTITIES"
|
|
158942
160458
|
}
|
|
158943
160459
|
export declare type SearchLinkedResult = SearchResult & {
|
|
158944
160460
|
__typename?: 'SearchLinkedResult';
|
|
@@ -159252,7 +160768,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
159252
160768
|
type: SearchResultType;
|
|
159253
160769
|
url: Scalars['String']['output'];
|
|
159254
160770
|
};
|
|
159255
|
-
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
160771
|
+
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
159256
160772
|
export declare type SearchResultFederated = SearchResult & {
|
|
159257
160773
|
__typename?: 'SearchResultFederated';
|
|
159258
160774
|
connectorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -159353,6 +160869,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
159353
160869
|
links?: Maybe<Array<Scalars['String']['output']>>;
|
|
159354
160870
|
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
159355
160871
|
owner?: Maybe<ThirdPartyUser>;
|
|
160872
|
+
parentId?: Maybe<Scalars['String']['output']>;
|
|
159356
160873
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
159357
160874
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
159358
160875
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
@@ -159759,6 +161276,7 @@ export declare type SearchThirdPartyProduct = {
|
|
|
159759
161276
|
datasourceId?: InputMaybe<Scalars['String']['input']>;
|
|
159760
161277
|
entities?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
159761
161278
|
integrationId?: InputMaybe<Scalars['String']['input']>;
|
|
161279
|
+
linkedEntities?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
159762
161280
|
linkedEntityGranularity?: InputMaybe<SearchLinkedEntityGranularity>;
|
|
159763
161281
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
159764
161282
|
providerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -180050,6 +181568,7 @@ export declare type SpfAsk = Node & {
|
|
|
180050
181568
|
__typename?: 'SpfAsk';
|
|
180051
181569
|
activities?: Maybe<SpfAskActivityConnection>;
|
|
180052
181570
|
comments?: Maybe<SpfAskCommentConnection>;
|
|
181571
|
+
connectedWork?: Maybe<SpfAskConnectedWorkConnection>;
|
|
180053
181572
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
180054
181573
|
createdBy?: Maybe<User>;
|
|
180055
181574
|
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
@@ -180092,6 +181611,11 @@ export declare type SpfAskCommentsArgs = {
|
|
|
180092
181611
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
180093
181612
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
180094
181613
|
};
|
|
181614
|
+
export declare type SpfAskConnectedWorkArgs = {
|
|
181615
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
181616
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
181617
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
181618
|
+
};
|
|
180095
181619
|
export declare type SpfAskFocusAreasArgs = {
|
|
180096
181620
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
180097
181621
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -180263,6 +181787,18 @@ export declare type SpfAskCommentEdge = {
|
|
|
180263
181787
|
node?: Maybe<SpfAskCommentResult>;
|
|
180264
181788
|
};
|
|
180265
181789
|
export declare type SpfAskCommentResult = QueryError | SpfAskComment;
|
|
181790
|
+
export declare type SpfAskConnectedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
181791
|
+
export declare type SpfAskConnectedWorkConnection = {
|
|
181792
|
+
__typename?: 'SpfAskConnectedWorkConnection';
|
|
181793
|
+
edges?: Maybe<Array<Maybe<SpfAskConnectedWorkEdge>>>;
|
|
181794
|
+
pageInfo: PageInfo;
|
|
181795
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
181796
|
+
};
|
|
181797
|
+
export declare type SpfAskConnectedWorkEdge = {
|
|
181798
|
+
__typename?: 'SpfAskConnectedWorkEdge';
|
|
181799
|
+
cursor: Scalars['String']['output'];
|
|
181800
|
+
node?: Maybe<SpfAskConnectedWork>;
|
|
181801
|
+
};
|
|
180266
181802
|
export declare type SpfAskConnection = {
|
|
180267
181803
|
__typename?: 'SpfAskConnection';
|
|
180268
181804
|
edges?: Maybe<Array<Maybe<SpfAskEdge>>>;
|
|
@@ -182482,6 +184018,7 @@ export declare type StudioBuild = {
|
|
|
182482
184018
|
__typename?: 'StudioBuild';
|
|
182483
184019
|
buildId?: Maybe<Scalars['UUID']['output']>;
|
|
182484
184020
|
dependencies?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
|
|
184021
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
182485
184022
|
number?: Maybe<Scalars['Int']['output']>;
|
|
182486
184023
|
overview?: Maybe<Scalars['String']['output']>;
|
|
182487
184024
|
specification?: Maybe<StudioBuildSpecification>;
|
|
@@ -182507,6 +184044,25 @@ export declare type StudioBuilds = {
|
|
|
182507
184044
|
__typename?: 'StudioBuilds';
|
|
182508
184045
|
sequence?: Maybe<Array<Maybe<StudioBuild>>>;
|
|
182509
184046
|
};
|
|
184047
|
+
export declare type StudioCreateDraftBuildDetails = {
|
|
184048
|
+
__typename?: 'StudioCreateDraftBuildDetails';
|
|
184049
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
184050
|
+
buildId?: Maybe<Scalars['UUID']['output']>;
|
|
184051
|
+
state?: Maybe<StudioBuildState>;
|
|
184052
|
+
type?: Maybe<StudioBuildType>;
|
|
184053
|
+
};
|
|
184054
|
+
export declare type StudioCreateDraftBuildInput = {
|
|
184055
|
+
buildNumber: Scalars['Int']['input'];
|
|
184056
|
+
solutionId: Scalars['UUID']['input'];
|
|
184057
|
+
solutionVersion: Scalars['Int']['input'];
|
|
184058
|
+
workspaceId: Scalars['ID']['input'];
|
|
184059
|
+
};
|
|
184060
|
+
export declare type StudioCreateDraftBuildPayload = Payload & {
|
|
184061
|
+
__typename?: 'StudioCreateDraftBuildPayload';
|
|
184062
|
+
build?: Maybe<StudioCreateDraftBuildDetails>;
|
|
184063
|
+
errors?: Maybe<Array<MutationError>>;
|
|
184064
|
+
success: Scalars['Boolean']['output'];
|
|
184065
|
+
};
|
|
182510
184066
|
export declare enum StudioPlanState {
|
|
182511
184067
|
Completed = "COMPLETED",
|
|
182512
184068
|
Disabled = "DISABLED",
|
|
@@ -182600,6 +184156,7 @@ export declare type Subscription = {
|
|
|
182600
184156
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
182601
184157
|
convoai_onAgentSessionCreate?: Maybe<ConvoAiAgentSessionCreate>;
|
|
182602
184158
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
184159
|
+
cpls_suggestionsExist: CplsSuggestionsExistencePayload;
|
|
182603
184160
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
182604
184161
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
182605
184162
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -182650,6 +184207,9 @@ export declare type SubscriptionConvoai_OnAgentSessionUpdateArgs = {
|
|
|
182650
184207
|
cloudId: Scalars['ID']['input'];
|
|
182651
184208
|
conversationId: Scalars['ID']['input'];
|
|
182652
184209
|
};
|
|
184210
|
+
export declare type SubscriptionCpls_SuggestionsExistArgs = {
|
|
184211
|
+
scopeId: Scalars['ID']['input'];
|
|
184212
|
+
};
|
|
182653
184213
|
export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
182654
184214
|
cloudId: Scalars['ID']['input'];
|
|
182655
184215
|
jobId: Scalars['ID']['input'];
|
|
@@ -182715,15 +184275,17 @@ export declare type SubscriptionLiveChat_UpdatesArgs = {
|
|
|
182715
184275
|
chatAri: Scalars['ID']['input'];
|
|
182716
184276
|
};
|
|
182717
184277
|
export declare type SubscriptionPostOffice_OnMessageReceivedArgs = {
|
|
182718
|
-
activeScopes?: InputMaybe<
|
|
184278
|
+
activeScopes?: InputMaybe<Scalars['String']['input']>;
|
|
182719
184279
|
context?: InputMaybe<PostOfficeContextInput>;
|
|
184280
|
+
pathname?: InputMaybe<Scalars['String']['input']>;
|
|
182720
184281
|
placementId: Scalars['String']['input'];
|
|
182721
184282
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
182722
184283
|
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
182723
184284
|
};
|
|
182724
184285
|
export declare type SubscriptionPostOffice_OnMessageReceivedEnrichedArgs = {
|
|
182725
|
-
activeScopes?: InputMaybe<
|
|
184286
|
+
activeScopes?: InputMaybe<Scalars['String']['input']>;
|
|
182726
184287
|
context?: InputMaybe<PostOfficeContextInput>;
|
|
184288
|
+
pathname?: InputMaybe<Scalars['String']['input']>;
|
|
182727
184289
|
placementId: Scalars['String']['input'];
|
|
182728
184290
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
182729
184291
|
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -183502,7 +185064,7 @@ export declare type TeamMutation = {
|
|
|
183502
185064
|
createTeam?: Maybe<TeamCreatePayload>;
|
|
183503
185065
|
createTeamType?: Maybe<TeamType>;
|
|
183504
185066
|
deleteCustomField?: Maybe<Scalars['Boolean']['output']>;
|
|
183505
|
-
deleteCustomFieldValue?: Maybe<
|
|
185067
|
+
deleteCustomFieldValue?: Maybe<TeamCustomFieldKeyValues>;
|
|
183506
185068
|
deleteTeam?: Maybe<TeamDeletePayload>;
|
|
183507
185069
|
deleteTeamType?: Maybe<TeamType>;
|
|
183508
185070
|
linkCustomFieldToOption?: Maybe<TeamCustomFieldKeyValues>;
|
|
@@ -183514,6 +185076,7 @@ export declare type TeamMutation = {
|
|
|
183514
185076
|
unlinkCustomFieldFromOption?: Maybe<TeamCustomFieldKeyValues>;
|
|
183515
185077
|
unlinkManagedTeams?: Maybe<TeamUnlinkManagedTeamsPayload>;
|
|
183516
185078
|
updateCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
|
|
185079
|
+
updateCustomFieldValue?: Maybe<TeamCustomFieldValue>;
|
|
183517
185080
|
updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
|
|
183518
185081
|
updateTeam?: Maybe<TeamUpdatePayload>;
|
|
183519
185082
|
updateTeamTypePermissions?: Maybe<TeamUpdateTeamTypePermissionsPayload>;
|
|
@@ -183603,6 +185166,10 @@ export declare type TeamMutationUpdateCustomFieldArgs = {
|
|
|
183603
185166
|
customFieldData: TeamUpdateCustomFieldPayload;
|
|
183604
185167
|
id: Scalars['ID']['input'];
|
|
183605
185168
|
};
|
|
185169
|
+
export declare type TeamMutationUpdateCustomFieldValueArgs = {
|
|
185170
|
+
customFieldValueData: TeamUpdateCustomFieldValuePayload;
|
|
185171
|
+
id: Scalars['ID']['input'];
|
|
185172
|
+
};
|
|
183606
185173
|
export declare type TeamMutationUpdateRoleAssignmentsArgs = {
|
|
183607
185174
|
organizationId: Scalars['ID']['input'];
|
|
183608
185175
|
principalsToAdd: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
@@ -183955,6 +185522,9 @@ export declare type TeamUpdateCustomFieldPayload = {
|
|
|
183955
185522
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
183956
185523
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
183957
185524
|
};
|
|
185525
|
+
export declare type TeamUpdateCustomFieldValuePayload = {
|
|
185526
|
+
value: Scalars['String']['input'];
|
|
185527
|
+
};
|
|
183958
185528
|
export declare type TeamUpdatePayload = Payload & {
|
|
183959
185529
|
__typename?: 'TeamUpdatePayload';
|
|
183960
185530
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -184620,7 +186190,7 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
184620
186190
|
Create = "CREATE"
|
|
184621
186191
|
}
|
|
184622
186192
|
export declare type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
|
|
184623
|
-
export declare type TownsquareActivityChange = TownsquareEditorsAddedChange | TownsquareEditorsRemovedChange | TownsquareFollowersAddedChange | TownsquareFollowersRemovedChange | TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalRenamedChange | TownsquareGoalRestoredChange | TownsquareStartDateAddedChange | TownsquareStartDateEditedChange | TownsquareTargetDateAddedChange | TownsquareUpdateDeletedChange;
|
|
186193
|
+
export declare type TownsquareActivityChange = TownsquareEditorsAddedChange | TownsquareEditorsRemovedChange | TownsquareFollowersAddedChange | TownsquareFollowersRemovedChange | TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalRenamedChange | TownsquareGoalRestoredChange | TownsquareStartDateAddedChange | TownsquareStartDateEditedChange | TownsquareTargetDateAddedChange | TownsquareTargetDateEditedChange | TownsquareUpdateDeletedChange;
|
|
184624
186194
|
export declare type TownsquareActivityItem = {
|
|
184625
186195
|
__typename?: 'TownsquareActivityItem';
|
|
184626
186196
|
actor?: Maybe<User>;
|
|
@@ -184743,6 +186313,9 @@ export declare type TownsquareCompletionProjectState = {
|
|
|
184743
186313
|
localizedLabel?: Maybe<TownsquareLocalizationField>;
|
|
184744
186314
|
value?: Maybe<TownsquareProjectStateValue>;
|
|
184745
186315
|
};
|
|
186316
|
+
export declare type TownsquareConnectSlackChannelInputMetadata = {
|
|
186317
|
+
fieldTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
186318
|
+
};
|
|
184746
186319
|
export declare type TownsquareContributor = {
|
|
184747
186320
|
__typename?: 'TownsquareContributor';
|
|
184748
186321
|
teamContributor?: Maybe<TownsquareTeamContributor>;
|
|
@@ -185661,6 +187234,20 @@ export declare type TownsquareGoalsClonePayload = {
|
|
|
185661
187234
|
goal?: Maybe<TownsquareGoal>;
|
|
185662
187235
|
success: Scalars['Boolean']['output'];
|
|
185663
187236
|
};
|
|
187237
|
+
export declare type TownsquareGoalsConnectSlackChannelInput = {
|
|
187238
|
+
containerId: Scalars['ID']['input'];
|
|
187239
|
+
goalId: Scalars['ID']['input'];
|
|
187240
|
+
metadata?: InputMaybe<TownsquareConnectSlackChannelInputMetadata>;
|
|
187241
|
+
slackChannelIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
187242
|
+
slackTeamId: Scalars['String']['input'];
|
|
187243
|
+
types: Array<InputMaybe<Scalars['String']['input']>>;
|
|
187244
|
+
};
|
|
187245
|
+
export declare type TownsquareGoalsConnectSlackChannelPayload = {
|
|
187246
|
+
__typename?: 'TownsquareGoalsConnectSlackChannelPayload';
|
|
187247
|
+
errors?: Maybe<Array<MutationError>>;
|
|
187248
|
+
slackChannels?: Maybe<Array<Maybe<TownsquareSlackChannelConnectionResult>>>;
|
|
187249
|
+
success: Scalars['Boolean']['output'];
|
|
187250
|
+
};
|
|
185664
187251
|
export declare type TownsquareGoalsCreateAddMetricTargetInput = {
|
|
185665
187252
|
createMetric?: InputMaybe<TownsquareGoalCreateMetricInput>;
|
|
185666
187253
|
goalId: Scalars['ID']['input'];
|
|
@@ -185809,6 +187396,16 @@ export declare type TownsquareGoalsDeleteRiskPayload = {
|
|
|
185809
187396
|
errors?: Maybe<Array<MutationError>>;
|
|
185810
187397
|
success: Scalars['Boolean']['output'];
|
|
185811
187398
|
};
|
|
187399
|
+
export declare type TownsquareGoalsDisconnectSlackChannelInput = {
|
|
187400
|
+
goalId: Scalars['ID']['input'];
|
|
187401
|
+
slackConnectionId: Scalars['String']['input'];
|
|
187402
|
+
};
|
|
187403
|
+
export declare type TownsquareGoalsDisconnectSlackChannelPayload = {
|
|
187404
|
+
__typename?: 'TownsquareGoalsDisconnectSlackChannelPayload';
|
|
187405
|
+
errors?: Maybe<Array<MutationError>>;
|
|
187406
|
+
slackConnectionId?: Maybe<Scalars['String']['output']>;
|
|
187407
|
+
success: Scalars['Boolean']['output'];
|
|
187408
|
+
};
|
|
185812
187409
|
export declare type TownsquareGoalsEditCommentInput = {
|
|
185813
187410
|
commentId: Scalars['ID']['input'];
|
|
185814
187411
|
commentText: Scalars['String']['input'];
|
|
@@ -186340,6 +187937,34 @@ export declare enum TownsquareMetricValueSortEnum {
|
|
|
186340
187937
|
TimeAsc = "TIME_ASC",
|
|
186341
187938
|
TimeDesc = "TIME_DESC"
|
|
186342
187939
|
}
|
|
187940
|
+
export declare type TownsquareMilestone = Node & {
|
|
187941
|
+
__typename?: 'TownsquareMilestone';
|
|
187942
|
+
completionDate?: Maybe<Scalars['Date']['output']>;
|
|
187943
|
+
creationDatetime?: Maybe<Scalars['DateTime']['output']>;
|
|
187944
|
+
id: Scalars['ID']['output'];
|
|
187945
|
+
lastModifiedDatetime?: Maybe<Scalars['DateTime']['output']>;
|
|
187946
|
+
status: TownsquareMilestoneStatus;
|
|
187947
|
+
targetDate: Scalars['Date']['output'];
|
|
187948
|
+
targetDateType: TownsquareTargetDateType;
|
|
187949
|
+
title: Scalars['String']['output'];
|
|
187950
|
+
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
187951
|
+
};
|
|
187952
|
+
export declare type TownsquareMilestoneConnection = {
|
|
187953
|
+
__typename?: 'TownsquareMilestoneConnection';
|
|
187954
|
+
count: Scalars['Int']['output'];
|
|
187955
|
+
edges?: Maybe<Array<Maybe<TownsquareMilestoneEdge>>>;
|
|
187956
|
+
pageInfo: PageInfo;
|
|
187957
|
+
};
|
|
187958
|
+
export declare type TownsquareMilestoneEdge = {
|
|
187959
|
+
__typename?: 'TownsquareMilestoneEdge';
|
|
187960
|
+
cursor: Scalars['String']['output'];
|
|
187961
|
+
node?: Maybe<TownsquareMilestone>;
|
|
187962
|
+
};
|
|
187963
|
+
export declare enum TownsquareMilestoneStatus {
|
|
187964
|
+
Completed = "COMPLETED",
|
|
187965
|
+
InProgress = "IN_PROGRESS",
|
|
187966
|
+
NotStarted = "NOT_STARTED"
|
|
187967
|
+
}
|
|
186343
187968
|
export declare type TownsquareMsteamsConnectedChannelChannelInfo = {
|
|
186344
187969
|
__typename?: 'TownsquareMsteamsConnectedChannelChannelInfo';
|
|
186345
187970
|
channelId?: Maybe<Scalars['String']['output']>;
|
|
@@ -186839,6 +188464,7 @@ export declare enum TownsquareProjectStateValue {
|
|
|
186839
188464
|
export declare type TownsquareProjectUpdate = Node & {
|
|
186840
188465
|
__typename?: 'TownsquareProjectUpdate';
|
|
186841
188466
|
ari: Scalars['String']['output'];
|
|
188467
|
+
changelog?: Maybe<Array<Maybe<TownsquareProjectChangelogItem>>>;
|
|
186842
188468
|
comments?: Maybe<TownsquareCommentConnection>;
|
|
186843
188469
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
186844
188470
|
creator?: Maybe<User>;
|
|
@@ -186846,6 +188472,7 @@ export declare type TownsquareProjectUpdate = Node & {
|
|
|
186846
188472
|
highlights?: Maybe<TownsquareHighlightConnection>;
|
|
186847
188473
|
id: Scalars['ID']['output'];
|
|
186848
188474
|
lastEditedBy?: Maybe<User>;
|
|
188475
|
+
milestones?: Maybe<TownsquareMilestoneConnection>;
|
|
186849
188476
|
missedUpdate: Scalars['Boolean']['output'];
|
|
186850
188477
|
newDueDate?: Maybe<TownsquareTargetDate>;
|
|
186851
188478
|
newPhase?: Maybe<TownsquareProjectPhaseDetails>;
|
|
@@ -186875,6 +188502,10 @@ export declare type TownsquareProjectUpdateHighlightsArgs = {
|
|
|
186875
188502
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
186876
188503
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
186877
188504
|
};
|
|
188505
|
+
export declare type TownsquareProjectUpdateMilestonesArgs = {
|
|
188506
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
188507
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
188508
|
+
};
|
|
186878
188509
|
export declare type TownsquareProjectUpdateUpdateNotesArgs = {
|
|
186879
188510
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
186880
188511
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -187445,6 +189076,7 @@ export declare type TownsquareQueryApi = {
|
|
|
187445
189076
|
goalTypesByAri?: Maybe<Array<Maybe<TownsquareGoalType>>>;
|
|
187446
189077
|
goalUpdatesByAris?: Maybe<Array<Maybe<TownsquareGoalUpdate>>>;
|
|
187447
189078
|
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
189079
|
+
milestonesByAri?: Maybe<Array<Maybe<TownsquareMilestone>>>;
|
|
187448
189080
|
project?: Maybe<TownsquareProject>;
|
|
187449
189081
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
187450
189082
|
projectTql?: Maybe<TownsquareProjectConnection>;
|
|
@@ -187507,6 +189139,9 @@ export declare type TownsquareQueryApiGoalUpdatesByArisArgs = {
|
|
|
187507
189139
|
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
187508
189140
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
187509
189141
|
};
|
|
189142
|
+
export declare type TownsquareQueryApiMilestonesByAriArgs = {
|
|
189143
|
+
aris: Array<Scalars['ID']['input']>;
|
|
189144
|
+
};
|
|
187510
189145
|
export declare type TownsquareQueryApiProjectArgs = {
|
|
187511
189146
|
ari: Scalars['String']['input'];
|
|
187512
189147
|
};
|
|
@@ -187611,6 +189246,24 @@ export declare type TownsquareSlackChannel = {
|
|
|
187611
189246
|
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
187612
189247
|
slackTeamName?: Maybe<Scalars['String']['output']>;
|
|
187613
189248
|
};
|
|
189249
|
+
export declare type TownsquareSlackChannelConnectionResult = {
|
|
189250
|
+
__typename?: 'TownsquareSlackChannelConnectionResult';
|
|
189251
|
+
creationDate?: Maybe<Scalars['String']['output']>;
|
|
189252
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
189253
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
189254
|
+
metadata?: Maybe<TownsquareSlackChannelMetadata>;
|
|
189255
|
+
private?: Maybe<Scalars['Boolean']['output']>;
|
|
189256
|
+
resourceId?: Maybe<Scalars['String']['output']>;
|
|
189257
|
+
slackChannelId?: Maybe<Scalars['String']['output']>;
|
|
189258
|
+
slackChannelName?: Maybe<Scalars['String']['output']>;
|
|
189259
|
+
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
189260
|
+
subscriberId?: Maybe<Scalars['String']['output']>;
|
|
189261
|
+
types?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
189262
|
+
};
|
|
189263
|
+
export declare type TownsquareSlackChannelMetadata = {
|
|
189264
|
+
__typename?: 'TownsquareSlackChannelMetadata';
|
|
189265
|
+
fieldTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
189266
|
+
};
|
|
187614
189267
|
export declare type TownsquareSlackConnection = {
|
|
187615
189268
|
__typename?: 'TownsquareSlackConnection';
|
|
187616
189269
|
channel?: Maybe<TownsquareSlackChannel>;
|
|
@@ -187705,6 +189358,11 @@ export declare type TownsquareTargetDateAddedChange = {
|
|
|
187705
189358
|
__typename?: 'TownsquareTargetDateAddedChange';
|
|
187706
189359
|
newTargetDate?: Maybe<TownsquareTargetDate>;
|
|
187707
189360
|
};
|
|
189361
|
+
export declare type TownsquareTargetDateEditedChange = {
|
|
189362
|
+
__typename?: 'TownsquareTargetDateEditedChange';
|
|
189363
|
+
newTargetDate?: Maybe<TownsquareTargetDate>;
|
|
189364
|
+
oldTargetDate?: Maybe<TownsquareTargetDate>;
|
|
189365
|
+
};
|
|
187708
189366
|
export declare type TownsquareTargetDateInput = {
|
|
187709
189367
|
confidence?: InputMaybe<TownsquareTargetDateType>;
|
|
187710
189368
|
date?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -188680,6 +190338,7 @@ export declare type TrelloBoardBackground = {
|
|
|
188680
190338
|
bottomColor?: Maybe<Scalars['String']['output']>;
|
|
188681
190339
|
brightness?: Maybe<Scalars['String']['output']>;
|
|
188682
190340
|
color?: Maybe<Scalars['String']['output']>;
|
|
190341
|
+
darkColor?: Maybe<Scalars['String']['output']>;
|
|
188683
190342
|
darkImage?: Maybe<Scalars['String']['output']>;
|
|
188684
190343
|
image?: Maybe<Scalars['String']['output']>;
|
|
188685
190344
|
imageScaled?: Maybe<Array<TrelloScaleProps>>;
|
|
@@ -188723,6 +190382,13 @@ export declare type TrelloBoardChecklistsLimits = {
|
|
|
188723
190382
|
perBoard?: Maybe<TrelloLimitProps>;
|
|
188724
190383
|
perCard?: Maybe<TrelloLimitProps>;
|
|
188725
190384
|
};
|
|
190385
|
+
export declare enum TrelloBoardCommentingPermissions {
|
|
190386
|
+
Board = "BOARD",
|
|
190387
|
+
Disabled = "DISABLED",
|
|
190388
|
+
Observers = "OBSERVERS",
|
|
190389
|
+
Public = "PUBLIC",
|
|
190390
|
+
Workspace = "WORKSPACE"
|
|
190391
|
+
}
|
|
188726
190392
|
export declare type TrelloBoardConnectionUpdated = {
|
|
188727
190393
|
__typename?: 'TrelloBoardConnectionUpdated';
|
|
188728
190394
|
edges?: Maybe<Array<TrelloBoardUpdatedEdge>>;
|
|
@@ -188745,6 +190411,10 @@ export declare type TrelloBoardId = TrelloBaseBoardId & {
|
|
|
188745
190411
|
id: Scalars['ID']['output'];
|
|
188746
190412
|
objectId: Scalars['ID']['output'];
|
|
188747
190413
|
};
|
|
190414
|
+
export declare enum TrelloBoardInvitePermissionsInput {
|
|
190415
|
+
Admins = "ADMINS",
|
|
190416
|
+
Members = "MEMBERS"
|
|
190417
|
+
}
|
|
188748
190418
|
export declare type TrelloBoardLabelsLimits = {
|
|
188749
190419
|
__typename?: 'TrelloBoardLabelsLimits';
|
|
188750
190420
|
perBoard?: Maybe<TrelloLimitProps>;
|
|
@@ -190038,6 +191708,7 @@ export declare type TrelloDeleteCustomFieldInput = {
|
|
|
190038
191708
|
};
|
|
190039
191709
|
export declare type TrelloDeleteCustomFieldPayload = Payload & {
|
|
190040
191710
|
__typename?: 'TrelloDeleteCustomFieldPayload';
|
|
191711
|
+
customField?: Maybe<TrelloCustomFieldDeleted>;
|
|
190041
191712
|
errors?: Maybe<Array<MutationError>>;
|
|
190042
191713
|
success: Scalars['Boolean']['output'];
|
|
190043
191714
|
};
|
|
@@ -190385,7 +192056,7 @@ export declare type TrelloLabelConnectionUpdated = {
|
|
|
190385
192056
|
};
|
|
190386
192057
|
export declare type TrelloLabelDeleted = {
|
|
190387
192058
|
__typename?: 'TrelloLabelDeleted';
|
|
190388
|
-
id
|
|
192059
|
+
id: Scalars['ID']['output'];
|
|
190389
192060
|
};
|
|
190390
192061
|
export declare type TrelloLabelEdge = {
|
|
190391
192062
|
__typename?: 'TrelloLabelEdge';
|
|
@@ -190683,6 +192354,10 @@ export declare type TrelloMemberReferralUpdated = {
|
|
|
190683
192354
|
rewardClaimedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
190684
192355
|
rewardThreshold?: Maybe<Scalars['Int']['output']>;
|
|
190685
192356
|
};
|
|
192357
|
+
export declare type TrelloMemberReferrerUpdated = {
|
|
192358
|
+
__typename?: 'TrelloMemberReferrerUpdated';
|
|
192359
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
192360
|
+
};
|
|
190686
192361
|
export declare type TrelloMemberUpdated = {
|
|
190687
192362
|
__typename?: 'TrelloMemberUpdated';
|
|
190688
192363
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -190697,6 +192372,7 @@ export declare type TrelloMemberUpdated = {
|
|
|
190697
192372
|
notifications?: Maybe<TrelloMemberNotificationsUpdated>;
|
|
190698
192373
|
planner?: Maybe<TrelloPlannerUpdated>;
|
|
190699
192374
|
referral?: Maybe<TrelloMemberReferralUpdated>;
|
|
192375
|
+
referrer?: Maybe<TrelloMemberReferrerUpdated>;
|
|
190700
192376
|
username?: Maybe<Scalars['String']['output']>;
|
|
190701
192377
|
};
|
|
190702
192378
|
export declare type TrelloMemberUpdatedConnection = {
|
|
@@ -190903,7 +192579,9 @@ export declare type TrelloMutationApi = {
|
|
|
190903
192579
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
190904
192580
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
190905
192581
|
updateBoardBackground?: Maybe<TrelloUpdateBoardBackgroundPayload>;
|
|
192582
|
+
updateBoardCommentingPermissions?: Maybe<TrelloUpdateBoardCommentingPermissionsPayload>;
|
|
190906
192583
|
updateBoardDescription?: Maybe<TrelloUpdateBoardDescriptionPayload>;
|
|
192584
|
+
updateBoardInvitePermissions?: Maybe<TrelloUpdateBoardInvitePermissionsPayload>;
|
|
190907
192585
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
190908
192586
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
190909
192587
|
updateBoardStarPosition?: Maybe<TrelloUpdateBoardStarPositionPayload>;
|
|
@@ -191111,9 +192789,15 @@ export declare type TrelloMutationApiUpdateAiRuleArgs = {
|
|
|
191111
192789
|
export declare type TrelloMutationApiUpdateBoardBackgroundArgs = {
|
|
191112
192790
|
input: TrelloUpdateBoardBackgroundInput;
|
|
191113
192791
|
};
|
|
192792
|
+
export declare type TrelloMutationApiUpdateBoardCommentingPermissionsArgs = {
|
|
192793
|
+
input: TrelloUpdateBoardCommentingPermissionsInput;
|
|
192794
|
+
};
|
|
191114
192795
|
export declare type TrelloMutationApiUpdateBoardDescriptionArgs = {
|
|
191115
192796
|
input: TrelloUpdateBoardDescriptionInput;
|
|
191116
192797
|
};
|
|
192798
|
+
export declare type TrelloMutationApiUpdateBoardInvitePermissionsArgs = {
|
|
192799
|
+
input: TrelloUpdateBoardInvitePermissionsInput;
|
|
192800
|
+
};
|
|
191117
192801
|
export declare type TrelloMutationApiUpdateBoardIsTemplateArgs = {
|
|
191118
192802
|
input: TrelloUpdateBoardIsTemplateInput;
|
|
191119
192803
|
};
|
|
@@ -191931,6 +193615,7 @@ export declare type TrelloProposedEvent = {
|
|
|
191931
193615
|
cards?: Maybe<TrelloProposedEventCardConnection>;
|
|
191932
193616
|
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
191933
193617
|
objectId: Scalars['ID']['output'];
|
|
193618
|
+
source?: Maybe<TrelloProposedEventSource>;
|
|
191934
193619
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
191935
193620
|
};
|
|
191936
193621
|
export declare type TrelloProposedEventCardsArgs = {
|
|
@@ -191976,11 +193661,17 @@ export declare type TrelloProposedEventInboxCardUpdated = TrelloProposedEventBas
|
|
|
191976
193661
|
name?: Maybe<Scalars['String']['output']>;
|
|
191977
193662
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
191978
193663
|
};
|
|
193664
|
+
export declare enum TrelloProposedEventSource {
|
|
193665
|
+
Manual = "MANUAL",
|
|
193666
|
+
PlanMyDay = "PLAN_MY_DAY",
|
|
193667
|
+
Proactive = "PROACTIVE"
|
|
193668
|
+
}
|
|
191979
193669
|
export declare type TrelloProposedEventUpdated = {
|
|
191980
193670
|
__typename?: 'TrelloProposedEventUpdated';
|
|
191981
193671
|
cards?: Maybe<TrelloProposedEventCardConnectionUpdated>;
|
|
191982
193672
|
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
191983
193673
|
objectId: Scalars['ID']['output'];
|
|
193674
|
+
source?: Maybe<TrelloProposedEventSource>;
|
|
191984
193675
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
191985
193676
|
};
|
|
191986
193677
|
export declare type TrelloProviderCalendarDeleted = {
|
|
@@ -192594,6 +194285,16 @@ export declare type TrelloUpdateBoardBackgroundPayload = Payload & {
|
|
|
192594
194285
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
192595
194286
|
success: Scalars['Boolean']['output'];
|
|
192596
194287
|
};
|
|
194288
|
+
export declare type TrelloUpdateBoardCommentingPermissionsInput = {
|
|
194289
|
+
boardId: Scalars['ID']['input'];
|
|
194290
|
+
commenting: TrelloBoardCommentingPermissions;
|
|
194291
|
+
};
|
|
194292
|
+
export declare type TrelloUpdateBoardCommentingPermissionsPayload = Payload & {
|
|
194293
|
+
__typename?: 'TrelloUpdateBoardCommentingPermissionsPayload';
|
|
194294
|
+
board?: Maybe<TrelloBoard>;
|
|
194295
|
+
errors?: Maybe<Array<MutationError>>;
|
|
194296
|
+
success: Scalars['Boolean']['output'];
|
|
194297
|
+
};
|
|
192597
194298
|
export declare type TrelloUpdateBoardDescriptionInput = {
|
|
192598
194299
|
boardId: Scalars['ID']['input'];
|
|
192599
194300
|
description: Scalars['String']['input'];
|
|
@@ -192604,6 +194305,16 @@ export declare type TrelloUpdateBoardDescriptionPayload = Payload & {
|
|
|
192604
194305
|
errors?: Maybe<Array<MutationError>>;
|
|
192605
194306
|
success: Scalars['Boolean']['output'];
|
|
192606
194307
|
};
|
|
194308
|
+
export declare type TrelloUpdateBoardInvitePermissionsInput = {
|
|
194309
|
+
boardId: Scalars['ID']['input'];
|
|
194310
|
+
invitations: TrelloBoardInvitePermissionsInput;
|
|
194311
|
+
};
|
|
194312
|
+
export declare type TrelloUpdateBoardInvitePermissionsPayload = Payload & {
|
|
194313
|
+
__typename?: 'TrelloUpdateBoardInvitePermissionsPayload';
|
|
194314
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194315
|
+
errors?: Maybe<Array<MutationError>>;
|
|
194316
|
+
success: Scalars['Boolean']['output'];
|
|
194317
|
+
};
|
|
192607
194318
|
export declare type TrelloUpdateBoardIsTemplateInput = {
|
|
192608
194319
|
boardId: Scalars['ID']['input'];
|
|
192609
194320
|
value: Scalars['Boolean']['input'];
|
|
@@ -193732,8 +195443,12 @@ export declare type UnifiedCachingQueryGetSimpleCacheKeyArgs = {
|
|
|
193732
195443
|
};
|
|
193733
195444
|
export declare type UnifiedChampionConsentInput = {
|
|
193734
195445
|
aaid: Scalars['String']['input'];
|
|
195446
|
+
consentNda: Scalars['Boolean']['input'];
|
|
195447
|
+
consentPrivacyPolicy: Scalars['Boolean']['input'];
|
|
193735
195448
|
consentProgramAgreement: Scalars['Boolean']['input'];
|
|
193736
|
-
consentSuccessChampionAgreement
|
|
195449
|
+
consentSuccessChampionAgreement?: InputMaybe<Scalars['Boolean']['input']>;
|
|
195450
|
+
preferredEmailId?: InputMaybe<Scalars['String']['input']>;
|
|
195451
|
+
primaryEmailId?: InputMaybe<Scalars['String']['input']>;
|
|
193737
195452
|
};
|
|
193738
195453
|
export declare type UnifiedChampionConsentMutation = {
|
|
193739
195454
|
__typename?: 'UnifiedChampionConsentMutation';
|
|
@@ -195644,6 +197359,7 @@ export declare type UserOnboardingState = {
|
|
|
195644
197359
|
};
|
|
195645
197360
|
export declare type UserPreferences = {
|
|
195646
197361
|
__typename?: 'UserPreferences';
|
|
197362
|
+
commentsPanelSorting: ConfluenceCommentsPanelSorting;
|
|
195647
197363
|
confluenceEditorSettings?: Maybe<ConfluenceEditorSettings>;
|
|
195648
197364
|
contextualEmojiOptOut?: Maybe<Scalars['Boolean']['output']>;
|
|
195649
197365
|
endOfPageRecommendationsOptInStatus: Scalars['String']['output'];
|
|
@@ -195696,6 +197412,7 @@ export declare type UserPreferencesSpaceViewsPersistenceArgs = {
|
|
|
195696
197412
|
export declare type UserPreferencesInput = {
|
|
195697
197413
|
addUserSpaceNotifiedChangeBoardingOfExternalCollab?: InputMaybe<Scalars['String']['input']>;
|
|
195698
197414
|
addUserSpaceNotifiedOfExternalCollab?: InputMaybe<Scalars['String']['input']>;
|
|
197415
|
+
commentsPanelSorting?: InputMaybe<ConfluenceCommentsPanelSorting>;
|
|
195699
197416
|
confluenceEditorSettingsInput?: InputMaybe<ConfluenceEditorSettingsInput>;
|
|
195700
197417
|
contextualEmojiOptOut?: InputMaybe<Scalars['Boolean']['input']>;
|
|
195701
197418
|
endOfPageRecommendationsOptInStatus?: InputMaybe<Scalars['String']['input']>;
|