@forge/cli-shared 8.16.0 → 8.16.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/out/graphql/graphql-types.d.ts +1194 -99
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +204 -50
- package/package.json +2 -2
|
@@ -128,10 +128,6 @@ export declare type Scalars = {
|
|
|
128
128
|
input: any;
|
|
129
129
|
output: any;
|
|
130
130
|
};
|
|
131
|
-
VTRI: {
|
|
132
|
-
input: any;
|
|
133
|
-
output: any;
|
|
134
|
-
};
|
|
135
131
|
};
|
|
136
132
|
export declare type AiConfigResponse = {
|
|
137
133
|
__typename?: 'AIConfigResponse';
|
|
@@ -298,21 +294,17 @@ export declare type AvpAnalyticsGetDataSourcesInput = {
|
|
|
298
294
|
workspaceId: Scalars['ID']['input'];
|
|
299
295
|
};
|
|
300
296
|
export declare type AvpAnalyticsGetModelInput = {
|
|
301
|
-
cloudId: Scalars['ID']['input'];
|
|
302
297
|
modelId: Scalars['ID']['input'];
|
|
303
298
|
modelType: AvpAnalyticsModelType;
|
|
304
299
|
modelVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
305
300
|
modelViewMode: AvpAnalyticsModelViewMode;
|
|
306
|
-
workspaceId: Scalars['ID']['input'];
|
|
307
301
|
};
|
|
308
302
|
export declare type AvpAnalyticsGetModelsInput = {
|
|
309
|
-
cloudId: Scalars['ID']['input'];
|
|
310
303
|
filterInput?: InputMaybe<AvpAnalyticsFilterInput>;
|
|
311
304
|
modelType: AvpAnalyticsModelType;
|
|
312
305
|
paginationInput: AvpAnalyticsPaginationInput;
|
|
313
306
|
searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
|
|
314
307
|
sortInput?: InputMaybe<AvpAnalyticsSortInput>;
|
|
315
|
-
workspaceId: Scalars['ID']['input'];
|
|
316
308
|
};
|
|
317
309
|
export declare type AvpAnalyticsJoinColumnPairs = {
|
|
318
310
|
__typename?: 'AVPAnalyticsJoinColumnPairs';
|
|
@@ -427,7 +419,7 @@ export declare type AvpAnalyticsModelMetadata = {
|
|
|
427
419
|
__typename?: 'AVPAnalyticsModelMetadata';
|
|
428
420
|
createdAt: Scalars['DateTime']['output'];
|
|
429
421
|
createdBy: Scalars['String']['output'];
|
|
430
|
-
|
|
422
|
+
currentUserPermission: AvpAnalyticsPermissionType;
|
|
431
423
|
everPublished?: Maybe<Scalars['Boolean']['output']>;
|
|
432
424
|
hasUnpublishedChanges?: Maybe<Scalars['Boolean']['output']>;
|
|
433
425
|
isStarredByCurrentUser?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -439,10 +431,6 @@ export declare type AvpAnalyticsModelMetadata = {
|
|
|
439
431
|
updatedAt: Scalars['DateTime']['output'];
|
|
440
432
|
updatedBy: Scalars['String']['output'];
|
|
441
433
|
};
|
|
442
|
-
export declare enum AvpAnalyticsModelPermission {
|
|
443
|
-
Edit = "EDIT",
|
|
444
|
-
ReadOnly = "READ_ONLY"
|
|
445
|
-
}
|
|
446
434
|
export declare enum AvpAnalyticsModelStatus {
|
|
447
435
|
Deleted = "DELETED",
|
|
448
436
|
Draft = "DRAFT",
|
|
@@ -466,6 +454,11 @@ export declare type AvpAnalyticsPaginationInput = {
|
|
|
466
454
|
pageNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
467
455
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
468
456
|
};
|
|
457
|
+
export declare enum AvpAnalyticsPermissionType {
|
|
458
|
+
None = "NONE",
|
|
459
|
+
Read = "READ",
|
|
460
|
+
Write = "WRITE"
|
|
461
|
+
}
|
|
469
462
|
export declare type AvpAnalyticsRangeValue = {
|
|
470
463
|
__typename?: 'AVPAnalyticsRangeValue';
|
|
471
464
|
fromExpression?: Maybe<Scalars['String']['output']>;
|
|
@@ -1256,6 +1249,9 @@ export declare type AvpPermissionsGetDashboardIdentityAccessInput = {
|
|
|
1256
1249
|
includeGroups?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1257
1250
|
permissions?: InputMaybe<Array<AvpPermissionsAccessLevel>>;
|
|
1258
1251
|
};
|
|
1252
|
+
export declare type AvpPermissionsGetResourcePermissionInput = {
|
|
1253
|
+
resourceId: Scalars['ID']['input'];
|
|
1254
|
+
};
|
|
1259
1255
|
export declare type AvpPermissionsGroupAccess = {
|
|
1260
1256
|
__typename?: 'AVPPermissionsGroupAccess';
|
|
1261
1257
|
accessLevel: AvpPermissionsAccessLevel;
|
|
@@ -1312,6 +1308,25 @@ export declare type AvpPermissionsPropertyValueString = {
|
|
|
1312
1308
|
__typename?: 'AVPPermissionsPropertyValueString';
|
|
1313
1309
|
value?: Maybe<Scalars['String']['output']>;
|
|
1314
1310
|
};
|
|
1311
|
+
export declare type AvpPermissionsResourcePermission = {
|
|
1312
|
+
__typename?: 'AVPPermissionsResourcePermission';
|
|
1313
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
1314
|
+
integrationId?: Maybe<Scalars['String']['output']>;
|
|
1315
|
+
permissionType?: Maybe<AvpPermissionsResourcePermissionType>;
|
|
1316
|
+
resourceId?: Maybe<Scalars['ID']['output']>;
|
|
1317
|
+
resourceType?: Maybe<AvpPermissionsResourceType>;
|
|
1318
|
+
};
|
|
1319
|
+
export declare enum AvpPermissionsResourcePermissionType {
|
|
1320
|
+
Closed = "CLOSED",
|
|
1321
|
+
Manage = "MANAGE",
|
|
1322
|
+
Read = "READ",
|
|
1323
|
+
Write = "WRITE"
|
|
1324
|
+
}
|
|
1325
|
+
export declare enum AvpPermissionsResourceType {
|
|
1326
|
+
Dashboard = "DASHBOARD",
|
|
1327
|
+
Datasource = "DATASOURCE",
|
|
1328
|
+
Site = "SITE"
|
|
1329
|
+
}
|
|
1315
1330
|
export declare type AvpPermissionsUpdateDashboardUserAccessInput = {
|
|
1316
1331
|
cloudId: Scalars['ID']['input'];
|
|
1317
1332
|
containerId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -3740,6 +3755,7 @@ export declare type AgentStudioAgentQueryInput = {
|
|
|
3740
3755
|
onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3741
3756
|
onlyMyAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3742
3757
|
onlyTemplateAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3758
|
+
onlyUnpublishedAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3743
3759
|
onlyVerifiedAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3744
3760
|
};
|
|
3745
3761
|
export declare type AgentStudioAgentResult = AgentStudioAssistant | AgentStudioServiceAgent | QueryError;
|
|
@@ -3982,6 +3998,14 @@ export declare type AgentStudioConnectedChannels = {
|
|
|
3982
3998
|
__typename?: 'AgentStudioConnectedChannels';
|
|
3983
3999
|
channels?: Maybe<Array<AgentStudioChannel>>;
|
|
3984
4000
|
};
|
|
4001
|
+
export declare type AgentStudioConversationConfig = {
|
|
4002
|
+
__typename?: 'AgentStudioConversationConfig';
|
|
4003
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
4004
|
+
};
|
|
4005
|
+
export declare type AgentStudioConversationConfigInput = {
|
|
4006
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
4007
|
+
};
|
|
4008
|
+
export declare type AgentStudioConversationConfigResponse = AgentStudioConversationConfig | QueryError;
|
|
3985
4009
|
export declare type AgentStudioConversationHistoryResult = {
|
|
3986
4010
|
__typename?: 'AgentStudioConversationHistoryResult';
|
|
3987
4011
|
edges?: Maybe<Array<Maybe<AgentStudioAssistantMessageEdge>>>;
|
|
@@ -4392,11 +4416,13 @@ export declare enum AgentStudioKnowledgeGapUploadJobStatus {
|
|
|
4392
4416
|
}
|
|
4393
4417
|
export declare type AgentStudioKnowledgeSource = {
|
|
4394
4418
|
__typename?: 'AgentStudioKnowledgeSource';
|
|
4419
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
4395
4420
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
4396
4421
|
filters?: Maybe<AgentStudioKnowledgeFilter>;
|
|
4397
4422
|
source: Scalars['String']['output'];
|
|
4398
4423
|
};
|
|
4399
4424
|
export declare type AgentStudioKnowledgeSourceInput = {
|
|
4425
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
4400
4426
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4401
4427
|
filters?: InputMaybe<AgentStudioKnowledgeFiltersInput>;
|
|
4402
4428
|
source: Scalars['String']['input'];
|
|
@@ -4744,6 +4770,12 @@ export declare type AgentStudioUpdateAgentVerificationPayload = Payload & {
|
|
|
4744
4770
|
errors?: Maybe<Array<MutationError>>;
|
|
4745
4771
|
success: Scalars['Boolean']['output'];
|
|
4746
4772
|
};
|
|
4773
|
+
export declare type AgentStudioUpdateConversationConfigurationPayload = Payload & {
|
|
4774
|
+
__typename?: 'AgentStudioUpdateConversationConfigurationPayload';
|
|
4775
|
+
conversationConfiguration?: Maybe<AgentStudioConversationConfig>;
|
|
4776
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4777
|
+
success: Scalars['Boolean']['output'];
|
|
4778
|
+
};
|
|
4747
4779
|
export declare type AgentStudioUpdateConversationStartersInput = {
|
|
4748
4780
|
conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4749
4781
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5020,6 +5052,8 @@ export declare type AgentWorkspaceCapacityInput = {
|
|
|
5020
5052
|
agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5021
5053
|
cloudId: Scalars['ID']['input'];
|
|
5022
5054
|
projectKey: Scalars['String']['input'];
|
|
5055
|
+
sortBy?: InputMaybe<AgentWorkspaceCapacitySortField>;
|
|
5056
|
+
sortOrder?: InputMaybe<SortDirection>;
|
|
5023
5057
|
statuses?: InputMaybe<Array<AgentWorkspaceCapacityStatus>>;
|
|
5024
5058
|
teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5025
5059
|
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -5032,6 +5066,9 @@ export declare type AgentWorkspaceCapacityPageInfo = {
|
|
|
5032
5066
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
5033
5067
|
totalCount: Scalars['Int']['output'];
|
|
5034
5068
|
};
|
|
5069
|
+
export declare enum AgentWorkspaceCapacitySortField {
|
|
5070
|
+
Capacity = "CAPACITY"
|
|
5071
|
+
}
|
|
5035
5072
|
export declare enum AgentWorkspaceCapacityStatus {
|
|
5036
5073
|
High = "HIGH",
|
|
5037
5074
|
Idle = "IDLE",
|
|
@@ -5278,6 +5315,30 @@ export declare type AgentWorkspaceEditShiftPayload = {
|
|
|
5278
5315
|
shift?: Maybe<AgentWorkspaceShift>;
|
|
5279
5316
|
success: Scalars['Boolean']['output'];
|
|
5280
5317
|
};
|
|
5318
|
+
export declare type AgentWorkspaceEligibilityError = {
|
|
5319
|
+
__typename?: 'AgentWorkspaceEligibilityError';
|
|
5320
|
+
code: AgentWorkspaceEligibilityErrorCode;
|
|
5321
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
5322
|
+
message: Scalars['String']['output'];
|
|
5323
|
+
};
|
|
5324
|
+
export declare enum AgentWorkspaceEligibilityErrorCode {
|
|
5325
|
+
InternalError = "INTERNAL_ERROR",
|
|
5326
|
+
TeamNotFound = "TEAM_NOT_FOUND",
|
|
5327
|
+
ValidationError = "VALIDATION_ERROR"
|
|
5328
|
+
}
|
|
5329
|
+
export declare type AgentWorkspaceFindBestMatchAgentsInput = {
|
|
5330
|
+
cloudId: Scalars['ID']['input'];
|
|
5331
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
5332
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
5333
|
+
requirements: Array<AgentWorkspaceSkillRequirementInput>;
|
|
5334
|
+
teamId?: InputMaybe<Scalars['ID']['input']>;
|
|
5335
|
+
};
|
|
5336
|
+
export declare type AgentWorkspaceFindBestMatchAgentsPayload = {
|
|
5337
|
+
__typename?: 'AgentWorkspaceFindBestMatchAgentsPayload';
|
|
5338
|
+
errors?: Maybe<Array<AgentWorkspaceEligibilityError>>;
|
|
5339
|
+
rankedAgents?: Maybe<Array<AgentWorkspaceRankedAgent>>;
|
|
5340
|
+
success: Scalars['Boolean']['output'];
|
|
5341
|
+
};
|
|
5281
5342
|
export declare type AgentWorkspacePageInfo = {
|
|
5282
5343
|
__typename?: 'AgentWorkspacePageInfo';
|
|
5283
5344
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -5331,6 +5392,12 @@ export declare type AgentWorkspaceProjectSkillsInput = {
|
|
|
5331
5392
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
5332
5393
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
5333
5394
|
};
|
|
5395
|
+
export declare type AgentWorkspaceRankedAgent = {
|
|
5396
|
+
__typename?: 'AgentWorkspaceRankedAgent';
|
|
5397
|
+
agent: AgentWorkspaceAgent;
|
|
5398
|
+
totalProficiencyScore: Scalars['Int']['output'];
|
|
5399
|
+
userSkills: Array<AgentWorkspaceUserSkill>;
|
|
5400
|
+
};
|
|
5334
5401
|
export declare type AgentWorkspaceRecommendationError = {
|
|
5335
5402
|
__typename?: 'AgentWorkspaceRecommendationError';
|
|
5336
5403
|
message: Scalars['String']['output'];
|
|
@@ -5574,6 +5641,10 @@ export declare enum AgentWorkspaceSkillMatchType {
|
|
|
5574
5641
|
All = "ALL",
|
|
5575
5642
|
Any = "ANY"
|
|
5576
5643
|
}
|
|
5644
|
+
export declare type AgentWorkspaceSkillRequirementInput = {
|
|
5645
|
+
minProficiencyLevel: Scalars['Int']['input'];
|
|
5646
|
+
skillId: Scalars['ID']['input'];
|
|
5647
|
+
};
|
|
5577
5648
|
export declare type AgentWorkspaceSkillUpdateInput = {
|
|
5578
5649
|
cloudId: Scalars['ID']['input'];
|
|
5579
5650
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6114,6 +6185,7 @@ export declare type AppContainerInstance = {
|
|
|
6114
6185
|
healthStatus?: Maybe<Scalars['String']['output']>;
|
|
6115
6186
|
id: Scalars['ID']['output'];
|
|
6116
6187
|
imageURI?: Maybe<Scalars['String']['output']>;
|
|
6188
|
+
instance?: Maybe<Scalars['String']['output']>;
|
|
6117
6189
|
memory?: Maybe<Scalars['String']['output']>;
|
|
6118
6190
|
};
|
|
6119
6191
|
export declare type AppContainerInstances = {
|
|
@@ -10099,6 +10171,20 @@ export declare type AssetsUserAttributeValue = {
|
|
|
10099
10171
|
id?: Maybe<Scalars['String']['output']>;
|
|
10100
10172
|
name?: Maybe<Scalars['String']['output']>;
|
|
10101
10173
|
};
|
|
10174
|
+
export declare type AssetsVerticalAsyncBundleActionError = {
|
|
10175
|
+
__typename?: 'AssetsVerticalAsyncBundleActionError';
|
|
10176
|
+
code: AssetsVerticalBundleActionErrorCode;
|
|
10177
|
+
message: Scalars['String']['output'];
|
|
10178
|
+
};
|
|
10179
|
+
export declare type AssetsVerticalAsyncBundleActionErrorResponse = {
|
|
10180
|
+
__typename?: 'AssetsVerticalAsyncBundleActionErrorResponse';
|
|
10181
|
+
errors?: Maybe<Array<AssetsVerticalAsyncBundleActionError>>;
|
|
10182
|
+
};
|
|
10183
|
+
export declare type AssetsVerticalAsyncBundleActionResult = AssetsVerticalAsyncBundleActionErrorResponse | AssetsVerticalAsyncTaskPayload;
|
|
10184
|
+
export declare type AssetsVerticalAsyncTaskPayload = {
|
|
10185
|
+
__typename?: 'AssetsVerticalAsyncTaskPayload';
|
|
10186
|
+
taskId: Scalars['String']['output'];
|
|
10187
|
+
};
|
|
10102
10188
|
export declare type AssetsVerticalBundle = {
|
|
10103
10189
|
__typename?: 'AssetsVerticalBundle';
|
|
10104
10190
|
id: Scalars['ID']['output'];
|
|
@@ -10106,10 +10192,53 @@ export declare type AssetsVerticalBundle = {
|
|
|
10106
10192
|
schemas?: Maybe<Array<AssetsVerticalSchemaTemplate>>;
|
|
10107
10193
|
type: AssetsVerticalBundleType;
|
|
10108
10194
|
};
|
|
10195
|
+
export declare enum AssetsVerticalBundleActionErrorCode {
|
|
10196
|
+
Conflict = "CONFLICT"
|
|
10197
|
+
}
|
|
10109
10198
|
export declare enum AssetsVerticalBundleType {
|
|
10110
10199
|
Cdm = "CDM",
|
|
10111
10200
|
Osc = "OSC"
|
|
10112
10201
|
}
|
|
10202
|
+
export declare type AssetsVerticalGenerateInsightsInput = {
|
|
10203
|
+
cloudId: Scalars['ID']['input'];
|
|
10204
|
+
};
|
|
10205
|
+
export declare type AssetsVerticalGenerateInsightsPayload = Payload & {
|
|
10206
|
+
__typename?: 'AssetsVerticalGenerateInsightsPayload';
|
|
10207
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10208
|
+
insights?: Maybe<AssetsVerticalInsights>;
|
|
10209
|
+
success: Scalars['Boolean']['output'];
|
|
10210
|
+
};
|
|
10211
|
+
export declare type AssetsVerticalInsightCard = {
|
|
10212
|
+
__typename?: 'AssetsVerticalInsightCard';
|
|
10213
|
+
ctaRovoPrompt: Scalars['String']['output'];
|
|
10214
|
+
id: Scalars['ID']['output'];
|
|
10215
|
+
insightType: Scalars['String']['output'];
|
|
10216
|
+
summary: Scalars['String']['output'];
|
|
10217
|
+
title: Scalars['String']['output'];
|
|
10218
|
+
};
|
|
10219
|
+
export declare type AssetsVerticalInsightGenerationError = {
|
|
10220
|
+
__typename?: 'AssetsVerticalInsightGenerationError';
|
|
10221
|
+
code: Scalars['String']['output'];
|
|
10222
|
+
message: Scalars['String']['output'];
|
|
10223
|
+
retryable: Scalars['Boolean']['output'];
|
|
10224
|
+
};
|
|
10225
|
+
export declare type AssetsVerticalInsights = {
|
|
10226
|
+
__typename?: 'AssetsVerticalInsights';
|
|
10227
|
+
error?: Maybe<AssetsVerticalInsightGenerationError>;
|
|
10228
|
+
insights: Array<AssetsVerticalInsightCard>;
|
|
10229
|
+
isCurrentUserInitiator: Scalars['Boolean']['output'];
|
|
10230
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
10231
|
+
lastGeneratedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
10232
|
+
status: AssetsVerticalInsightsStatus;
|
|
10233
|
+
suggestedPollIntervalMs?: Maybe<Scalars['Int']['output']>;
|
|
10234
|
+
};
|
|
10235
|
+
export declare enum AssetsVerticalInsightsStatus {
|
|
10236
|
+
Completed = "COMPLETED",
|
|
10237
|
+
Failed = "FAILED",
|
|
10238
|
+
InProgress = "IN_PROGRESS",
|
|
10239
|
+
NotStarted = "NOT_STARTED",
|
|
10240
|
+
Pending = "PENDING"
|
|
10241
|
+
}
|
|
10113
10242
|
export declare type AssetsVerticalSchemaTemplate = {
|
|
10114
10243
|
__typename?: 'AssetsVerticalSchemaTemplate';
|
|
10115
10244
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -10544,6 +10673,19 @@ export declare type BlockServiceCreateBlockInput = {
|
|
|
10544
10673
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
10545
10674
|
stepVersion?: InputMaybe<Scalars['Float']['input']>;
|
|
10546
10675
|
};
|
|
10676
|
+
export declare type BlockServiceCreateReferenceInput = {
|
|
10677
|
+
blockAri: Scalars['String']['input'];
|
|
10678
|
+
blockInstanceId: Scalars['String']['input'];
|
|
10679
|
+
documentAri: Scalars['String']['input'];
|
|
10680
|
+
};
|
|
10681
|
+
export declare type BlockServiceCreateReferencePayload = {
|
|
10682
|
+
__typename?: 'BlockServiceCreateReferencePayload';
|
|
10683
|
+
blockAri: Scalars['String']['output'];
|
|
10684
|
+
blockInstanceId: Scalars['String']['output'];
|
|
10685
|
+
createdAt: Scalars['String']['output'];
|
|
10686
|
+
createdBy?: Maybe<Scalars['String']['output']>;
|
|
10687
|
+
documentAri: Scalars['String']['output'];
|
|
10688
|
+
};
|
|
10547
10689
|
export declare type BlockServiceDeleteBlockInput = {
|
|
10548
10690
|
blockAri: Scalars['String']['input'];
|
|
10549
10691
|
deletionReason?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -10553,6 +10695,15 @@ export declare type BlockServiceDeleteBlockPayload = {
|
|
|
10553
10695
|
blockAri: Scalars['String']['output'];
|
|
10554
10696
|
deleted: Scalars['Boolean']['output'];
|
|
10555
10697
|
};
|
|
10698
|
+
export declare type BlockServiceDeleteReferenceInput = {
|
|
10699
|
+
blockAri: Scalars['String']['input'];
|
|
10700
|
+
blockInstanceId: Scalars['String']['input'];
|
|
10701
|
+
documentAri: Scalars['String']['input'];
|
|
10702
|
+
};
|
|
10703
|
+
export declare type BlockServiceDeleteReferencePayload = {
|
|
10704
|
+
__typename?: 'BlockServiceDeleteReferencePayload';
|
|
10705
|
+
success: Scalars['Boolean']['output'];
|
|
10706
|
+
};
|
|
10556
10707
|
export declare type BlockServiceDocumentReferenceBlocksPayload = {
|
|
10557
10708
|
__typename?: 'BlockServiceDocumentReferenceBlocksPayload';
|
|
10558
10709
|
blocks: Array<BlockServiceBlockPayload>;
|
|
@@ -13771,6 +13922,60 @@ export declare enum CloudIdProduct {
|
|
|
13771
13922
|
Radar = "RADAR",
|
|
13772
13923
|
Statuspage = "STATUSPAGE"
|
|
13773
13924
|
}
|
|
13925
|
+
export declare type CloudifyArgument = {
|
|
13926
|
+
__typename?: 'CloudifyArgument';
|
|
13927
|
+
key: Scalars['String']['output'];
|
|
13928
|
+
value: Scalars['String']['output'];
|
|
13929
|
+
};
|
|
13930
|
+
export declare type CloudifyArgumentInput = {
|
|
13931
|
+
key: Scalars['String']['input'];
|
|
13932
|
+
value: Scalars['String']['input'];
|
|
13933
|
+
};
|
|
13934
|
+
export declare type CloudifyCloudProjectTarget = {
|
|
13935
|
+
__typename?: 'CloudifyCloudProjectTarget';
|
|
13936
|
+
project: CloudifyProjectAri;
|
|
13937
|
+
};
|
|
13938
|
+
export declare type CloudifyProjectAri = {
|
|
13939
|
+
__typename?: 'CloudifyProjectARI';
|
|
13940
|
+
projectId: Scalars['ID']['output'];
|
|
13941
|
+
siteId: Scalars['ID']['output'];
|
|
13942
|
+
};
|
|
13943
|
+
export declare type CloudifyRecommendation = {
|
|
13944
|
+
__typename?: 'CloudifyRecommendation';
|
|
13945
|
+
createdAt: Scalars['String']['output'];
|
|
13946
|
+
id: CloudifyRecommendationId;
|
|
13947
|
+
reasoning: Scalars['String']['output'];
|
|
13948
|
+
steps: Array<CloudifyRecommendationStep>;
|
|
13949
|
+
target: CloudifyRecommendationTarget;
|
|
13950
|
+
title: Scalars['String']['output'];
|
|
13951
|
+
};
|
|
13952
|
+
export declare type CloudifyRecommendationId = {
|
|
13953
|
+
__typename?: 'CloudifyRecommendationId';
|
|
13954
|
+
value: Scalars['String']['output'];
|
|
13955
|
+
};
|
|
13956
|
+
export declare type CloudifyRecommendationInput = {
|
|
13957
|
+
reasoning: Scalars['String']['input'];
|
|
13958
|
+
steps: Array<CloudifyStepInput>;
|
|
13959
|
+
title: Scalars['String']['input'];
|
|
13960
|
+
};
|
|
13961
|
+
export declare type CloudifyRecommendationStep = {
|
|
13962
|
+
__typename?: 'CloudifyRecommendationStep';
|
|
13963
|
+
arguments: Array<CloudifyArgument>;
|
|
13964
|
+
reasoning: Scalars['String']['output'];
|
|
13965
|
+
title: Scalars['String']['output'];
|
|
13966
|
+
toolId: CloudifyToolId;
|
|
13967
|
+
};
|
|
13968
|
+
export declare type CloudifyRecommendationTarget = CloudifyCloudProjectTarget;
|
|
13969
|
+
export declare type CloudifyStepInput = {
|
|
13970
|
+
arguments: Array<CloudifyArgumentInput>;
|
|
13971
|
+
reasoning: Scalars['String']['input'];
|
|
13972
|
+
title: Scalars['String']['input'];
|
|
13973
|
+
toolId: Scalars['String']['input'];
|
|
13974
|
+
};
|
|
13975
|
+
export declare type CloudifyToolId = {
|
|
13976
|
+
__typename?: 'CloudifyToolId';
|
|
13977
|
+
value: Scalars['String']['output'];
|
|
13978
|
+
};
|
|
13774
13979
|
export declare type CodeInJira = {
|
|
13775
13980
|
__typename?: 'CodeInJira';
|
|
13776
13981
|
siteConfiguration?: Maybe<CodeInJiraSiteConfiguration>;
|
|
@@ -14790,6 +14995,7 @@ export declare type CommerceExpCcpMutation = {
|
|
|
14790
14995
|
deletePaymentMethod?: Maybe<CommerceExpDeletePaymentMethodPayload>;
|
|
14791
14996
|
mutateIfValidEntitlement?: Maybe<CommerceExpMutateIfValidEntitlement>;
|
|
14792
14997
|
orderBuilder?: Maybe<CommerceExpValidOrderResponse>;
|
|
14998
|
+
patchQuote?: Maybe<CommerceExpPatchQuotePayload>;
|
|
14793
14999
|
quoteReEstimation?: Maybe<CommerceExpReEstimateQuoteResult>;
|
|
14794
15000
|
removeAdmin?: Maybe<CommerceExpRemoveAdminPayload>;
|
|
14795
15001
|
sampleMutation?: Maybe<CommerceExpGenericMutationPayload>;
|
|
@@ -14842,6 +15048,9 @@ export declare type CommerceExpCcpMutationMutateIfValidEntitlementArgs = {
|
|
|
14842
15048
|
export declare type CommerceExpCcpMutationOrderBuilderArgs = {
|
|
14843
15049
|
input: CommerceExpOrderBuilderInput;
|
|
14844
15050
|
};
|
|
15051
|
+
export declare type CommerceExpCcpMutationPatchQuoteArgs = {
|
|
15052
|
+
input: CommerceExpPatchQuoteInput;
|
|
15053
|
+
};
|
|
14845
15054
|
export declare type CommerceExpCcpMutationQuoteReEstimationArgs = {
|
|
14846
15055
|
id: Scalars['ID']['input'];
|
|
14847
15056
|
};
|
|
@@ -15326,6 +15535,11 @@ export declare type CommerceExpChargingDetails = {
|
|
|
15326
15535
|
pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
|
|
15327
15536
|
pricingPlanId?: Maybe<Scalars['ID']['output']>;
|
|
15328
15537
|
};
|
|
15538
|
+
export declare type CommerceExpCollectionRecommendation = {
|
|
15539
|
+
__typename?: 'CommerceExpCollectionRecommendation';
|
|
15540
|
+
entitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
15541
|
+
offeringId?: Maybe<Scalars['String']['output']>;
|
|
15542
|
+
};
|
|
15329
15543
|
export declare type CommerceExpCommerceExpTestField = {
|
|
15330
15544
|
__typename?: 'CommerceExpCommerceExpTestField';
|
|
15331
15545
|
age?: Maybe<Scalars['Int']['output']>;
|
|
@@ -16896,6 +17110,18 @@ export declare enum CommerceExpPartnerType {
|
|
|
16896
17110
|
GlobalAlliancePartner = "GLOBAL_ALLIANCE_PARTNER",
|
|
16897
17111
|
SolutionPartner = "SOLUTION_PARTNER"
|
|
16898
17112
|
}
|
|
17113
|
+
export declare type CommerceExpPatchQuoteInput = {
|
|
17114
|
+
invoiceGroupId?: InputMaybe<Scalars['ID']['input']>;
|
|
17115
|
+
quoteId: Scalars['ID']['input'];
|
|
17116
|
+
transactionAccountId: Scalars['ID']['input'];
|
|
17117
|
+
version: Scalars['Int']['input'];
|
|
17118
|
+
};
|
|
17119
|
+
export declare type CommerceExpPatchQuotePayload = CommerceExpMutationPayload & {
|
|
17120
|
+
__typename?: 'CommerceExpPatchQuotePayload';
|
|
17121
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17122
|
+
quoteOperationId?: Maybe<Scalars['ID']['output']>;
|
|
17123
|
+
success: Scalars['Boolean']['output'];
|
|
17124
|
+
};
|
|
16899
17125
|
export declare type CommerceExpPauseBilling = {
|
|
16900
17126
|
__typename?: 'CommerceExpPauseBilling';
|
|
16901
17127
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
@@ -17299,10 +17525,7 @@ export declare enum CommerceExpQuoteLineItemContainerType {
|
|
|
17299
17525
|
Site = "SITE"
|
|
17300
17526
|
}
|
|
17301
17527
|
export declare enum CommerceExpQuoteLineItemGroupingLevelType {
|
|
17302
|
-
BillingSchedule = "BILLING_SCHEDULE"
|
|
17303
|
-
Container = "CONTAINER",
|
|
17304
|
-
Org = "ORG",
|
|
17305
|
-
Site = "SITE"
|
|
17528
|
+
BillingSchedule = "BILLING_SCHEDULE"
|
|
17306
17529
|
}
|
|
17307
17530
|
export declare type CommerceExpQuoteLineItemSaleTransitionDetails = {
|
|
17308
17531
|
__typename?: 'CommerceExpQuoteLineItemSaleTransitionDetails';
|
|
@@ -17840,6 +18063,7 @@ export declare type CommerceExpValidOrderItem = {
|
|
|
17840
18063
|
export declare type CommerceExpValidOrderResponse = CommerceExpGenericError | CommerceExpValidOrderError | CommerceExpValidOrderSuccess;
|
|
17841
18064
|
export declare type CommerceExpValidOrderSuccess = {
|
|
17842
18065
|
__typename?: 'CommerceExpValidOrderSuccess';
|
|
18066
|
+
collectionRecommendation?: Maybe<CommerceExpCollectionRecommendation>;
|
|
17843
18067
|
estimate?: Maybe<CommerceExpOrderIntentEstimate>;
|
|
17844
18068
|
order?: Maybe<CommerceExpOrderRequest>;
|
|
17845
18069
|
orderPreview?: Maybe<CommerceExpCcpOrderPreview>;
|
|
@@ -23218,6 +23442,49 @@ export declare enum ConfluenceAnalyticsCommentContentType {
|
|
|
23218
23442
|
Page = "page",
|
|
23219
23443
|
Whiteboard = "whiteboard"
|
|
23220
23444
|
}
|
|
23445
|
+
export declare enum ConfluenceAnalyticsMetricName {
|
|
23446
|
+
LiveDocsLoadTime = "LIVE_DOCS_LOAD_TIME",
|
|
23447
|
+
PageEditLoadTime = "PAGE_EDIT_LOAD_TIME",
|
|
23448
|
+
PageViewLoadTime = "PAGE_VIEW_LOAD_TIME"
|
|
23449
|
+
}
|
|
23450
|
+
export declare type ConfluenceAnalyticsMetricRequest = {
|
|
23451
|
+
id: Scalars['String']['input'];
|
|
23452
|
+
metricName: Array<InputMaybe<ConfluenceAnalyticsMetricName>>;
|
|
23453
|
+
stat: ConfluenceAnalyticsStat;
|
|
23454
|
+
};
|
|
23455
|
+
export declare type ConfluenceAnalyticsMetricValue = {
|
|
23456
|
+
__typename?: 'ConfluenceAnalyticsMetricValue';
|
|
23457
|
+
id: Scalars['String']['output'];
|
|
23458
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
23459
|
+
};
|
|
23460
|
+
export declare type ConfluenceAnalyticsStat = {
|
|
23461
|
+
type: ConfluenceAnalyticsStatType;
|
|
23462
|
+
value?: InputMaybe<Scalars['Int']['input']>;
|
|
23463
|
+
};
|
|
23464
|
+
export declare enum ConfluenceAnalyticsStatType {
|
|
23465
|
+
Avg = "AVG",
|
|
23466
|
+
Count = "COUNT",
|
|
23467
|
+
CountDistinct = "COUNT_DISTINCT",
|
|
23468
|
+
Max = "MAX",
|
|
23469
|
+
Min = "MIN",
|
|
23470
|
+
Percentile = "PERCENTILE",
|
|
23471
|
+
Sum = "SUM"
|
|
23472
|
+
}
|
|
23473
|
+
export declare type ConfluenceAnalyticsTimeseriesDataPoint = {
|
|
23474
|
+
__typename?: 'ConfluenceAnalyticsTimeseriesDataPoint';
|
|
23475
|
+
date: Scalars['String']['output'];
|
|
23476
|
+
metrics: Array<ConfluenceAnalyticsMetricValue>;
|
|
23477
|
+
};
|
|
23478
|
+
export declare enum ConfluenceAnalyticsTimeseriesGranularity {
|
|
23479
|
+
Daily = "DAILY",
|
|
23480
|
+
Hourly = "HOURLY",
|
|
23481
|
+
Monthly = "MONTHLY",
|
|
23482
|
+
Weekly = "WEEKLY"
|
|
23483
|
+
}
|
|
23484
|
+
export declare type ConfluenceAnalyticsTimeseriesResult = {
|
|
23485
|
+
__typename?: 'ConfluenceAnalyticsTimeseriesResult';
|
|
23486
|
+
nodes: Array<ConfluenceAnalyticsTimeseriesDataPoint>;
|
|
23487
|
+
};
|
|
23221
23488
|
export declare type ConfluenceAncestor = ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluencePage | ConfluenceWhiteboard;
|
|
23222
23489
|
export declare type ConfluenceAnswer = {
|
|
23223
23490
|
__typename?: 'ConfluenceAnswer';
|
|
@@ -23370,6 +23637,10 @@ export declare type ConfluenceBasicSpaceRole = {
|
|
|
23370
23637
|
name: Scalars['String']['output'];
|
|
23371
23638
|
type: SpaceRoleType;
|
|
23372
23639
|
};
|
|
23640
|
+
export declare type ConfluenceBatchActiveWorkflowApplications = {
|
|
23641
|
+
__typename?: 'ConfluenceBatchActiveWorkflowApplications';
|
|
23642
|
+
hasActiveContentApprovals?: Maybe<Scalars['Boolean']['output']>;
|
|
23643
|
+
};
|
|
23373
23644
|
export declare type ConfluenceBatchFollowTeammatesInput = {
|
|
23374
23645
|
numFollowers?: InputMaybe<Scalars['Int']['input']>;
|
|
23375
23646
|
};
|
|
@@ -25624,6 +25895,11 @@ export declare type ConfluenceMoveRequestInput = {
|
|
|
25624
25895
|
position: ConfluenceContentPosition;
|
|
25625
25896
|
targetId: Scalars['ID']['input'];
|
|
25626
25897
|
};
|
|
25898
|
+
export declare type ConfluenceMutablePrincipalTypesByCombinationId = {
|
|
25899
|
+
__typename?: 'ConfluenceMutablePrincipalTypesByCombinationId';
|
|
25900
|
+
combinationId?: Maybe<Scalars['String']['output']>;
|
|
25901
|
+
mutablePrincipalTypes?: Maybe<Array<Maybe<ConfluencePermissionTransitionMutationPrincipalType>>>;
|
|
25902
|
+
};
|
|
25627
25903
|
export declare type ConfluenceMutationApi = {
|
|
25628
25904
|
__typename?: 'ConfluenceMutationApi';
|
|
25629
25905
|
addCustomApplicationLink?: Maybe<ConfluenceAddCustomApplicationLinkPayload>;
|
|
@@ -26285,7 +26561,6 @@ export declare type ConfluenceNbmTransformer = {
|
|
|
26285
26561
|
};
|
|
26286
26562
|
export declare type ConfluenceNbmTransformerConfig = {
|
|
26287
26563
|
__typename?: 'ConfluenceNbmTransformerConfig';
|
|
26288
|
-
scanId: Scalars['String']['output'];
|
|
26289
26564
|
transformerNames: Array<Maybe<Scalars['String']['output']>>;
|
|
26290
26565
|
};
|
|
26291
26566
|
export declare type ConfluenceNbmUploadTransformerConfigInput = {
|
|
@@ -31845,6 +32120,7 @@ export declare type CplsAddWorkScopeAssociationsPayload = Payload & {
|
|
|
31845
32120
|
__typename?: 'CplsAddWorkScopeAssociationsPayload';
|
|
31846
32121
|
errors?: Maybe<Array<MutationError>>;
|
|
31847
32122
|
success: Scalars['Boolean']['output'];
|
|
32123
|
+
workDataIds?: Maybe<Array<CplsWorkDataIdEdge>>;
|
|
31848
32124
|
works?: Maybe<Array<CplsWorkEdge>>;
|
|
31849
32125
|
};
|
|
31850
32126
|
export declare type CplsCapacityPlanningPeopleView = {
|
|
@@ -32272,7 +32548,7 @@ export declare type CplsWorkContributorEdge = {
|
|
|
32272
32548
|
cursor: Scalars['String']['output'];
|
|
32273
32549
|
node?: Maybe<CplsContributor>;
|
|
32274
32550
|
};
|
|
32275
|
-
export declare type CplsWorkData = CplsCustomContributionTarget | JiraIssue;
|
|
32551
|
+
export declare type CplsWorkData = CplsCustomContributionTarget | JiraIssue | TownsquareProject;
|
|
32276
32552
|
export declare type CplsWorkDataId = {
|
|
32277
32553
|
__typename?: 'CplsWorkDataId';
|
|
32278
32554
|
id: Scalars['ID']['output'];
|
|
@@ -36697,6 +36973,18 @@ export declare type DevConsoleBulkDeveloperSpaceDetailsResponse = {
|
|
|
36697
36973
|
__typename?: 'DevConsoleBulkDeveloperSpaceDetailsResponse';
|
|
36698
36974
|
results: Array<DevConsoleDeveloperSpaceDetailsResult>;
|
|
36699
36975
|
};
|
|
36976
|
+
export declare type DevConsoleComputeResourceUsage = {
|
|
36977
|
+
__typename?: 'DevConsoleComputeResourceUsage';
|
|
36978
|
+
computeType?: Maybe<DevConsoleComputeType>;
|
|
36979
|
+
period: Scalars['String']['output'];
|
|
36980
|
+
resolution: DevConsoleUsageResolution;
|
|
36981
|
+
tokenUnit: Scalars['String']['output'];
|
|
36982
|
+
tokensConsumed: Scalars['String']['output'];
|
|
36983
|
+
};
|
|
36984
|
+
export declare enum DevConsoleComputeType {
|
|
36985
|
+
Async = "async",
|
|
36986
|
+
Sync = "sync"
|
|
36987
|
+
}
|
|
36700
36988
|
export declare type DevConsoleCreateDeveloperSpaceInput = {
|
|
36701
36989
|
name: Scalars['String']['input'];
|
|
36702
36990
|
};
|
|
@@ -36983,7 +37271,7 @@ export declare type DevConsoleResourceUsage = {
|
|
|
36983
37271
|
};
|
|
36984
37272
|
export declare type DevConsoleResourceUsageData = {
|
|
36985
37273
|
__typename?: 'DevConsoleResourceUsageData';
|
|
36986
|
-
functionCompute?: Maybe<Array<
|
|
37274
|
+
functionCompute?: Maybe<Array<DevConsoleComputeResourceUsage>>;
|
|
36987
37275
|
kvsRead?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
36988
37276
|
kvsWrite?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
36989
37277
|
logsWrite?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
@@ -38687,6 +38975,7 @@ export declare type EcosystemGlobalInstallationOverrideInput = {
|
|
|
38687
38975
|
value: Scalars['Boolean']['input'];
|
|
38688
38976
|
};
|
|
38689
38977
|
export declare enum EcosystemGlobalInstallationOverrideKeys {
|
|
38978
|
+
AllowCustomMetrics = "ALLOW_CUSTOM_METRICS",
|
|
38690
38979
|
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
|
|
38691
38980
|
AllowLlmCapability = "ALLOW_LLM_CAPABILITY",
|
|
38692
38981
|
AllowLogsAccess = "ALLOW_LOGS_ACCESS",
|
|
@@ -38696,6 +38985,7 @@ export declare type EcosystemInstallationConfigInput = {
|
|
|
38696
38985
|
overrides: Array<EcosystemInstallationOverrides>;
|
|
38697
38986
|
};
|
|
38698
38987
|
export declare enum EcosystemInstallationOverrideKeys {
|
|
38988
|
+
AllowCustomMetrics = "ALLOW_CUSTOM_METRICS",
|
|
38699
38989
|
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
|
|
38700
38990
|
AllowLlmCapability = "ALLOW_LLM_CAPABILITY",
|
|
38701
38991
|
AllowRestApis = "ALLOW_REST_APIS"
|
|
@@ -39457,6 +39747,19 @@ export declare type ExtensionDetailsInput = {
|
|
|
39457
39747
|
definitionId: Scalars['ID']['input'];
|
|
39458
39748
|
extensionKey: Scalars['String']['input'];
|
|
39459
39749
|
};
|
|
39750
|
+
export declare type ExternalAddress = {
|
|
39751
|
+
__typename?: 'ExternalAddress';
|
|
39752
|
+
city?: Maybe<Scalars['String']['output']>;
|
|
39753
|
+
country?: Maybe<Scalars['String']['output']>;
|
|
39754
|
+
countryCode?: Maybe<Scalars['String']['output']>;
|
|
39755
|
+
geocodeAccuracy?: Maybe<Scalars['String']['output']>;
|
|
39756
|
+
latitude?: Maybe<Scalars['Float']['output']>;
|
|
39757
|
+
longitude?: Maybe<Scalars['Float']['output']>;
|
|
39758
|
+
postalCode?: Maybe<Scalars['String']['output']>;
|
|
39759
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
39760
|
+
stateCode?: Maybe<Scalars['String']['output']>;
|
|
39761
|
+
street?: Maybe<Scalars['String']['output']>;
|
|
39762
|
+
};
|
|
39460
39763
|
export declare enum ExternalApprovalStatus {
|
|
39461
39764
|
Approved = "APPROVED",
|
|
39462
39765
|
Needswork = "NEEDSWORK",
|
|
@@ -39760,6 +40063,10 @@ export declare type ExternalCustomerContact = Node & {
|
|
|
39760
40063
|
__typename?: 'ExternalCustomerContact';
|
|
39761
40064
|
accountName?: Maybe<Scalars['String']['output']>;
|
|
39762
40065
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
40066
|
+
buyerAttributes?: Maybe<Scalars['String']['output']>;
|
|
40067
|
+
canAllowPortalSelfReg?: Maybe<Scalars['Boolean']['output']>;
|
|
40068
|
+
cleanStatus?: Maybe<Scalars['String']['output']>;
|
|
40069
|
+
contactSource?: Maybe<Scalars['String']['output']>;
|
|
39763
40070
|
contactUser?: Maybe<ExternalUser>;
|
|
39764
40071
|
container?: Maybe<ExternalEntity>;
|
|
39765
40072
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -39768,12 +40075,23 @@ export declare type ExternalCustomerContact = Node & {
|
|
|
39768
40075
|
customerType?: Maybe<Scalars['String']['output']>;
|
|
39769
40076
|
description?: Maybe<Scalars['String']['output']>;
|
|
39770
40077
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
40078
|
+
emailBouncedAt?: Maybe<Scalars['String']['output']>;
|
|
40079
|
+
emailBouncedReason?: Maybe<Scalars['String']['output']>;
|
|
39771
40080
|
entitlements?: Maybe<Array<Maybe<ExternalCustomerContactEntitlement>>>;
|
|
39772
40081
|
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
39773
40082
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
40083
|
+
firstCallAt?: Maybe<Scalars['String']['output']>;
|
|
40084
|
+
firstEmailAt?: Maybe<Scalars['String']['output']>;
|
|
40085
|
+
hasOptedOutOfEmail?: Maybe<Scalars['Boolean']['output']>;
|
|
40086
|
+
hasOptedOutOfFax?: Maybe<Scalars['Boolean']['output']>;
|
|
39774
40087
|
id: Scalars['ID']['output'];
|
|
40088
|
+
isDoNotCall?: Maybe<Scalars['Boolean']['output']>;
|
|
40089
|
+
isEmailBounced?: Maybe<Scalars['Boolean']['output']>;
|
|
40090
|
+
isPriorityRecord?: Maybe<Scalars['Boolean']['output']>;
|
|
39775
40091
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
39776
40092
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
40093
|
+
lastViewedAt?: Maybe<Scalars['String']['output']>;
|
|
40094
|
+
leadSource?: Maybe<Scalars['String']['output']>;
|
|
39777
40095
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
39778
40096
|
parent?: Maybe<ExternalEntity>;
|
|
39779
40097
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -39803,7 +40121,7 @@ export declare type ExternalCustomerOrg = Node & {
|
|
|
39803
40121
|
address?: Maybe<Scalars['String']['output']>;
|
|
39804
40122
|
annualRevenue?: Maybe<ExternalCurrency>;
|
|
39805
40123
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
39806
|
-
billingAddress?: Maybe<
|
|
40124
|
+
billingAddress?: Maybe<ExternalAddress>;
|
|
39807
40125
|
channelProgramLevelName?: Maybe<Scalars['String']['output']>;
|
|
39808
40126
|
cleanStatus?: Maybe<Scalars['String']['output']>;
|
|
39809
40127
|
contacts?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
@@ -39849,7 +40167,7 @@ export declare type ExternalCustomerOrg = Node & {
|
|
|
39849
40167
|
primaryContactUser?: Maybe<ExternalUser>;
|
|
39850
40168
|
provider?: Maybe<ExternalProvider>;
|
|
39851
40169
|
rating?: Maybe<Scalars['String']['output']>;
|
|
39852
|
-
shippingAddress?: Maybe<
|
|
40170
|
+
shippingAddress?: Maybe<ExternalAddress>;
|
|
39853
40171
|
sic?: Maybe<Scalars['String']['output']>;
|
|
39854
40172
|
sicDescription?: Maybe<Scalars['String']['output']>;
|
|
39855
40173
|
status?: Maybe<Scalars['String']['output']>;
|
|
@@ -40115,6 +40433,7 @@ export declare type ExternalDocument = Node & {
|
|
|
40115
40433
|
};
|
|
40116
40434
|
export declare enum ExternalDocumentCategory {
|
|
40117
40435
|
Archive = "ARCHIVE",
|
|
40436
|
+
Article = "ARTICLE",
|
|
40118
40437
|
Audio = "AUDIO",
|
|
40119
40438
|
Blogpost = "BLOGPOST",
|
|
40120
40439
|
Code = "CODE",
|
|
@@ -40127,6 +40446,7 @@ export declare enum ExternalDocumentCategory {
|
|
|
40127
40446
|
Other = "OTHER",
|
|
40128
40447
|
Page = "PAGE",
|
|
40129
40448
|
Pdf = "PDF",
|
|
40449
|
+
Post = "POST",
|
|
40130
40450
|
Presentation = "PRESENTATION",
|
|
40131
40451
|
Shortcut = "SHORTCUT",
|
|
40132
40452
|
Spreadsheet = "SPREADSHEET",
|
|
@@ -40358,19 +40678,6 @@ export declare type ExternalMessageLink = {
|
|
|
40358
40678
|
__typename?: 'ExternalMessageLink';
|
|
40359
40679
|
url?: Maybe<Scalars['String']['output']>;
|
|
40360
40680
|
};
|
|
40361
|
-
export declare type ExternalNonPiiAddress = {
|
|
40362
|
-
__typename?: 'ExternalNonPiiAddress';
|
|
40363
|
-
city?: Maybe<Scalars['String']['output']>;
|
|
40364
|
-
country?: Maybe<Scalars['String']['output']>;
|
|
40365
|
-
countryCode?: Maybe<Scalars['String']['output']>;
|
|
40366
|
-
geocodeAccuracy?: Maybe<Scalars['String']['output']>;
|
|
40367
|
-
latitude?: Maybe<Scalars['Float']['output']>;
|
|
40368
|
-
longitude?: Maybe<Scalars['Float']['output']>;
|
|
40369
|
-
postalCode?: Maybe<Scalars['String']['output']>;
|
|
40370
|
-
state?: Maybe<Scalars['String']['output']>;
|
|
40371
|
-
stateCode?: Maybe<Scalars['String']['output']>;
|
|
40372
|
-
street?: Maybe<Scalars['String']['output']>;
|
|
40373
|
-
};
|
|
40374
40681
|
export declare type ExternalOrganisation = Node & {
|
|
40375
40682
|
__typename?: 'ExternalOrganisation';
|
|
40376
40683
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -40970,6 +41277,7 @@ export declare enum ExternalWorkItemSubtype {
|
|
|
40970
41277
|
Section = "SECTION",
|
|
40971
41278
|
Story = "STORY",
|
|
40972
41279
|
Task = "TASK",
|
|
41280
|
+
Ticket = "TICKET",
|
|
40973
41281
|
WorkItem = "WORK_ITEM"
|
|
40974
41282
|
}
|
|
40975
41283
|
export declare type ExternalWorker = Node & {
|
|
@@ -43903,6 +44211,17 @@ export declare type GraphIntegrationRemoveTwgCapabilityContainerPayload = Payloa
|
|
|
43903
44211
|
errors?: Maybe<Array<MutationError>>;
|
|
43904
44212
|
success: Scalars['Boolean']['output'];
|
|
43905
44213
|
};
|
|
44214
|
+
export declare type GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingInput = {
|
|
44215
|
+
capabilityType: GraphIntegrationTwgCapabilityType;
|
|
44216
|
+
cloudId: Scalars['ID']['input'];
|
|
44217
|
+
status: GraphIntegrationTwgCapabilityStatus;
|
|
44218
|
+
};
|
|
44219
|
+
export declare type GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPayload = {
|
|
44220
|
+
__typename?: 'GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPayload';
|
|
44221
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44222
|
+
setting?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSetting>;
|
|
44223
|
+
success: Scalars['Boolean']['output'];
|
|
44224
|
+
};
|
|
43906
44225
|
export declare enum GraphIntegrationSkillColor {
|
|
43907
44226
|
Blue = "BLUE",
|
|
43908
44227
|
Default = "DEFAULT",
|
|
@@ -43983,6 +44302,24 @@ export declare type GraphIntegrationTwgCapabilityContainerMetaEdge = {
|
|
|
43983
44302
|
cursor: Scalars['String']['output'];
|
|
43984
44303
|
node: GraphIntegrationTwgCapabilityContainerMeta;
|
|
43985
44304
|
};
|
|
44305
|
+
export declare enum GraphIntegrationTwgCapabilityStatus {
|
|
44306
|
+
Disabled = "DISABLED",
|
|
44307
|
+
Enabled = "ENABLED"
|
|
44308
|
+
}
|
|
44309
|
+
export declare enum GraphIntegrationTwgCapabilityType {
|
|
44310
|
+
PlatformMcpServer = "PLATFORM_MCP_SERVER"
|
|
44311
|
+
}
|
|
44312
|
+
export declare type GraphIntegrationTwgPlatformCapabilityGlobalAdminSetting = {
|
|
44313
|
+
__typename?: 'GraphIntegrationTwgPlatformCapabilityGlobalAdminSetting';
|
|
44314
|
+
capabilityType: GraphIntegrationTwgCapabilityType;
|
|
44315
|
+
status: GraphIntegrationTwgCapabilityStatus;
|
|
44316
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
44317
|
+
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
44318
|
+
};
|
|
44319
|
+
export declare type GraphIntegrationTwgPlatformCapabilityGlobalAdminSettings = {
|
|
44320
|
+
__typename?: 'GraphIntegrationTwgPlatformCapabilityGlobalAdminSettings';
|
|
44321
|
+
settings: Array<GraphIntegrationTwgPlatformCapabilityGlobalAdminSetting>;
|
|
44322
|
+
};
|
|
43986
44323
|
export declare type GraphIntegrationUpdateConnectionPayload = Payload & {
|
|
43987
44324
|
__typename?: 'GraphIntegrationUpdateConnectionPayload';
|
|
43988
44325
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -47341,6 +47678,8 @@ export declare type GraphStore = {
|
|
|
47341
47678
|
teamHasCustomFieldValueInverse?: Maybe<GraphStoreSimplifiedTeamHasCustomFieldValueInverseConnection>;
|
|
47342
47679
|
teamIsOfType?: Maybe<GraphStoreSimplifiedTeamIsOfTypeConnection>;
|
|
47343
47680
|
teamIsOfTypeInverse?: Maybe<GraphStoreSimplifiedTeamIsOfTypeInverseConnection>;
|
|
47681
|
+
teamIsOpsTeam?: Maybe<GraphStoreSimplifiedTeamIsOpsTeamConnection>;
|
|
47682
|
+
teamIsOpsTeamInverse?: Maybe<GraphStoreSimplifiedTeamIsOpsTeamInverseConnection>;
|
|
47344
47683
|
teamOwnsComponent?: Maybe<GraphStoreSimplifiedTeamOwnsComponentConnection>;
|
|
47345
47684
|
teamOwnsComponentInverse?: Maybe<GraphStoreSimplifiedTeamOwnsComponentInverseConnection>;
|
|
47346
47685
|
teamWorksOnProject?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectConnection>;
|
|
@@ -47596,6 +47935,8 @@ export declare type GraphStore = {
|
|
|
47596
47935
|
userUpdatedIssueInverseBatch?: Maybe<GraphStoreBatchUserUpdatedIssueConnection>;
|
|
47597
47936
|
userUpdatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserUpdatedIssueWorklogConnection>;
|
|
47598
47937
|
userUpdatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueWorklogInverseConnection>;
|
|
47938
|
+
userUpdatedVideo?: Maybe<GraphStoreSimplifiedUserUpdatedVideoConnection>;
|
|
47939
|
+
userUpdatedVideoInverse?: Maybe<GraphStoreSimplifiedUserUpdatedVideoInverseConnection>;
|
|
47599
47940
|
userViewed3pRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserViewed3pRemoteLinkInverseConnection>;
|
|
47600
47941
|
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
47601
47942
|
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
@@ -52889,6 +53230,22 @@ export declare type GraphStoreTeamIsOfTypeInverseArgs = {
|
|
|
52889
53230
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52890
53231
|
sort?: InputMaybe<GraphStoreTeamIsOfTypeSortInput>;
|
|
52891
53232
|
};
|
|
53233
|
+
export declare type GraphStoreTeamIsOpsTeamArgs = {
|
|
53234
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53235
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53236
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53237
|
+
id: Scalars['ID']['input'];
|
|
53238
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53239
|
+
sort?: InputMaybe<GraphStoreTeamIsOpsTeamSortInput>;
|
|
53240
|
+
};
|
|
53241
|
+
export declare type GraphStoreTeamIsOpsTeamInverseArgs = {
|
|
53242
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53243
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53244
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53245
|
+
id: Scalars['ID']['input'];
|
|
53246
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53247
|
+
sort?: InputMaybe<GraphStoreTeamIsOpsTeamSortInput>;
|
|
53248
|
+
};
|
|
52892
53249
|
export declare type GraphStoreTeamOwnsComponentArgs = {
|
|
52893
53250
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52894
53251
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -54913,6 +55270,22 @@ export declare type GraphStoreUserUpdatedIssueWorklogInverseArgs = {
|
|
|
54913
55270
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54914
55271
|
sort?: InputMaybe<GraphStoreUserUpdatedIssueWorklogSortInput>;
|
|
54915
55272
|
};
|
|
55273
|
+
export declare type GraphStoreUserUpdatedVideoArgs = {
|
|
55274
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55275
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55276
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55277
|
+
id: Scalars['ID']['input'];
|
|
55278
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55279
|
+
sort?: InputMaybe<GraphStoreUserUpdatedVideoSortInput>;
|
|
55280
|
+
};
|
|
55281
|
+
export declare type GraphStoreUserUpdatedVideoInverseArgs = {
|
|
55282
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55283
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55284
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55285
|
+
id: Scalars['ID']['input'];
|
|
55286
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55287
|
+
sort?: InputMaybe<GraphStoreUserUpdatedVideoSortInput>;
|
|
55288
|
+
};
|
|
54916
55289
|
export declare type GraphStoreUserViewed3pRemoteLinkInverseArgs = {
|
|
54917
55290
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54918
55291
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -60075,6 +60448,7 @@ export declare enum GraphStoreFullParentDocumentHasChildDocumentCategoryOutput {
|
|
|
60075
60448
|
Folder = "FOLDER",
|
|
60076
60449
|
Form = "FORM",
|
|
60077
60450
|
Image = "IMAGE",
|
|
60451
|
+
Notebook = "NOTEBOOK",
|
|
60078
60452
|
NotSet = "NOT_SET",
|
|
60079
60453
|
Other = "OTHER",
|
|
60080
60454
|
Page = "PAGE",
|
|
@@ -70519,6 +70893,34 @@ export declare type GraphStoreSimplifiedTeamIsOfTypeInverseEdge = {
|
|
|
70519
70893
|
};
|
|
70520
70894
|
export declare type GraphStoreSimplifiedTeamIsOfTypeInverseUnion = TeamV2;
|
|
70521
70895
|
export declare type GraphStoreSimplifiedTeamIsOfTypeUnion = TeamType;
|
|
70896
|
+
export declare type GraphStoreSimplifiedTeamIsOpsTeamConnection = HasPageInfo & {
|
|
70897
|
+
__typename?: 'GraphStoreSimplifiedTeamIsOpsTeamConnection';
|
|
70898
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamIsOpsTeamEdge>>>;
|
|
70899
|
+
pageInfo: PageInfo;
|
|
70900
|
+
};
|
|
70901
|
+
export declare type GraphStoreSimplifiedTeamIsOpsTeamEdge = {
|
|
70902
|
+
__typename?: 'GraphStoreSimplifiedTeamIsOpsTeamEdge';
|
|
70903
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70904
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70905
|
+
id: Scalars['ID']['output'];
|
|
70906
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70907
|
+
node?: Maybe<GraphStoreSimplifiedTeamIsOpsTeamUnion>;
|
|
70908
|
+
};
|
|
70909
|
+
export declare type GraphStoreSimplifiedTeamIsOpsTeamInverseConnection = HasPageInfo & {
|
|
70910
|
+
__typename?: 'GraphStoreSimplifiedTeamIsOpsTeamInverseConnection';
|
|
70911
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamIsOpsTeamInverseEdge>>>;
|
|
70912
|
+
pageInfo: PageInfo;
|
|
70913
|
+
};
|
|
70914
|
+
export declare type GraphStoreSimplifiedTeamIsOpsTeamInverseEdge = {
|
|
70915
|
+
__typename?: 'GraphStoreSimplifiedTeamIsOpsTeamInverseEdge';
|
|
70916
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70917
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70918
|
+
id: Scalars['ID']['output'];
|
|
70919
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70920
|
+
node?: Maybe<GraphStoreSimplifiedTeamIsOpsTeamInverseUnion>;
|
|
70921
|
+
};
|
|
70922
|
+
export declare type GraphStoreSimplifiedTeamIsOpsTeamInverseUnion = TeamV2;
|
|
70923
|
+
export declare type GraphStoreSimplifiedTeamIsOpsTeamUnion = OpsgenieTeam;
|
|
70522
70924
|
export declare type GraphStoreSimplifiedTeamOwnsComponentConnection = HasPageInfo & {
|
|
70523
70925
|
__typename?: 'GraphStoreSimplifiedTeamOwnsComponentConnection';
|
|
70524
70926
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamOwnsComponentEdge>>>;
|
|
@@ -73917,6 +74319,34 @@ export declare type GraphStoreSimplifiedUserUpdatedIssueWorklogInverseEdge = {
|
|
|
73917
74319
|
};
|
|
73918
74320
|
export declare type GraphStoreSimplifiedUserUpdatedIssueWorklogInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
73919
74321
|
export declare type GraphStoreSimplifiedUserUpdatedIssueWorklogUnion = JiraWorklog;
|
|
74322
|
+
export declare type GraphStoreSimplifiedUserUpdatedVideoConnection = HasPageInfo & {
|
|
74323
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedVideoConnection';
|
|
74324
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedVideoEdge>>>;
|
|
74325
|
+
pageInfo: PageInfo;
|
|
74326
|
+
};
|
|
74327
|
+
export declare type GraphStoreSimplifiedUserUpdatedVideoEdge = {
|
|
74328
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedVideoEdge';
|
|
74329
|
+
createdAt: Scalars['DateTime']['output'];
|
|
74330
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
74331
|
+
id: Scalars['ID']['output'];
|
|
74332
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
74333
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedVideoUnion>;
|
|
74334
|
+
};
|
|
74335
|
+
export declare type GraphStoreSimplifiedUserUpdatedVideoInverseConnection = HasPageInfo & {
|
|
74336
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedVideoInverseConnection';
|
|
74337
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedVideoInverseEdge>>>;
|
|
74338
|
+
pageInfo: PageInfo;
|
|
74339
|
+
};
|
|
74340
|
+
export declare type GraphStoreSimplifiedUserUpdatedVideoInverseEdge = {
|
|
74341
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedVideoInverseEdge';
|
|
74342
|
+
createdAt: Scalars['DateTime']['output'];
|
|
74343
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
74344
|
+
id: Scalars['ID']['output'];
|
|
74345
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
74346
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedVideoInverseUnion>;
|
|
74347
|
+
};
|
|
74348
|
+
export declare type GraphStoreSimplifiedUserUpdatedVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
74349
|
+
export declare type GraphStoreSimplifiedUserUpdatedVideoUnion = LoomVideo;
|
|
73920
74350
|
export declare type GraphStoreSimplifiedUserViewed3pRemoteLinkInverseConnection = HasPageInfo & {
|
|
73921
74351
|
__typename?: 'GraphStoreSimplifiedUserViewed3pRemoteLinkInverseConnection';
|
|
73922
74352
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewed3pRemoteLinkInverseEdge>>>;
|
|
@@ -75002,6 +75432,9 @@ export declare type GraphStoreTeamHasCustomFieldValueSortInput = {
|
|
|
75002
75432
|
export declare type GraphStoreTeamIsOfTypeSortInput = {
|
|
75003
75433
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75004
75434
|
};
|
|
75435
|
+
export declare type GraphStoreTeamIsOpsTeamSortInput = {
|
|
75436
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75437
|
+
};
|
|
75005
75438
|
export declare type GraphStoreTeamOwnsComponentSortInput = {
|
|
75006
75439
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75007
75440
|
};
|
|
@@ -75495,6 +75928,9 @@ export declare type GraphStoreUserUpdatedIssueSortInput = {
|
|
|
75495
75928
|
export declare type GraphStoreUserUpdatedIssueWorklogSortInput = {
|
|
75496
75929
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75497
75930
|
};
|
|
75931
|
+
export declare type GraphStoreUserUpdatedVideoSortInput = {
|
|
75932
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75933
|
+
};
|
|
75498
75934
|
export declare type GraphStoreUserViewed3pRemoteLinkSortInput = {
|
|
75499
75935
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75500
75936
|
};
|
|
@@ -75568,6 +76004,8 @@ export declare type GraphStoreV2 = {
|
|
|
75568
76004
|
atlassianTeamHasChildAtlassianTeamInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamHasChildAtlassianTeamInverseConnection>;
|
|
75569
76005
|
atlassianTeamIsAtlassianTeamType?: Maybe<GraphStoreV2SimplifiedAtlassianTeamIsAtlassianTeamTypeConnection>;
|
|
75570
76006
|
atlassianTeamIsAtlassianTeamTypeInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamIsAtlassianTeamTypeInverseConnection>;
|
|
76007
|
+
atlassianTeamLinksOpsgenieTeam?: Maybe<GraphStoreV2SimplifiedAtlassianTeamLinksOpsgenieTeamConnection>;
|
|
76008
|
+
atlassianTeamLinksOpsgenieTeamInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamLinksOpsgenieTeamInverseConnection>;
|
|
75571
76009
|
atlassianTeamLinksSpaceEntity?: Maybe<GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityConnection>;
|
|
75572
76010
|
atlassianTeamLinksSpaceEntityInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityInverseConnection>;
|
|
75573
76011
|
atlassianTeamOwnsCompassComponent?: Maybe<GraphStoreV2SimplifiedAtlassianTeamOwnsCompassComponentConnection>;
|
|
@@ -75744,6 +76182,8 @@ export declare type GraphStoreV2 = {
|
|
|
75744
76182
|
atlassianUserUpdatedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemInverseConnection>;
|
|
75745
76183
|
atlassianUserUpdatedJiraWorkItemWorklog?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemWorklogConnection>;
|
|
75746
76184
|
atlassianUserUpdatedJiraWorkItemWorklogInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemWorklogInverseConnection>;
|
|
76185
|
+
atlassianUserUpdatedLoomVideo?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedLoomVideoConnection>;
|
|
76186
|
+
atlassianUserUpdatedLoomVideoInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedLoomVideoInverseConnection>;
|
|
75747
76187
|
atlassianUserViewedAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserViewedAtlassianGoalConnection>;
|
|
75748
76188
|
atlassianUserViewedAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserViewedAtlassianGoalInverseConnection>;
|
|
75749
76189
|
atlassianUserViewedAtlassianGoalUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianUserViewedAtlassianGoalUpdateConnection>;
|
|
@@ -76443,6 +76883,20 @@ export declare type GraphStoreV2AtlassianTeamIsAtlassianTeamTypeInverseArgs = {
|
|
|
76443
76883
|
id: Scalars['ID']['input'];
|
|
76444
76884
|
sort?: InputMaybe<GraphStoreV2AtlassianTeamIsAtlassianTeamTypeSortInput>;
|
|
76445
76885
|
};
|
|
76886
|
+
export declare type GraphStoreV2AtlassianTeamLinksOpsgenieTeamArgs = {
|
|
76887
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76888
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76889
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76890
|
+
id: Scalars['ID']['input'];
|
|
76891
|
+
sort?: InputMaybe<GraphStoreV2AtlassianTeamLinksOpsgenieTeamSortInput>;
|
|
76892
|
+
};
|
|
76893
|
+
export declare type GraphStoreV2AtlassianTeamLinksOpsgenieTeamInverseArgs = {
|
|
76894
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76895
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76896
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76897
|
+
id: Scalars['ID']['input'];
|
|
76898
|
+
sort?: InputMaybe<GraphStoreV2AtlassianTeamLinksOpsgenieTeamSortInput>;
|
|
76899
|
+
};
|
|
76446
76900
|
export declare type GraphStoreV2AtlassianTeamLinksSpaceEntityArgs = {
|
|
76447
76901
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
76448
76902
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -77683,6 +78137,20 @@ export declare type GraphStoreV2AtlassianUserUpdatedJiraWorkItemWorklogInverseAr
|
|
|
77683
78137
|
id: Scalars['ID']['input'];
|
|
77684
78138
|
sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedJiraWorkItemWorklogSortInput>;
|
|
77685
78139
|
};
|
|
78140
|
+
export declare type GraphStoreV2AtlassianUserUpdatedLoomVideoArgs = {
|
|
78141
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
78142
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78143
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78144
|
+
id: Scalars['ID']['input'];
|
|
78145
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedLoomVideoSortInput>;
|
|
78146
|
+
};
|
|
78147
|
+
export declare type GraphStoreV2AtlassianUserUpdatedLoomVideoInverseArgs = {
|
|
78148
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
78149
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78150
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78151
|
+
id: Scalars['ID']['input'];
|
|
78152
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedLoomVideoSortInput>;
|
|
78153
|
+
};
|
|
77686
78154
|
export declare type GraphStoreV2AtlassianUserViewedAtlassianGoalArgs = {
|
|
77687
78155
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
77688
78156
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -81246,6 +81714,9 @@ export declare type GraphStoreV2AtlassianTeamHasChildAtlassianTeamSortInput = {
|
|
|
81246
81714
|
export declare type GraphStoreV2AtlassianTeamIsAtlassianTeamTypeSortInput = {
|
|
81247
81715
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81248
81716
|
};
|
|
81717
|
+
export declare type GraphStoreV2AtlassianTeamLinksOpsgenieTeamSortInput = {
|
|
81718
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81719
|
+
};
|
|
81249
81720
|
export declare type GraphStoreV2AtlassianTeamLinksSpaceEntitySortInput = {
|
|
81250
81721
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
81251
81722
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -81628,6 +82099,9 @@ export declare type GraphStoreV2AtlassianUserUpdatedJiraWorkItemSortInput = {
|
|
|
81628
82099
|
export declare type GraphStoreV2AtlassianUserUpdatedJiraWorkItemWorklogSortInput = {
|
|
81629
82100
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81630
82101
|
};
|
|
82102
|
+
export declare type GraphStoreV2AtlassianUserUpdatedLoomVideoSortInput = {
|
|
82103
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
82104
|
+
};
|
|
81631
82105
|
export declare type GraphStoreV2AtlassianUserViewedAtlassianGoalSortInput = {
|
|
81632
82106
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81633
82107
|
};
|
|
@@ -85034,6 +85508,34 @@ export declare type GraphStoreV2SimplifiedAtlassianTeamIsAtlassianTeamTypeInvers
|
|
|
85034
85508
|
};
|
|
85035
85509
|
export declare type GraphStoreV2SimplifiedAtlassianTeamIsAtlassianTeamTypeInverseUnion = TeamV2;
|
|
85036
85510
|
export declare type GraphStoreV2SimplifiedAtlassianTeamIsAtlassianTeamTypeUnion = TeamType;
|
|
85511
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamLinksOpsgenieTeamConnection = HasPageInfo & {
|
|
85512
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamLinksOpsgenieTeamConnection';
|
|
85513
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamLinksOpsgenieTeamEdge>>>;
|
|
85514
|
+
pageInfo: PageInfo;
|
|
85515
|
+
};
|
|
85516
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamLinksOpsgenieTeamEdge = {
|
|
85517
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamLinksOpsgenieTeamEdge';
|
|
85518
|
+
createdAt: Scalars['DateTime']['output'];
|
|
85519
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
85520
|
+
id: Scalars['ID']['output'];
|
|
85521
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
85522
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianTeamLinksOpsgenieTeamUnion>;
|
|
85523
|
+
};
|
|
85524
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamLinksOpsgenieTeamInverseConnection = HasPageInfo & {
|
|
85525
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamLinksOpsgenieTeamInverseConnection';
|
|
85526
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamLinksOpsgenieTeamInverseEdge>>>;
|
|
85527
|
+
pageInfo: PageInfo;
|
|
85528
|
+
};
|
|
85529
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamLinksOpsgenieTeamInverseEdge = {
|
|
85530
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamLinksOpsgenieTeamInverseEdge';
|
|
85531
|
+
createdAt: Scalars['DateTime']['output'];
|
|
85532
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
85533
|
+
id: Scalars['ID']['output'];
|
|
85534
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
85535
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianTeamLinksOpsgenieTeamInverseUnion>;
|
|
85536
|
+
};
|
|
85537
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamLinksOpsgenieTeamInverseUnion = TeamV2;
|
|
85538
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamLinksOpsgenieTeamUnion = OpsgenieTeam;
|
|
85037
85539
|
export declare type GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityConnection = HasPageInfo & HasTotal & {
|
|
85038
85540
|
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityConnection';
|
|
85039
85541
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityEdge>>>;
|
|
@@ -87538,6 +88040,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemWorklo
|
|
|
87538
88040
|
};
|
|
87539
88041
|
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemWorklogInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
87540
88042
|
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemWorklogUnion = JiraWorklog;
|
|
88043
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedLoomVideoConnection = HasPageInfo & {
|
|
88044
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedLoomVideoConnection';
|
|
88045
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedLoomVideoEdge>>>;
|
|
88046
|
+
pageInfo: PageInfo;
|
|
88047
|
+
};
|
|
88048
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedLoomVideoEdge = {
|
|
88049
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedLoomVideoEdge';
|
|
88050
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88051
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88052
|
+
id: Scalars['ID']['output'];
|
|
88053
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88054
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedLoomVideoUnion>;
|
|
88055
|
+
};
|
|
88056
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedLoomVideoInverseConnection = HasPageInfo & {
|
|
88057
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedLoomVideoInverseConnection';
|
|
88058
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedLoomVideoInverseEdge>>>;
|
|
88059
|
+
pageInfo: PageInfo;
|
|
88060
|
+
};
|
|
88061
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedLoomVideoInverseEdge = {
|
|
88062
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedLoomVideoInverseEdge';
|
|
88063
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88064
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88065
|
+
id: Scalars['ID']['output'];
|
|
88066
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88067
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedLoomVideoInverseUnion>;
|
|
88068
|
+
};
|
|
88069
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedLoomVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
88070
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedLoomVideoUnion = LoomVideo;
|
|
87541
88071
|
export declare type GraphStoreV2SimplifiedAtlassianUserViewedAtlassianGoalConnection = HasPageInfo & {
|
|
87542
88072
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserViewedAtlassianGoalConnection';
|
|
87543
88073
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserViewedAtlassianGoalEdge>>>;
|
|
@@ -94846,7 +95376,7 @@ export declare type GravityCreateViewFromTemplateInput = {
|
|
|
94846
95376
|
};
|
|
94847
95377
|
export declare type GravityCreateViewFromTemplatePayload = Payload & {
|
|
94848
95378
|
__typename?: 'GravityCreateViewFromTemplatePayload';
|
|
94849
|
-
createdViewId
|
|
95379
|
+
createdViewId?: Maybe<Scalars['ID']['output']>;
|
|
94850
95380
|
errors?: Maybe<Array<MutationError>>;
|
|
94851
95381
|
success: Scalars['Boolean']['output'];
|
|
94852
95382
|
};
|
|
@@ -94868,21 +95398,21 @@ export declare type GravityFieldDefinition = {
|
|
|
94868
95398
|
global: Scalars['Boolean']['output'];
|
|
94869
95399
|
name: Scalars['String']['output'];
|
|
94870
95400
|
options?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
94871
|
-
ref: Scalars['
|
|
95401
|
+
ref: Scalars['ID']['output'];
|
|
94872
95402
|
type: Scalars['String']['output'];
|
|
94873
95403
|
};
|
|
94874
95404
|
export declare type GravityFieldMappingProposals = {
|
|
94875
95405
|
__typename?: 'GravityFieldMappingProposals';
|
|
94876
95406
|
proposals: Array<GravityField>;
|
|
94877
|
-
ref: Scalars['
|
|
95407
|
+
ref: Scalars['ID']['output'];
|
|
94878
95408
|
};
|
|
94879
95409
|
export declare type GravityFieldRefMappingInput = {
|
|
94880
95410
|
key: Scalars['String']['input'];
|
|
94881
|
-
ref: Scalars['
|
|
95411
|
+
ref: Scalars['ID']['input'];
|
|
94882
95412
|
};
|
|
94883
95413
|
export declare type GravityFieldRollup = {
|
|
94884
95414
|
__typename?: 'GravityFieldRollup';
|
|
94885
|
-
field: Scalars['
|
|
95415
|
+
field: Scalars['ID']['output'];
|
|
94886
95416
|
rollup: GravityFieldRollupType;
|
|
94887
95417
|
};
|
|
94888
95418
|
export declare enum GravityFieldRollupType {
|
|
@@ -94933,10 +95463,7 @@ export declare type GravityRefMappingsInput = {
|
|
|
94933
95463
|
};
|
|
94934
95464
|
export declare enum GravityRefResolutionStrategy {
|
|
94935
95465
|
CreateIfMissing = "CREATE_IF_MISSING",
|
|
94936
|
-
FailIfMissing = "FAIL_IF_MISSING"
|
|
94937
|
-
FirstBestMatchThenCreate = "FIRST_BEST_MATCH_THEN_CREATE",
|
|
94938
|
-
FirstBestMatchThenFail = "FIRST_BEST_MATCH_THEN_FAIL",
|
|
94939
|
-
Match = "MATCH"
|
|
95466
|
+
FailIfMissing = "FAIL_IF_MISSING"
|
|
94940
95467
|
}
|
|
94941
95468
|
export declare enum GravitySortOrder {
|
|
94942
95469
|
Asc = "ASC",
|
|
@@ -94968,25 +95495,25 @@ export declare enum GravityViewColumnSize {
|
|
|
94968
95495
|
export declare type GravityViewConfig = {
|
|
94969
95496
|
__typename?: 'GravityViewConfig';
|
|
94970
95497
|
boldColors?: Maybe<Scalars['Boolean']['output']>;
|
|
94971
|
-
colorBy?: Maybe<Scalars['
|
|
95498
|
+
colorBy?: Maybe<Scalars['ID']['output']>;
|
|
94972
95499
|
colorStyle?: Maybe<GravityViewColorStyle>;
|
|
94973
95500
|
columnSize?: Maybe<GravityViewColumnSize>;
|
|
94974
95501
|
fieldRollups?: Maybe<Array<GravityFieldRollup>>;
|
|
94975
|
-
fields: Array<Scalars['
|
|
95502
|
+
fields: Array<Scalars['ID']['output']>;
|
|
94976
95503
|
filter: Array<GravityViewFilter>;
|
|
94977
|
-
groupBy?: Maybe<Scalars['
|
|
95504
|
+
groupBy?: Maybe<Scalars['ID']['output']>;
|
|
94978
95505
|
groupsFilter?: Maybe<Array<GravityViewFilter>>;
|
|
94979
95506
|
hideEmptyColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
94980
95507
|
hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
|
|
94981
95508
|
layoutType?: Maybe<GravityViewLayoutType>;
|
|
94982
95509
|
sort: Array<GravityViewSort>;
|
|
94983
95510
|
sortMode?: Maybe<GravityViewSortMode>;
|
|
94984
|
-
verticalGroupBy?: Maybe<Scalars['
|
|
95511
|
+
verticalGroupBy?: Maybe<Scalars['ID']['output']>;
|
|
94985
95512
|
verticalGroupsFilter?: Maybe<Array<GravityViewFilter>>;
|
|
94986
95513
|
};
|
|
94987
95514
|
export declare type GravityViewFilter = {
|
|
94988
95515
|
__typename?: 'GravityViewFilter';
|
|
94989
|
-
field?: Maybe<Scalars['
|
|
95516
|
+
field?: Maybe<Scalars['ID']['output']>;
|
|
94990
95517
|
kind: GravityViewFilterKind;
|
|
94991
95518
|
values: Array<GravityViewFilterValue>;
|
|
94992
95519
|
};
|
|
@@ -95032,7 +95559,7 @@ export declare enum GravityViewLayoutType {
|
|
|
95032
95559
|
}
|
|
95033
95560
|
export declare type GravityViewSort = {
|
|
95034
95561
|
__typename?: 'GravityViewSort';
|
|
95035
|
-
field: Scalars['
|
|
95562
|
+
field: Scalars['ID']['output'];
|
|
95036
95563
|
order: GravitySortOrder;
|
|
95037
95564
|
};
|
|
95038
95565
|
export declare enum GravityViewSortMode {
|
|
@@ -100290,13 +100817,13 @@ export declare type JiraAttachmentResource = JiraConsolidatedResource & {
|
|
|
100290
100817
|
__typename?: 'JiraAttachmentResource';
|
|
100291
100818
|
author?: Maybe<User>;
|
|
100292
100819
|
contentType?: Maybe<Scalars['String']['output']>;
|
|
100293
|
-
createdDate
|
|
100820
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
100294
100821
|
details?: Maybe<JiraAttachmentDetails>;
|
|
100295
100822
|
fileName?: Maybe<Scalars['String']['output']>;
|
|
100296
100823
|
fileSize?: Maybe<Scalars['Long']['output']>;
|
|
100297
100824
|
hasRestrictedParent?: Maybe<Scalars['Boolean']['output']>;
|
|
100298
100825
|
id: Scalars['ID']['output'];
|
|
100299
|
-
integration
|
|
100826
|
+
integration?: Maybe<JiraResourceIntegration>;
|
|
100300
100827
|
mediaApiFileId?: Maybe<Scalars['String']['output']>;
|
|
100301
100828
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
100302
100829
|
parent?: Maybe<JiraAttachmentParentName>;
|
|
@@ -101026,6 +101553,7 @@ export declare type JiraBacklogView = JiraView & Node & {
|
|
|
101026
101553
|
id: Scalars['ID']['output'];
|
|
101027
101554
|
issueTypeFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
101028
101555
|
labelFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
101556
|
+
permissions?: Maybe<JiraBacklogViewPermissions>;
|
|
101029
101557
|
projects?: Maybe<JiraProjectConnection>;
|
|
101030
101558
|
quickFilterToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
101031
101559
|
quickFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
@@ -101033,6 +101561,7 @@ export declare type JiraBacklogView = JiraView & Node & {
|
|
|
101033
101561
|
sprintCommitmentToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
101034
101562
|
sprints?: Maybe<JiraSprintConnection>;
|
|
101035
101563
|
strategy?: Maybe<JiraBacklogViewStrategy>;
|
|
101564
|
+
townsquareProjects?: Maybe<JiraTownsquareProjectConnection>;
|
|
101036
101565
|
versionFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
101037
101566
|
versionPanelToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
101038
101567
|
};
|
|
@@ -101072,6 +101601,10 @@ export declare type JiraBacklogViewSprintsArgs = {
|
|
|
101072
101601
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101073
101602
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101074
101603
|
};
|
|
101604
|
+
export declare type JiraBacklogViewTownsquareProjectsArgs = {
|
|
101605
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
101606
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101607
|
+
};
|
|
101075
101608
|
export declare type JiraBacklogViewVersionFiltersArgs = {
|
|
101076
101609
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101077
101610
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -101141,6 +101674,10 @@ export declare type JiraBacklogViewColumnCardListIssuesArgs = {
|
|
|
101141
101674
|
export declare type JiraBacklogViewInput = {
|
|
101142
101675
|
jiraBacklogViewQueryInput: JiraBacklogViewQueryInput;
|
|
101143
101676
|
};
|
|
101677
|
+
export declare type JiraBacklogViewPermissions = {
|
|
101678
|
+
__typename?: 'JiraBacklogViewPermissions';
|
|
101679
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
101680
|
+
};
|
|
101144
101681
|
export declare type JiraBacklogViewQueryInput = {
|
|
101145
101682
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
101146
101683
|
};
|
|
@@ -101317,6 +101854,8 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
101317
101854
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
101318
101855
|
canManageSprints?: Maybe<Scalars['Boolean']['output']>;
|
|
101319
101856
|
canManageStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
101857
|
+
canMoveIssueBetweenSwimlanes?: Maybe<Scalars['Boolean']['output']>;
|
|
101858
|
+
canMoveIssuesBetweenSwimlanes?: Maybe<Scalars['Boolean']['output']>;
|
|
101320
101859
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
101321
101860
|
canScheduleIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
101322
101861
|
canTransitionIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -101337,6 +101876,13 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
101337
101876
|
sprints?: Maybe<JiraSprintConnection>;
|
|
101338
101877
|
unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
101339
101878
|
};
|
|
101879
|
+
export declare type JiraBoardViewCanMoveIssueBetweenSwimlanesArgs = {
|
|
101880
|
+
issueId: Scalars['ID']['input'];
|
|
101881
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
101882
|
+
};
|
|
101883
|
+
export declare type JiraBoardViewCanMoveIssuesBetweenSwimlanesArgs = {
|
|
101884
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
101885
|
+
};
|
|
101340
101886
|
export declare type JiraBoardViewCardOptionsArgs = {
|
|
101341
101887
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101342
101888
|
enabledOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -103308,13 +103854,13 @@ export declare type JiraConfluenceLinkDetails = JiraConsolidatedResourceDetails
|
|
|
103308
103854
|
export declare type JiraConfluenceLinkResource = JiraConsolidatedResource & {
|
|
103309
103855
|
__typename?: 'JiraConfluenceLinkResource';
|
|
103310
103856
|
contentType?: Maybe<Scalars['String']['output']>;
|
|
103311
|
-
createdDate
|
|
103857
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
103312
103858
|
details?: Maybe<JiraConfluenceLinkDetails>;
|
|
103313
103859
|
fileName?: Maybe<Scalars['String']['output']>;
|
|
103314
103860
|
fileSize?: Maybe<Scalars['Long']['output']>;
|
|
103315
103861
|
href?: Maybe<Scalars['String']['output']>;
|
|
103316
103862
|
id: Scalars['ID']['output'];
|
|
103317
|
-
integration
|
|
103863
|
+
integration?: Maybe<JiraResourceIntegration>;
|
|
103318
103864
|
};
|
|
103319
103865
|
export declare type JiraConfluencePageContent = JiraConfluencePageContentDetails | JiraConfluencePageContentError;
|
|
103320
103866
|
export declare type JiraConfluencePageContentDetails = {
|
|
@@ -103546,23 +104092,32 @@ export declare type JiraConnectTextField = JiraIssueField & JiraIssueFieldConfig
|
|
|
103546
104092
|
type: Scalars['String']['output'];
|
|
103547
104093
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
103548
104094
|
};
|
|
104095
|
+
export declare type JiraConnectTownsquareProjectPayload = Payload & {
|
|
104096
|
+
__typename?: 'JiraConnectTownsquareProjectPayload';
|
|
104097
|
+
errors?: Maybe<Array<MutationError>>;
|
|
104098
|
+
success: Scalars['Boolean']['output'];
|
|
104099
|
+
};
|
|
104100
|
+
export declare type JiraConnectTownsquareProjectToSpaceInput = {
|
|
104101
|
+
spaceAri: Scalars['ID']['input'];
|
|
104102
|
+
townsquareProjectAri: Scalars['String']['input'];
|
|
104103
|
+
};
|
|
103549
104104
|
export declare type JiraConsolidatedResource = {
|
|
103550
104105
|
contentType?: Maybe<Scalars['String']['output']>;
|
|
103551
|
-
createdDate
|
|
104106
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
103552
104107
|
details?: Maybe<JiraConsolidatedResourceDetails>;
|
|
103553
104108
|
fileName?: Maybe<Scalars['String']['output']>;
|
|
103554
104109
|
fileSize?: Maybe<Scalars['Long']['output']>;
|
|
103555
104110
|
id: Scalars['ID']['output'];
|
|
103556
|
-
integration
|
|
103557
|
-
};
|
|
103558
|
-
export declare type JiraConsolidatedResourceDetails = {
|
|
103559
|
-
isHydrated: Scalars['Boolean']['output'];
|
|
104111
|
+
integration?: Maybe<JiraResourceIntegration>;
|
|
103560
104112
|
};
|
|
103561
|
-
export declare type
|
|
103562
|
-
__typename?: '
|
|
104113
|
+
export declare type JiraConsolidatedResourceConnection = {
|
|
104114
|
+
__typename?: 'JiraConsolidatedResourceConnection';
|
|
103563
104115
|
edges: Array<JiraConsolidatedResourcesEdge>;
|
|
103564
104116
|
pageInfo: PageInfo;
|
|
103565
104117
|
};
|
|
104118
|
+
export declare type JiraConsolidatedResourceDetails = {
|
|
104119
|
+
isHydrated: Scalars['Boolean']['output'];
|
|
104120
|
+
};
|
|
103566
104121
|
export declare type JiraConsolidatedResourcesEdge = {
|
|
103567
104122
|
__typename?: 'JiraConsolidatedResourcesEdge';
|
|
103568
104123
|
cursor: Scalars['String']['output'];
|
|
@@ -103571,7 +104126,7 @@ export declare type JiraConsolidatedResourcesEdge = {
|
|
|
103571
104126
|
export declare type JiraConsolidatedResourcesInput = {
|
|
103572
104127
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103573
104128
|
filters?: InputMaybe<Array<InputMaybe<JiraIssueResourceFilters>>>;
|
|
103574
|
-
first
|
|
104129
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103575
104130
|
hydrate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
103576
104131
|
orderDirection?: InputMaybe<JiraResourcesSortDirection>;
|
|
103577
104132
|
orderField?: InputMaybe<JiraResourcesOrderField>;
|
|
@@ -103890,6 +104445,18 @@ export declare type JiraCreateSimpleNavigationItemInput = {
|
|
|
103890
104445
|
scopeId: Scalars['ID']['input'];
|
|
103891
104446
|
typeKey: JiraNavigationItemTypeKey;
|
|
103892
104447
|
};
|
|
104448
|
+
export declare type JiraCreateTownsquareProjectAndConnectToSpaceInput = {
|
|
104449
|
+
private?: InputMaybe<Scalars['Boolean']['input']>;
|
|
104450
|
+
spaceAri: Scalars['ID']['input'];
|
|
104451
|
+
townsquareProjectIcon?: InputMaybe<JiraTownsquareIconInput>;
|
|
104452
|
+
townsquareProjectName: Scalars['String']['input'];
|
|
104453
|
+
};
|
|
104454
|
+
export declare type JiraCreateTownsquareProjectAndConnectToSpacePayload = Payload & {
|
|
104455
|
+
__typename?: 'JiraCreateTownsquareProjectAndConnectToSpacePayload';
|
|
104456
|
+
errors?: Maybe<Array<MutationError>>;
|
|
104457
|
+
success: Scalars['Boolean']['output'];
|
|
104458
|
+
townsquareProject?: Maybe<JiraTownsquareProject>;
|
|
104459
|
+
};
|
|
103893
104460
|
export declare type JiraCrossProjectVersion = Node & {
|
|
103894
104461
|
__typename?: 'JiraCrossProjectVersion';
|
|
103895
104462
|
crossProjectVersionScenarioValues?: Maybe<JiraCrossProjectVersionPlanScenarioValues>;
|
|
@@ -104274,6 +104841,11 @@ export declare type JiraDateTimeWindow = {
|
|
|
104274
104841
|
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
104275
104842
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
104276
104843
|
};
|
|
104844
|
+
export declare enum JiraDecimalSeparator {
|
|
104845
|
+
Comma = "COMMA",
|
|
104846
|
+
Locale = "LOCALE",
|
|
104847
|
+
Period = "PERIOD"
|
|
104848
|
+
}
|
|
104277
104849
|
export declare type JiraDeclineBoardViewsForWorkflowsInput = {
|
|
104278
104850
|
viewId: Scalars['ID']['input'];
|
|
104279
104851
|
};
|
|
@@ -106376,9 +106948,17 @@ export declare type JiraFormulaFieldFunctionInfo = {
|
|
|
106376
106948
|
description: Scalars['String']['output'];
|
|
106377
106949
|
examples?: Maybe<Array<Scalars['String']['output']>>;
|
|
106378
106950
|
name: Scalars['String']['output'];
|
|
106951
|
+
parameters?: Maybe<Array<JiraFormulaFieldFunctionParameter>>;
|
|
106379
106952
|
returnType: JiraFormulaFieldType;
|
|
106380
106953
|
signature: Scalars['String']['output'];
|
|
106381
106954
|
};
|
|
106955
|
+
export declare type JiraFormulaFieldFunctionParameter = {
|
|
106956
|
+
__typename?: 'JiraFormulaFieldFunctionParameter';
|
|
106957
|
+
name: Scalars['String']['output'];
|
|
106958
|
+
optional?: Maybe<Scalars['Boolean']['output']>;
|
|
106959
|
+
type?: Maybe<JiraFormulaFieldParameterType>;
|
|
106960
|
+
variadic?: Maybe<Scalars['Boolean']['output']>;
|
|
106961
|
+
};
|
|
106382
106962
|
export declare type JiraFormulaFieldIssuePreview = {
|
|
106383
106963
|
__typename?: 'JiraFormulaFieldIssuePreview';
|
|
106384
106964
|
missingFields?: Maybe<Array<JiraFormulaReferencedField>>;
|
|
@@ -106389,6 +106969,13 @@ export declare type JiraFormulaFieldNumberValue = {
|
|
|
106389
106969
|
__typename?: 'JiraFormulaFieldNumberValue';
|
|
106390
106970
|
value?: Maybe<Scalars['Float']['output']>;
|
|
106391
106971
|
};
|
|
106972
|
+
export declare enum JiraFormulaFieldParameterType {
|
|
106973
|
+
Any = "ANY",
|
|
106974
|
+
Boolean = "BOOLEAN",
|
|
106975
|
+
Datetime = "DATETIME",
|
|
106976
|
+
Number = "NUMBER",
|
|
106977
|
+
Text = "TEXT"
|
|
106978
|
+
}
|
|
106392
106979
|
export declare type JiraFormulaFieldParseError = {
|
|
106393
106980
|
__typename?: 'JiraFormulaFieldParseError';
|
|
106394
106981
|
message: Scalars['String']['output'];
|
|
@@ -106421,6 +107008,7 @@ export declare type JiraFormulaFieldSuggestionContext = {
|
|
|
106421
107008
|
};
|
|
106422
107009
|
export declare type JiraFormulaFieldSupportedFunctions = {
|
|
106423
107010
|
__typename?: 'JiraFormulaFieldSupportedFunctions';
|
|
107011
|
+
allFunctions?: Maybe<Array<JiraFormulaFieldFunctionInfo>>;
|
|
106424
107012
|
number?: Maybe<Array<JiraFormulaFieldFunctionInfo>>;
|
|
106425
107013
|
};
|
|
106426
107014
|
export declare type JiraFormulaFieldTextValue = {
|
|
@@ -106428,9 +107016,11 @@ export declare type JiraFormulaFieldTextValue = {
|
|
|
106428
107016
|
value?: Maybe<Scalars['String']['output']>;
|
|
106429
107017
|
};
|
|
106430
107018
|
export declare enum JiraFormulaFieldType {
|
|
107019
|
+
Boolean = "BOOLEAN",
|
|
106431
107020
|
Datetime = "DATETIME",
|
|
106432
107021
|
Number = "NUMBER",
|
|
106433
|
-
Text = "TEXT"
|
|
107022
|
+
Text = "TEXT",
|
|
107023
|
+
Unknown = "UNKNOWN"
|
|
106434
107024
|
}
|
|
106435
107025
|
export declare type JiraFormulaFieldValue = JiraFormulaFieldDateValue | JiraFormulaFieldNumberValue | JiraFormulaFieldTextValue;
|
|
106436
107026
|
export declare type JiraFormulaReferencedField = {
|
|
@@ -106749,6 +107339,13 @@ export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
|
106749
107339
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
106750
107340
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
106751
107341
|
};
|
|
107342
|
+
export declare enum JiraGroupingSeparator {
|
|
107343
|
+
Comma = "COMMA",
|
|
107344
|
+
Locale = "LOCALE",
|
|
107345
|
+
None = "NONE",
|
|
107346
|
+
Period = "PERIOD",
|
|
107347
|
+
Space = "SPACE"
|
|
107348
|
+
}
|
|
106752
107349
|
export declare enum JiraGroupsContext {
|
|
106753
107350
|
Group = "GROUP",
|
|
106754
107351
|
User = "USER"
|
|
@@ -106992,7 +107589,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
106992
107589
|
connectActivityPanels?: Maybe<JiraIssueConnectActivityPanelConnection>;
|
|
106993
107590
|
connectBackgroundScripts?: Maybe<JiraIssueConnectBackgroundScriptConnection>;
|
|
106994
107591
|
connectOperations?: Maybe<JiraIssueConnectOperationConnection>;
|
|
106995
|
-
consolidatedResources?: Maybe<
|
|
107592
|
+
consolidatedResources?: Maybe<JiraConsolidatedResourceConnection>;
|
|
106996
107593
|
contentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
106997
107594
|
contextPanels?: Maybe<JiraIssueContextPanelConnection>;
|
|
106998
107595
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
@@ -107021,6 +107618,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
107021
107618
|
fieldsById?: Maybe<JiraIssueFieldConnection>;
|
|
107022
107619
|
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
107023
107620
|
fieldsForView?: Maybe<JiraIssueFieldConnection>;
|
|
107621
|
+
flagField?: Maybe<JiraFlagField>;
|
|
107024
107622
|
getConsolidatedResources?: Maybe<JiraResourcesResult>;
|
|
107025
107623
|
getConsolidatedResourcesTotalCount?: Maybe<Scalars['Long']['output']>;
|
|
107026
107624
|
getUnhydratedConsolidatedResources?: Maybe<JiraResourcesResult>;
|
|
@@ -107038,6 +107636,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
107038
107636
|
incidentActionItems?: Maybe<GraphIncidentHasActionItemRelationshipConnection>;
|
|
107039
107637
|
incidentLinkedJswIssues?: Maybe<GraphIncidentLinkedJswIssueRelationshipConnection>;
|
|
107040
107638
|
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
107639
|
+
isIncidentManagementEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
107041
107640
|
isRemoteIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
107042
107641
|
isResolved?: Maybe<Scalars['Boolean']['output']>;
|
|
107043
107642
|
issueAISummary?: Maybe<JiraIssueAiSummaryResult>;
|
|
@@ -107210,6 +107809,8 @@ export declare type JiraIssueConnectOperationsArgs = {
|
|
|
107210
107809
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
107211
107810
|
};
|
|
107212
107811
|
export declare type JiraIssueConsolidatedResourcesArgs = {
|
|
107812
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
107813
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107213
107814
|
input?: InputMaybe<JiraConsolidatedResourcesInput>;
|
|
107214
107815
|
};
|
|
107215
107816
|
export declare type JiraIssueContentPanelsArgs = {
|
|
@@ -107846,6 +108447,7 @@ export declare type JiraIssueDevSummaryResult = {
|
|
|
107846
108447
|
export declare type JiraIssueEdge = {
|
|
107847
108448
|
__typename?: 'JiraIssueEdge';
|
|
107848
108449
|
canHaveChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
108450
|
+
childIssuesInfo?: Maybe<JiraIssueEdgeChildIssuesInfo>;
|
|
107849
108451
|
cursor: Scalars['String']['output'];
|
|
107850
108452
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
107851
108453
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -107855,6 +108457,9 @@ export declare type JiraIssueEdge = {
|
|
|
107855
108457
|
export declare type JiraIssueEdgeCanHaveChildIssuesArgs = {
|
|
107856
108458
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
107857
108459
|
};
|
|
108460
|
+
export declare type JiraIssueEdgeChildIssuesInfoArgs = {
|
|
108461
|
+
filterByProjectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
108462
|
+
};
|
|
107858
108463
|
export declare type JiraIssueEdgeFieldSetsArgs = {
|
|
107859
108464
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107860
108465
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -107864,6 +108469,10 @@ export declare type JiraIssueEdgeFieldSetsArgs = {
|
|
|
107864
108469
|
export declare type JiraIssueEdgeHasChildrenArgs = {
|
|
107865
108470
|
filterByProjectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
107866
108471
|
};
|
|
108472
|
+
export declare type JiraIssueEdgeChildIssuesInfo = {
|
|
108473
|
+
__typename?: 'JiraIssueEdgeChildIssuesInfo';
|
|
108474
|
+
childrenCount?: Maybe<Scalars['Long']['output']>;
|
|
108475
|
+
};
|
|
107867
108476
|
export declare type JiraIssueError = JiraRemoteLinkedIssueError;
|
|
107868
108477
|
export declare type JiraIssueExpandedGroup = {
|
|
107869
108478
|
fieldValue?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -107977,6 +108586,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
107977
108586
|
defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
|
|
107978
108587
|
description?: Maybe<Scalars['String']['output']>;
|
|
107979
108588
|
descriptionCustomisations?: Maybe<Array<Maybe<JiraFieldWorkTypeDescriptionCustomization>>>;
|
|
108589
|
+
descriptionCustomisationsV2?: Maybe<Array<Maybe<JiraFieldWorkTypeDescriptionCustomization>>>;
|
|
107980
108590
|
effectiveTypeKey?: Maybe<Scalars['String']['output']>;
|
|
107981
108591
|
fieldId: Scalars['String']['output'];
|
|
107982
108592
|
fieldSchemeOperations?: Maybe<JiraFieldSchemeOperations>;
|
|
@@ -108000,6 +108610,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
108000
108610
|
providerConnectAppName?: Maybe<Scalars['String']['output']>;
|
|
108001
108611
|
providerForgeApp?: Maybe<App>;
|
|
108002
108612
|
requiredOnCustomizations?: Maybe<Array<Maybe<JiraFieldWorkTypeRequiredCustomization>>>;
|
|
108613
|
+
requiredOnCustomizationsV2?: Maybe<Array<Maybe<JiraFieldWorkTypeRequiredCustomization>>>;
|
|
108003
108614
|
requiredOnWorkTypes?: Maybe<Array<Maybe<JiraIssueType>>>;
|
|
108004
108615
|
searcherTemplate?: Maybe<JiraFieldSearcherTemplate>;
|
|
108005
108616
|
searcherTemplateOptions?: Maybe<JiraFieldSearcherTemplateConnection>;
|
|
@@ -108012,6 +108623,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
108012
108623
|
typeDisplayName?: Maybe<Scalars['String']['output']>;
|
|
108013
108624
|
typeKey?: Maybe<Scalars['String']['output']>;
|
|
108014
108625
|
workTypesAssociation?: Maybe<JiraFieldToWorkTypesAssociation>;
|
|
108626
|
+
workTypesAssociationV2?: Maybe<JiraFieldToWorkTypesAssociation>;
|
|
108015
108627
|
};
|
|
108016
108628
|
export declare type JiraIssueFieldConfigAssociatedContextsArgs = {
|
|
108017
108629
|
after?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -108086,12 +108698,18 @@ export declare type JiraIssueFieldConfigDefaultFieldOptionsArgs = {
|
|
|
108086
108698
|
export declare type JiraIssueFieldConfigDescriptionCustomisationsArgs = {
|
|
108087
108699
|
schemeId: Scalars['ID']['input'];
|
|
108088
108700
|
};
|
|
108701
|
+
export declare type JiraIssueFieldConfigDescriptionCustomisationsV2Args = {
|
|
108702
|
+
input: JiraIssueFieldConfigDescriptionCustomisationsInput;
|
|
108703
|
+
};
|
|
108089
108704
|
export declare type JiraIssueFieldConfigIsDefaultFieldOptionsCountOverLimitArgs = {
|
|
108090
108705
|
limit: Scalars['Int']['input'];
|
|
108091
108706
|
};
|
|
108092
108707
|
export declare type JiraIssueFieldConfigRequiredOnCustomizationsArgs = {
|
|
108093
108708
|
schemeId: Scalars['ID']['input'];
|
|
108094
108709
|
};
|
|
108710
|
+
export declare type JiraIssueFieldConfigRequiredOnCustomizationsV2Args = {
|
|
108711
|
+
input: JiraIssueFieldConfigRequiredOnCustomisationsInput;
|
|
108712
|
+
};
|
|
108095
108713
|
export declare type JiraIssueFieldConfigRequiredOnWorkTypesArgs = {
|
|
108096
108714
|
schemeId: Scalars['ID']['input'];
|
|
108097
108715
|
};
|
|
@@ -108104,6 +108722,22 @@ export declare type JiraIssueFieldConfigSearcherTemplateOptionsArgs = {
|
|
|
108104
108722
|
export declare type JiraIssueFieldConfigWorkTypesAssociationArgs = {
|
|
108105
108723
|
schemeId: Scalars['ID']['input'];
|
|
108106
108724
|
};
|
|
108725
|
+
export declare type JiraIssueFieldConfigWorkTypesAssociationV2Args = {
|
|
108726
|
+
input: JiraIssueFieldConfigWorkTypesAssociationInput;
|
|
108727
|
+
};
|
|
108728
|
+
export declare type JiraIssueFieldConfigDescriptionCustomisationsInput = {
|
|
108729
|
+
schemeOrProject: JiraIssueFieldConfigSchemeOrProjectInput;
|
|
108730
|
+
};
|
|
108731
|
+
export declare type JiraIssueFieldConfigRequiredOnCustomisationsInput = {
|
|
108732
|
+
schemeOrProject: JiraIssueFieldConfigSchemeOrProjectInput;
|
|
108733
|
+
};
|
|
108734
|
+
export declare type JiraIssueFieldConfigSchemeOrProjectInput = {
|
|
108735
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
108736
|
+
schemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
108737
|
+
};
|
|
108738
|
+
export declare type JiraIssueFieldConfigWorkTypesAssociationInput = {
|
|
108739
|
+
schemeOrProject: JiraIssueFieldConfigSchemeOrProjectInput;
|
|
108740
|
+
};
|
|
108107
108741
|
export declare type JiraIssueFieldConfiguration = {
|
|
108108
108742
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
108109
108743
|
};
|
|
@@ -108860,6 +109494,7 @@ export declare type JiraIssueSearchFieldSetConnection = {
|
|
|
108860
109494
|
__typename?: 'JiraIssueSearchFieldSetConnection';
|
|
108861
109495
|
edges?: Maybe<Array<Maybe<JiraIssueSearchFieldSetEdge>>>;
|
|
108862
109496
|
isWithholdingUnsupportedSelectedFields?: Maybe<Scalars['Boolean']['output']>;
|
|
109497
|
+
isWitholdingScopeUnrelatedFields?: Maybe<Scalars['Boolean']['output']>;
|
|
108863
109498
|
pageInfo: PageInfo;
|
|
108864
109499
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
108865
109500
|
};
|
|
@@ -110851,6 +111486,7 @@ export declare type JiraMediaUploadToken = {
|
|
|
110851
111486
|
export declare type JiraMediaUploadTokenResult = JiraMediaUploadToken | QueryError;
|
|
110852
111487
|
export declare type JiraMentionable = {
|
|
110853
111488
|
__typename?: 'JiraMentionable';
|
|
111489
|
+
accountType?: Maybe<Scalars['String']['output']>;
|
|
110854
111490
|
team?: Maybe<JiraTeamView>;
|
|
110855
111491
|
user?: Maybe<User>;
|
|
110856
111492
|
};
|
|
@@ -111215,6 +111851,7 @@ export declare type JiraMutation = {
|
|
|
111215
111851
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
111216
111852
|
bulkUpdateLabelColor?: Maybe<JiraBulkLabelColorUpdatePayload>;
|
|
111217
111853
|
cloneIssue?: Maybe<JiraCloneIssueResponse>;
|
|
111854
|
+
connectTownsquareProjectToSpace?: Maybe<JiraConnectTownsquareProjectPayload>;
|
|
111218
111855
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
111219
111856
|
createAppNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
111220
111857
|
createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
|
|
@@ -111238,6 +111875,7 @@ export declare type JiraMutation = {
|
|
|
111238
111875
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
111239
111876
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
111240
111877
|
createSimpleNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
111878
|
+
createTownsquareProjectAndConnectToSpace?: Maybe<JiraCreateTownsquareProjectAndConnectToSpacePayload>;
|
|
111241
111879
|
deleteAllAttachments?: Maybe<JiraDeleteAllAttachmentsPayload>;
|
|
111242
111880
|
deleteAllConsolidatedResources?: Maybe<JiraDeleteAllIssueResourcesPayload>;
|
|
111243
111881
|
deleteAttachments?: Maybe<JiraDeleteAttachmentsPayload>;
|
|
@@ -111501,6 +112139,9 @@ export declare type JiraMutationBulkUpdateLabelColorArgs = {
|
|
|
111501
112139
|
export declare type JiraMutationCloneIssueArgs = {
|
|
111502
112140
|
input: JiraCloneIssueInput;
|
|
111503
112141
|
};
|
|
112142
|
+
export declare type JiraMutationConnectTownsquareProjectToSpaceArgs = {
|
|
112143
|
+
input: JiraConnectTownsquareProjectToSpaceInput;
|
|
112144
|
+
};
|
|
111504
112145
|
export declare type JiraMutationCreateAndAssociateWorkflowFromJsmTemplateArgs = {
|
|
111505
112146
|
input: JiraServiceManagementCreateAndAssociateWorkflowFromTemplateInput;
|
|
111506
112147
|
};
|
|
@@ -111584,6 +112225,9 @@ export declare type JiraMutationCreateReleaseNoteConfluencePageArgs = {
|
|
|
111584
112225
|
export declare type JiraMutationCreateSimpleNavigationItemArgs = {
|
|
111585
112226
|
input: JiraCreateSimpleNavigationItemInput;
|
|
111586
112227
|
};
|
|
112228
|
+
export declare type JiraMutationCreateTownsquareProjectAndConnectToSpaceArgs = {
|
|
112229
|
+
input: JiraCreateTownsquareProjectAndConnectToSpaceInput;
|
|
112230
|
+
};
|
|
111587
112231
|
export declare type JiraMutationDeleteAllAttachmentsArgs = {
|
|
111588
112232
|
issueId: Scalars['ID']['input'];
|
|
111589
112233
|
};
|
|
@@ -112462,14 +113106,18 @@ export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
112462
113106
|
};
|
|
112463
113107
|
export declare type JiraNumberFieldFormatConfig = {
|
|
112464
113108
|
__typename?: 'JiraNumberFieldFormatConfig';
|
|
113109
|
+
decimalSeparator?: Maybe<JiraDecimalSeparator>;
|
|
112465
113110
|
formatDecimals?: Maybe<Scalars['Int']['output']>;
|
|
112466
113111
|
formatStyle?: Maybe<JiraNumberFieldFormatStyle>;
|
|
112467
113112
|
formatUnit?: Maybe<Scalars['String']['output']>;
|
|
113113
|
+
groupingSeparator?: Maybe<JiraGroupingSeparator>;
|
|
112468
113114
|
};
|
|
112469
113115
|
export declare type JiraNumberFieldFormatConfigInput = {
|
|
113116
|
+
decimalSeparator?: InputMaybe<JiraDecimalSeparator>;
|
|
112470
113117
|
formatDecimals?: InputMaybe<Scalars['Int']['input']>;
|
|
112471
113118
|
formatStyle: JiraNumberFieldFormatStyle;
|
|
112472
113119
|
formatUnit?: InputMaybe<Scalars['String']['input']>;
|
|
113120
|
+
groupingSeparator?: InputMaybe<JiraGroupingSeparator>;
|
|
112473
113121
|
};
|
|
112474
113122
|
export declare enum JiraNumberFieldFormatStyle {
|
|
112475
113123
|
Currency = "CURRENCY",
|
|
@@ -113914,6 +114562,7 @@ export declare type JiraProject = Node & {
|
|
|
113914
114562
|
reportCategories?: Maybe<JiraReportCategoryConnection>;
|
|
113915
114563
|
repositories?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoConnection>;
|
|
113916
114564
|
requestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
|
|
114565
|
+
roles?: Maybe<JiraRoleConnection>;
|
|
113917
114566
|
schemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
113918
114567
|
selectedDeploymentAppsProperty?: Maybe<Array<JiraDeploymentApp>>;
|
|
113919
114568
|
servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
|
|
@@ -114068,6 +114717,15 @@ export declare type JiraProjectRequestTypesArgs = {
|
|
|
114068
114717
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
114069
114718
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
114070
114719
|
};
|
|
114720
|
+
export declare type JiraProjectRolesArgs = {
|
|
114721
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
114722
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
114723
|
+
currentMember?: InputMaybe<Scalars['Boolean']['input']>;
|
|
114724
|
+
excludeConnectAddons?: InputMaybe<Scalars['Boolean']['input']>;
|
|
114725
|
+
excludeOtherServiceRoles?: InputMaybe<Scalars['Boolean']['input']>;
|
|
114726
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
114727
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
114728
|
+
};
|
|
114071
114729
|
export declare type JiraProjectSchemeAssociatedFieldsArgs = {
|
|
114072
114730
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
114073
114731
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -114611,6 +115269,7 @@ export declare type JiraProjectSchemeAssociatedFieldsInput = {
|
|
|
114611
115269
|
fieldTypeGroupsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
114612
115270
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
114613
115271
|
requiredOnIssueTypesFilter?: InputMaybe<Array<JiraFieldsRequiredOnIssueTypesFilterInput>>;
|
|
115272
|
+
sortBy?: InputMaybe<Array<JiraFieldSchemesSort>>;
|
|
114614
115273
|
};
|
|
114615
115274
|
export declare type JiraProjectShortcut = Node & {
|
|
114616
115275
|
__typename?: 'JiraProjectShortcut';
|
|
@@ -116593,14 +117252,14 @@ export declare type JiraRemoteLinkResource = JiraConsolidatedResource & {
|
|
|
116593
117252
|
applicationName?: Maybe<Scalars['String']['output']>;
|
|
116594
117253
|
applicationType?: Maybe<Scalars['String']['output']>;
|
|
116595
117254
|
contentType?: Maybe<Scalars['String']['output']>;
|
|
116596
|
-
createdDate
|
|
117255
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
116597
117256
|
details?: Maybe<JiraRemoteLinkDetails>;
|
|
116598
117257
|
fileName?: Maybe<Scalars['String']['output']>;
|
|
116599
117258
|
fileSize?: Maybe<Scalars['Long']['output']>;
|
|
116600
117259
|
href?: Maybe<Scalars['String']['output']>;
|
|
116601
117260
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
116602
117261
|
id: Scalars['ID']['output'];
|
|
116603
|
-
integration
|
|
117262
|
+
integration?: Maybe<JiraResourceIntegration>;
|
|
116604
117263
|
};
|
|
116605
117264
|
export declare type JiraRemoteLinkedIssueError = {
|
|
116606
117265
|
__typename?: 'JiraRemoteLinkedIssueError';
|
|
@@ -116933,6 +117592,7 @@ export declare enum JiraResourceIntegration {
|
|
|
116933
117592
|
Confluence = "CONFLUENCE",
|
|
116934
117593
|
Gdrive = "GDRIVE",
|
|
116935
117594
|
Loom = "LOOM",
|
|
117595
|
+
Weblink = "WEBLINK",
|
|
116936
117596
|
Whiteboard = "WHITEBOARD"
|
|
116937
117597
|
}
|
|
116938
117598
|
export declare type JiraResourceNode = {
|
|
@@ -117032,6 +117692,7 @@ export declare type JiraResourceUsageMetricEdgeV2 = {
|
|
|
117032
117692
|
export declare type JiraResourceUsageMetricLimitValue = {
|
|
117033
117693
|
__typename?: 'JiraResourceUsageMetricLimitValue';
|
|
117034
117694
|
key?: Maybe<Scalars['String']['output']>;
|
|
117695
|
+
limitEnforced?: Maybe<Scalars['Boolean']['output']>;
|
|
117035
117696
|
limitValue?: Maybe<Scalars['Int']['output']>;
|
|
117036
117697
|
};
|
|
117037
117698
|
export declare type JiraResourceUsageMetricV2 = {
|
|
@@ -117201,9 +117862,13 @@ export declare type JiraRole = Node & {
|
|
|
117201
117862
|
__typename?: 'JiraRole';
|
|
117202
117863
|
description?: Maybe<Scalars['String']['output']>;
|
|
117203
117864
|
id: Scalars['ID']['output'];
|
|
117865
|
+
isAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
117866
|
+
isDefaultRole?: Maybe<Scalars['Boolean']['output']>;
|
|
117204
117867
|
isManaged?: Maybe<Scalars['Boolean']['output']>;
|
|
117868
|
+
isRoleConfigurable?: Maybe<Scalars['Boolean']['output']>;
|
|
117205
117869
|
name?: Maybe<Scalars['String']['output']>;
|
|
117206
117870
|
roleId: Scalars['String']['output'];
|
|
117871
|
+
translatedName?: Maybe<Scalars['String']['output']>;
|
|
117207
117872
|
};
|
|
117208
117873
|
export declare type JiraRoleConnection = {
|
|
117209
117874
|
__typename?: 'JiraRoleConnection';
|
|
@@ -120666,6 +121331,11 @@ export declare type JiraTopChildCustomFieldDefaultContextOptionPositionInput = {
|
|
|
120666
121331
|
export declare type JiraTopCustomFieldDefaultContextOptionPositionInput = {
|
|
120667
121332
|
dummy?: InputMaybe<Scalars['Boolean']['input']>;
|
|
120668
121333
|
};
|
|
121334
|
+
export declare type JiraTownsquareIconInput = {
|
|
121335
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
121336
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
121337
|
+
shortName?: InputMaybe<Scalars['String']['input']>;
|
|
121338
|
+
};
|
|
120669
121339
|
export declare type JiraTownsquareProject = {
|
|
120670
121340
|
__typename?: 'JiraTownsquareProject';
|
|
120671
121341
|
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
@@ -120682,6 +121352,18 @@ export declare type JiraTownsquareProject = {
|
|
|
120682
121352
|
state?: Maybe<Scalars['String']['output']>;
|
|
120683
121353
|
workspaceAri?: Maybe<Scalars['String']['output']>;
|
|
120684
121354
|
};
|
|
121355
|
+
export declare type JiraTownsquareProjectConnection = {
|
|
121356
|
+
__typename?: 'JiraTownsquareProjectConnection';
|
|
121357
|
+
edges?: Maybe<Array<Maybe<JiraTownsquareProjectEdge>>>;
|
|
121358
|
+
errors?: Maybe<Array<QueryError>>;
|
|
121359
|
+
pageInfo: PageInfo;
|
|
121360
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
121361
|
+
};
|
|
121362
|
+
export declare type JiraTownsquareProjectEdge = {
|
|
121363
|
+
__typename?: 'JiraTownsquareProjectEdge';
|
|
121364
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
121365
|
+
node?: Maybe<JiraTownsquareProject>;
|
|
121366
|
+
};
|
|
120685
121367
|
export declare type JiraTownsquareProjectEntry = {
|
|
120686
121368
|
__typename?: 'JiraTownsquareProjectEntry';
|
|
120687
121369
|
hasPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121596,6 +122278,7 @@ export declare type JiraUserConnection = {
|
|
|
121596
122278
|
};
|
|
121597
122279
|
export declare type JiraUserEdge = {
|
|
121598
122280
|
__typename?: 'JiraUserEdge';
|
|
122281
|
+
accountType?: Maybe<Scalars['String']['output']>;
|
|
121599
122282
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
121600
122283
|
node?: Maybe<User>;
|
|
121601
122284
|
};
|
|
@@ -122496,13 +123179,13 @@ export declare type JiraWhiteboardDetails = JiraConsolidatedResourceDetails & {
|
|
|
122496
123179
|
export declare type JiraWhiteboardResource = JiraConsolidatedResource & {
|
|
122497
123180
|
__typename?: 'JiraWhiteboardResource';
|
|
122498
123181
|
contentType?: Maybe<Scalars['String']['output']>;
|
|
122499
|
-
createdDate
|
|
123182
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
122500
123183
|
details?: Maybe<JiraWhiteboardDetails>;
|
|
122501
123184
|
fileName?: Maybe<Scalars['String']['output']>;
|
|
122502
123185
|
fileSize?: Maybe<Scalars['Long']['output']>;
|
|
122503
123186
|
href?: Maybe<Scalars['String']['output']>;
|
|
122504
123187
|
id: Scalars['ID']['output'];
|
|
122505
|
-
integration
|
|
123188
|
+
integration?: Maybe<JiraResourceIntegration>;
|
|
122506
123189
|
};
|
|
122507
123190
|
export declare type JiraWorkCategory = {
|
|
122508
123191
|
__typename?: 'JiraWorkCategory';
|
|
@@ -123281,9 +123964,11 @@ export declare type JpdViewsServiceDeleteGlobalViewPayload = Payload & {
|
|
|
123281
123964
|
export declare type JpdViewsServiceField = {
|
|
123282
123965
|
__typename?: 'JpdViewsServiceField';
|
|
123283
123966
|
jiraFieldKey: Scalars['String']['output'];
|
|
123967
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
123284
123968
|
};
|
|
123285
123969
|
export declare type JpdViewsServiceFieldInput = {
|
|
123286
|
-
jiraFieldKey
|
|
123970
|
+
jiraFieldKey?: InputMaybe<Scalars['String']['input']>;
|
|
123971
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
123287
123972
|
};
|
|
123288
123973
|
export declare type JpdViewsServiceFieldRollup = {
|
|
123289
123974
|
__typename?: 'JpdViewsServiceFieldRollup';
|
|
@@ -123328,6 +124013,7 @@ export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node &
|
|
|
123328
124013
|
columnSize?: Maybe<Scalars['String']['output']>;
|
|
123329
124014
|
connectionsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
123330
124015
|
connectionsLayoutType?: Maybe<Scalars['String']['output']>;
|
|
124016
|
+
createdDate?: Maybe<Scalars['String']['output']>;
|
|
123331
124017
|
description?: Maybe<Scalars['String']['output']>;
|
|
123332
124018
|
emoji?: Maybe<Scalars['String']['output']>;
|
|
123333
124019
|
fieldRollups?: Maybe<Array<Maybe<JpdViewsServiceFieldRollup>>>;
|
|
@@ -123350,6 +124036,7 @@ export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node &
|
|
|
123350
124036
|
sortMode?: Maybe<Scalars['String']['output']>;
|
|
123351
124037
|
tableColumnSizes?: Maybe<Array<Maybe<JpdViewsServiceTableColumnSize>>>;
|
|
123352
124038
|
timelineConfig?: Maybe<JpdViewsServiceTimelineConfig>;
|
|
124039
|
+
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
123353
124040
|
verticalGroupBy?: Maybe<JpdViewsServiceField>;
|
|
123354
124041
|
verticalGroupValues?: Maybe<Array<Maybe<JpdViewsServiceNestedId>>>;
|
|
123355
124042
|
verticalGroupsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
@@ -123404,12 +124091,6 @@ export declare type JpdViewsServiceOptionInput = {
|
|
|
123404
124091
|
label: Scalars['String']['input'];
|
|
123405
124092
|
weight: Scalars['Int']['input'];
|
|
123406
124093
|
};
|
|
123407
|
-
export declare type JpdViewsServicePaginationInput = {
|
|
123408
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
123409
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
123410
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
123411
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
123412
|
-
};
|
|
123413
124094
|
export declare type JpdViewsServiceRerankGlobalViewInput = {
|
|
123414
124095
|
id: Scalars['ID']['input'];
|
|
123415
124096
|
moveAfter?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -124514,6 +125195,46 @@ export declare enum JsmConversationStatus {
|
|
|
124514
125195
|
Unassigned = "UNASSIGNED"
|
|
124515
125196
|
}
|
|
124516
125197
|
export declare type JsmConversationUpdate = JsmConversation | JsmConversationClaimedConversationMessage | QueryError;
|
|
125198
|
+
export declare type JsmSolutionComposerPlanQueryApi = {
|
|
125199
|
+
__typename?: 'JsmSolutionComposerPlanQueryApi';
|
|
125200
|
+
jsmSolutionComposerPlanStatus?: Maybe<JsmSolutionComposerPlanStatusResult>;
|
|
125201
|
+
};
|
|
125202
|
+
export declare type JsmSolutionComposerPlanQueryApiJsmSolutionComposerPlanStatusArgs = {
|
|
125203
|
+
projectAri: Scalars['ID']['input'];
|
|
125204
|
+
};
|
|
125205
|
+
export declare type JsmSolutionComposerPlanStatusResponse = {
|
|
125206
|
+
__typename?: 'JsmSolutionComposerPlanStatusResponse';
|
|
125207
|
+
id: Scalars['ID']['output'];
|
|
125208
|
+
projectAri: Scalars['ID']['output'];
|
|
125209
|
+
status: JsmSolutionComposerPlanStatusType;
|
|
125210
|
+
steps?: Maybe<Array<Maybe<JsmSolutionComposerStepStatus>>>;
|
|
125211
|
+
};
|
|
125212
|
+
export declare type JsmSolutionComposerPlanStatusResult = JsmSolutionComposerPlanStatusResponse | QueryError;
|
|
125213
|
+
export declare enum JsmSolutionComposerPlanStatusType {
|
|
125214
|
+
Done = "DONE",
|
|
125215
|
+
Failed = "FAILED",
|
|
125216
|
+
InProgress = "IN_PROGRESS"
|
|
125217
|
+
}
|
|
125218
|
+
export declare enum JsmSolutionComposerStepEntityType {
|
|
125219
|
+
AiAgent = "AI_AGENT",
|
|
125220
|
+
Automation = "AUTOMATION",
|
|
125221
|
+
Hub = "HUB",
|
|
125222
|
+
Kb = "KB",
|
|
125223
|
+
Portal = "PORTAL",
|
|
125224
|
+
Queue = "QUEUE",
|
|
125225
|
+
RequestType = "REQUEST_TYPE",
|
|
125226
|
+
Sla = "SLA"
|
|
125227
|
+
}
|
|
125228
|
+
export declare type JsmSolutionComposerStepStatus = {
|
|
125229
|
+
__typename?: 'JsmSolutionComposerStepStatus';
|
|
125230
|
+
entityType: JsmSolutionComposerStepEntityType;
|
|
125231
|
+
status: JsmSolutionComposerStepStatusType;
|
|
125232
|
+
};
|
|
125233
|
+
export declare enum JsmSolutionComposerStepStatusType {
|
|
125234
|
+
Done = "DONE",
|
|
125235
|
+
Failed = "FAILED",
|
|
125236
|
+
InProgress = "IN_PROGRESS"
|
|
125237
|
+
}
|
|
124517
125238
|
export declare type JsonContentProperty = {
|
|
124518
125239
|
__typename?: 'JsonContentProperty';
|
|
124519
125240
|
content?: Maybe<Content>;
|
|
@@ -124894,6 +125615,15 @@ export declare type KitsuneDeletedRecord = {
|
|
|
124894
125615
|
export declare type KitsuneEdge = {
|
|
124895
125616
|
cursor: Scalars['String']['output'];
|
|
124896
125617
|
};
|
|
125618
|
+
export declare type KitsuneEntitlements = {
|
|
125619
|
+
__typename?: 'KitsuneEntitlements';
|
|
125620
|
+
atlassianAccountId: Scalars['String']['output'];
|
|
125621
|
+
cloudId: Scalars['String']['output'];
|
|
125622
|
+
editionType: KitsuneFeedbackEditionType;
|
|
125623
|
+
isAiEnabled: Scalars['Boolean']['output'];
|
|
125624
|
+
isUserAdmin: Scalars['Boolean']['output'];
|
|
125625
|
+
userHasProductAccess: Scalars['Boolean']['output'];
|
|
125626
|
+
};
|
|
124897
125627
|
export declare type KitsuneFeedback = Node & {
|
|
124898
125628
|
__typename?: 'KitsuneFeedback';
|
|
124899
125629
|
chunks: KitsuneChunkConnection;
|
|
@@ -124929,6 +125659,10 @@ export declare type KitsuneFeedbackEdge = KitsuneEdge & {
|
|
|
124929
125659
|
cursor: Scalars['String']['output'];
|
|
124930
125660
|
node?: Maybe<KitsuneFeedback>;
|
|
124931
125661
|
};
|
|
125662
|
+
export declare enum KitsuneFeedbackEditionType {
|
|
125663
|
+
FeedbackBeta = "FEEDBACK_BETA",
|
|
125664
|
+
NoActiveProduct = "NO_ACTIVE_PRODUCT"
|
|
125665
|
+
}
|
|
124932
125666
|
export declare type KitsuneFeedbackEvent = {
|
|
124933
125667
|
__typename?: 'KitsuneFeedbackEvent';
|
|
124934
125668
|
content: Scalars['KitsuneADF']['output'];
|
|
@@ -131563,6 +132297,7 @@ export declare type MercuryCostItemSummary = {
|
|
|
131563
132297
|
export declare type MercuryCostPeriodValue = Node & {
|
|
131564
132298
|
__typename?: 'MercuryCostPeriodValue';
|
|
131565
132299
|
amount?: Maybe<MercuryMoney>;
|
|
132300
|
+
financialVersion?: Maybe<MercuryFinancialVersion>;
|
|
131566
132301
|
id: Scalars['ID']['output'];
|
|
131567
132302
|
yearMonth?: Maybe<Scalars['String']['output']>;
|
|
131568
132303
|
};
|
|
@@ -133271,6 +134006,15 @@ export declare type MercuryLinkWorkToFocusAreaPayload = Payload & {
|
|
|
133271
134006
|
errors?: Maybe<Array<MutationError>>;
|
|
133272
134007
|
success: Scalars['Boolean']['output'];
|
|
133273
134008
|
};
|
|
134009
|
+
export declare type MercuryLinkWorkToRiskInput = {
|
|
134010
|
+
riskId: Scalars['ID']['input'];
|
|
134011
|
+
workIds: Array<Scalars['ID']['input']>;
|
|
134012
|
+
};
|
|
134013
|
+
export declare type MercuryLinkWorkToRiskPayload = Payload & {
|
|
134014
|
+
__typename?: 'MercuryLinkWorkToRiskPayload';
|
|
134015
|
+
errors?: Maybe<Array<MutationError>>;
|
|
134016
|
+
success: Scalars['Boolean']['output'];
|
|
134017
|
+
};
|
|
133274
134018
|
export declare type MercuryLinkedGoalOrWorkSummary = {
|
|
133275
134019
|
__typename?: 'MercuryLinkedGoalOrWorkSummary';
|
|
133276
134020
|
focusAreaId: Scalars['ID']['output'];
|
|
@@ -133720,8 +134464,11 @@ export declare enum MercuryPassionfruitPermission {
|
|
|
133720
134464
|
DeletePlan = "DELETE_PLAN",
|
|
133721
134465
|
EditAsk = "EDIT_ASK",
|
|
133722
134466
|
EditPlan = "EDIT_PLAN",
|
|
134467
|
+
Manage = "MANAGE",
|
|
134468
|
+
Read = "READ",
|
|
133723
134469
|
ViewAsk = "VIEW_ASK",
|
|
133724
|
-
ViewPlan = "VIEW_PLAN"
|
|
134470
|
+
ViewPlan = "VIEW_PLAN",
|
|
134471
|
+
Write = "WRITE"
|
|
133725
134472
|
}
|
|
133726
134473
|
export declare enum MercuryPermission {
|
|
133727
134474
|
ArchiveFocusArea = "ARCHIVE_FOCUS_AREA",
|
|
@@ -133966,7 +134713,9 @@ export declare type MercuryProviderOrchestrationMutationApi = {
|
|
|
133966
134713
|
linkAtlassianWorkToFocusArea?: Maybe<MercuryLinkAtlassianWorkToFocusAreaPayload>;
|
|
133967
134714
|
linkWorkToChangeProposal?: Maybe<MercuryLinkWorkToChangeProposalPayload>;
|
|
133968
134715
|
linkWorkToFocusArea?: Maybe<MercuryLinkWorkToFocusAreaPayload>;
|
|
134716
|
+
linkWorkToRisk?: Maybe<MercuryLinkWorkToRiskPayload>;
|
|
133969
134717
|
unlinkWorkFromChangeProposal?: Maybe<MercuryUnlinkWorkFromChangeProposalPayload>;
|
|
134718
|
+
unlinkWorkFromRisk?: Maybe<MercuryUnlinkWorkFromRiskPayload>;
|
|
133970
134719
|
};
|
|
133971
134720
|
export declare type MercuryProviderOrchestrationMutationApiDeleteFocusAreaWorkLinkArgs = {
|
|
133972
134721
|
input: MercuryDeleteFocusAreaWorkLinkInput;
|
|
@@ -133983,14 +134732,21 @@ export declare type MercuryProviderOrchestrationMutationApiLinkWorkToChangePropo
|
|
|
133983
134732
|
export declare type MercuryProviderOrchestrationMutationApiLinkWorkToFocusAreaArgs = {
|
|
133984
134733
|
input: MercuryLinkWorkToFocusAreaInput;
|
|
133985
134734
|
};
|
|
134735
|
+
export declare type MercuryProviderOrchestrationMutationApiLinkWorkToRiskArgs = {
|
|
134736
|
+
input: MercuryLinkWorkToRiskInput;
|
|
134737
|
+
};
|
|
133986
134738
|
export declare type MercuryProviderOrchestrationMutationApiUnlinkWorkFromChangeProposalArgs = {
|
|
133987
134739
|
input: MercuryUnlinkWorkFromChangeProposalInput;
|
|
133988
134740
|
};
|
|
134741
|
+
export declare type MercuryProviderOrchestrationMutationApiUnlinkWorkFromRiskArgs = {
|
|
134742
|
+
input: MercuryUnlinkWorkFromRiskInput;
|
|
134743
|
+
};
|
|
133989
134744
|
export declare type MercuryProviderOrchestrationQueryApi = {
|
|
133990
134745
|
__typename?: 'MercuryProviderOrchestrationQueryApi';
|
|
133991
134746
|
connectedProviders?: Maybe<MercuryProviderConnection>;
|
|
133992
134747
|
isWorkspaceConnected: Array<MercuryWorkspaceConnectionStatus>;
|
|
133993
134748
|
providers?: Maybe<MercuryProviderConnection>;
|
|
134749
|
+
searchWorkByChangeProposal?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
133994
134750
|
searchWorkByFocusArea?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
133995
134751
|
searchWorkByRisk?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
133996
134752
|
workStatuses?: Maybe<Array<Maybe<MercuryProviderWorkStatus>>>;
|
|
@@ -134006,6 +134762,16 @@ export declare type MercuryProviderOrchestrationQueryApiIsWorkspaceConnectedArgs
|
|
|
134006
134762
|
export declare type MercuryProviderOrchestrationQueryApiProvidersArgs = {
|
|
134007
134763
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
134008
134764
|
};
|
|
134765
|
+
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByChangeProposalArgs = {
|
|
134766
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
134767
|
+
changeProposalId: Scalars['ID']['input'];
|
|
134768
|
+
cloudId: Scalars['ID']['input'];
|
|
134769
|
+
filter?: InputMaybe<MercuryProviderWorkSearchFilters>;
|
|
134770
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
134771
|
+
providerKey: Scalars['String']['input'];
|
|
134772
|
+
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
134773
|
+
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
134774
|
+
};
|
|
134009
134775
|
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByFocusAreaArgs = {
|
|
134010
134776
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
134011
134777
|
cloudId: Scalars['ID']['input'];
|
|
@@ -134022,7 +134788,7 @@ export declare type MercuryProviderOrchestrationQueryApiSearchWorkByRiskArgs = {
|
|
|
134022
134788
|
filter?: InputMaybe<MercuryProviderWorkSearchFilters>;
|
|
134023
134789
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
134024
134790
|
providerKey: Scalars['String']['input'];
|
|
134025
|
-
riskId
|
|
134791
|
+
riskId: Scalars['ID']['input'];
|
|
134026
134792
|
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
134027
134793
|
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
134028
134794
|
};
|
|
@@ -134452,6 +135218,7 @@ export declare type MercuryRisk = Node & {
|
|
|
134452
135218
|
createdDate: Scalars['String']['output'];
|
|
134453
135219
|
description?: Maybe<Scalars['String']['output']>;
|
|
134454
135220
|
id: Scalars['ID']['output'];
|
|
135221
|
+
impact?: Maybe<MercuryRiskImpact>;
|
|
134455
135222
|
name: Scalars['String']['output'];
|
|
134456
135223
|
owner?: Maybe<Scalars['ID']['output']>;
|
|
134457
135224
|
status?: Maybe<MercuryRiskStatus>;
|
|
@@ -134471,13 +135238,19 @@ export declare type MercuryRiskEdge = {
|
|
|
134471
135238
|
cursor: Scalars['String']['output'];
|
|
134472
135239
|
node?: Maybe<MercuryRisk>;
|
|
134473
135240
|
};
|
|
135241
|
+
export declare type MercuryRiskImpact = {
|
|
135242
|
+
__typename?: 'MercuryRiskImpact';
|
|
135243
|
+
key: Scalars['String']['output'];
|
|
135244
|
+
value: Scalars['Int']['output'];
|
|
135245
|
+
};
|
|
134474
135246
|
export declare type MercuryRiskSort = {
|
|
134475
135247
|
field: MercuryRiskSortField;
|
|
134476
135248
|
order: SortOrder;
|
|
134477
135249
|
};
|
|
134478
135250
|
export declare enum MercuryRiskSortField {
|
|
134479
135251
|
Name = "NAME",
|
|
134480
|
-
Status = "STATUS"
|
|
135252
|
+
Status = "STATUS",
|
|
135253
|
+
TargetDate = "TARGET_DATE"
|
|
134481
135254
|
}
|
|
134482
135255
|
export declare type MercuryRiskStatus = {
|
|
134483
135256
|
__typename?: 'MercuryRiskStatus';
|
|
@@ -134488,7 +135261,9 @@ export declare type MercuryRiskStatus = {
|
|
|
134488
135261
|
order: Scalars['Int']['output'];
|
|
134489
135262
|
};
|
|
134490
135263
|
export declare enum MercuryRiskStatusColor {
|
|
135264
|
+
Blue = "BLUE",
|
|
134491
135265
|
Gray = "GRAY",
|
|
135266
|
+
Green = "GREEN",
|
|
134492
135267
|
Red = "RED"
|
|
134493
135268
|
}
|
|
134494
135269
|
export declare type MercuryRiskStatusTransition = {
|
|
@@ -134542,6 +135317,7 @@ export declare type MercuryRisksMutationApiUpdateRiskTargetDateArgs = {
|
|
|
134542
135317
|
export declare type MercuryRisksQueryApi = {
|
|
134543
135318
|
__typename?: 'MercuryRisksQueryApi';
|
|
134544
135319
|
risk?: Maybe<MercuryRisk>;
|
|
135320
|
+
riskImpactValues: Array<MercuryRiskImpact>;
|
|
134545
135321
|
riskStatuses: Array<MercuryRiskStatus>;
|
|
134546
135322
|
risks?: Maybe<Array<Maybe<MercuryRisk>>>;
|
|
134547
135323
|
risksSearch?: Maybe<MercuryRiskConnection>;
|
|
@@ -134549,6 +135325,9 @@ export declare type MercuryRisksQueryApi = {
|
|
|
134549
135325
|
export declare type MercuryRisksQueryApiRiskArgs = {
|
|
134550
135326
|
id: Scalars['ID']['input'];
|
|
134551
135327
|
};
|
|
135328
|
+
export declare type MercuryRisksQueryApiRiskImpactValuesArgs = {
|
|
135329
|
+
cloudId: Scalars['ID']['input'];
|
|
135330
|
+
};
|
|
134552
135331
|
export declare type MercuryRisksQueryApiRiskStatusesArgs = {
|
|
134553
135332
|
cloudId: Scalars['ID']['input'];
|
|
134554
135333
|
};
|
|
@@ -135194,6 +135973,15 @@ export declare type MercuryUnlinkWorkFromChangeProposalPayload = Payload & {
|
|
|
135194
135973
|
errors?: Maybe<Array<MutationError>>;
|
|
135195
135974
|
success: Scalars['Boolean']['output'];
|
|
135196
135975
|
};
|
|
135976
|
+
export declare type MercuryUnlinkWorkFromRiskInput = {
|
|
135977
|
+
riskId: Scalars['ID']['input'];
|
|
135978
|
+
workIds: Array<Scalars['ID']['input']>;
|
|
135979
|
+
};
|
|
135980
|
+
export declare type MercuryUnlinkWorkFromRiskPayload = Payload & {
|
|
135981
|
+
__typename?: 'MercuryUnlinkWorkFromRiskPayload';
|
|
135982
|
+
errors?: Maybe<Array<MutationError>>;
|
|
135983
|
+
success: Scalars['Boolean']['output'];
|
|
135984
|
+
};
|
|
135197
135985
|
export declare type MercuryUnrankChangeProposalInViewInput = {
|
|
135198
135986
|
changeProposalId: Scalars['ID']['input'];
|
|
135199
135987
|
changeProposalsViewId: Scalars['ID']['input'];
|
|
@@ -135646,6 +136434,7 @@ export declare type MercuryWorkspaceContext = {
|
|
|
135646
136434
|
aiEnabled: Scalars['Boolean']['output'];
|
|
135647
136435
|
cloudId: Scalars['String']['output'];
|
|
135648
136436
|
integrations?: Maybe<MercuryIntegrationsContext>;
|
|
136437
|
+
isSandbox?: Maybe<Scalars['Boolean']['output']>;
|
|
135649
136438
|
settings?: Maybe<MercuryWorkspaceSettings>;
|
|
135650
136439
|
userPermissions?: Maybe<Array<MercuryPermission>>;
|
|
135651
136440
|
};
|
|
@@ -135925,6 +136714,7 @@ export declare type Mutation = {
|
|
|
135925
136714
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
135926
136715
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
135927
136716
|
agentStudio_updateAgentVerification?: Maybe<AgentStudioUpdateAgentVerificationPayload>;
|
|
136717
|
+
agentStudio_updateConversationConfiguration?: Maybe<AgentStudioUpdateConversationConfigurationPayload>;
|
|
135928
136718
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
135929
136719
|
agentStudio_updateCreatePermissionMode?: Maybe<AgentStudioUpdateCreatePermissionModePayload>;
|
|
135930
136720
|
agentStudio_updateKnowledgeGapSuggestionArticleStatus?: Maybe<AgentStudioUpdateKnowledgeGapSuggestionArticleStatusPayload>;
|
|
@@ -136016,6 +136806,8 @@ export declare type Mutation = {
|
|
|
136016
136806
|
assetsDM_updateDataSourcePriority?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
136017
136807
|
assetsDM_updateDataSourceType?: Maybe<AssetsDmUpdateDataSourceTypeResponse>;
|
|
136018
136808
|
assetsDM_updateDefaultCleansingRule?: Maybe<AssetsDmUpdateDefaultCleansingRuleResponse>;
|
|
136809
|
+
assetsVertical_generateInsights?: Maybe<AssetsVerticalGenerateInsightsPayload>;
|
|
136810
|
+
assetsVertical_instantiateBundleByType: AssetsVerticalAsyncBundleActionResult;
|
|
136019
136811
|
assets_updateObjectAttributeValue?: Maybe<AssetsAttributeOnObject>;
|
|
136020
136812
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
136021
136813
|
attachDanglingComment?: Maybe<Comment>;
|
|
@@ -136058,7 +136850,9 @@ export declare type Mutation = {
|
|
|
136058
136850
|
blockService_batchDeleteBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
|
|
136059
136851
|
blockService_batchUpdateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
|
|
136060
136852
|
blockService_createBlock?: Maybe<BlockServiceBlockPayload>;
|
|
136853
|
+
blockService_createReference?: Maybe<BlockServiceCreateReferencePayload>;
|
|
136061
136854
|
blockService_deleteBlock?: Maybe<BlockServiceDeleteBlockPayload>;
|
|
136855
|
+
blockService_deleteReference?: Maybe<BlockServiceDeleteReferencePayload>;
|
|
136062
136856
|
blockService_updateBlock?: Maybe<BlockServiceBlockPayload>;
|
|
136063
136857
|
blockService_updateDocumentReferences?: Maybe<BlockServiceDocumentReferenceBlocksPayload>;
|
|
136064
136858
|
boardCardMove?: Maybe<MoveCardOutput>;
|
|
@@ -136088,6 +136882,9 @@ export declare type Mutation = {
|
|
|
136088
136882
|
channelPlatform_updateTracMetrics?: Maybe<ChannelPlatformTracMetricsResponse>;
|
|
136089
136883
|
channelPlatform_uploadAttachmentMetadata?: Maybe<ChannelPlatformAttachmentMetadataResponse>;
|
|
136090
136884
|
clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
|
|
136885
|
+
cloudify_addRecommendation: CloudifyRecommendation;
|
|
136886
|
+
cloudify_analyze: Array<CloudifyRecommendation>;
|
|
136887
|
+
cloudify_deleteRecommendations: Array<CloudifyRecommendationId>;
|
|
136091
136888
|
commerceExp_approvalDesk?: Maybe<CommerceExpApprovalDeskMutation>;
|
|
136092
136889
|
commerceExp_ccp?: Maybe<CommerceExpCcpMutation>;
|
|
136093
136890
|
commerceExp_ccpMutationWithQuery?: Maybe<CommerceExpCcpMutationWithQuery>;
|
|
@@ -136446,6 +137243,7 @@ export declare type Mutation = {
|
|
|
136446
137243
|
graphIntegration_mcpAdminManagementUpdateMcpRegistration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpRegistrationPayload>;
|
|
136447
137244
|
graphIntegration_mcpAdminManagementUpdateMcpToolConfiguration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload>;
|
|
136448
137245
|
graphIntegration_removeTwgCapabilityContainer?: Maybe<GraphIntegrationRemoveTwgCapabilityContainerPayload>;
|
|
137246
|
+
graphIntegration_setTwgPlatformCapabilityGlobalAdminSetting?: Maybe<GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPayload>;
|
|
136449
137247
|
graphIntegration_updateDataConnectorConnection?: Maybe<GraphIntegrationUpdateConnectionPayload>;
|
|
136450
137248
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
136451
137249
|
graphStoreV2?: Maybe<GraphStoreV2Mutation>;
|
|
@@ -136838,8 +137636,10 @@ export declare type Mutation = {
|
|
|
136838
137636
|
spf_updateAskName?: Maybe<SpfUpsertAskPayload>;
|
|
136839
137637
|
spf_updateAskOwner?: Maybe<SpfUpsertAskPayload>;
|
|
136840
137638
|
spf_updateAskPriority?: Maybe<SpfUpsertAskPayload>;
|
|
137639
|
+
spf_updateAskReceivingFields?: Maybe<SpfUpsertAskPayload>;
|
|
136841
137640
|
spf_updateAskReceivingTeam?: Maybe<SpfUpsertAskPayload>;
|
|
136842
137641
|
spf_updateAskSubmitter?: Maybe<SpfUpsertAskPayload>;
|
|
137642
|
+
spf_updateAskSubmittingFields?: Maybe<SpfUpsertAskPayload>;
|
|
136843
137643
|
spf_updateAskSubmittingTeam?: Maybe<SpfUpsertAskPayload>;
|
|
136844
137644
|
spf_updateAskUpdateDescription?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
136845
137645
|
spf_updateAskUpdateStatus?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
@@ -137190,6 +137990,11 @@ export declare type MutationAgentStudio_UpdateAgentVerificationArgs = {
|
|
|
137190
137990
|
id: Scalars['ID']['input'];
|
|
137191
137991
|
verified: Scalars['Boolean']['input'];
|
|
137192
137992
|
};
|
|
137993
|
+
export declare type MutationAgentStudio_UpdateConversationConfigurationArgs = {
|
|
137994
|
+
cloudId: Scalars['String']['input'];
|
|
137995
|
+
containerId: Scalars['ID']['input'];
|
|
137996
|
+
input: AgentStudioConversationConfigInput;
|
|
137997
|
+
};
|
|
137193
137998
|
export declare type MutationAgentStudio_UpdateConversationStartersArgs = {
|
|
137194
137999
|
id: Scalars['ID']['input'];
|
|
137195
138000
|
input: AgentStudioUpdateConversationStartersInput;
|
|
@@ -137579,6 +138384,13 @@ export declare type MutationAssetsDm_UpdateDefaultCleansingRuleArgs = {
|
|
|
137579
138384
|
input: AssetsDmUpdateDefaultCleansingRuleInput;
|
|
137580
138385
|
workspaceId: Scalars['ID']['input'];
|
|
137581
138386
|
};
|
|
138387
|
+
export declare type MutationAssetsVertical_GenerateInsightsArgs = {
|
|
138388
|
+
input: AssetsVerticalGenerateInsightsInput;
|
|
138389
|
+
};
|
|
138390
|
+
export declare type MutationAssetsVertical_InstantiateBundleByTypeArgs = {
|
|
138391
|
+
cloudId: Scalars['ID']['input'];
|
|
138392
|
+
type: AssetsVerticalBundleType;
|
|
138393
|
+
};
|
|
137582
138394
|
export declare type MutationAssets_UpdateObjectAttributeValueArgs = {
|
|
137583
138395
|
cloudId: Scalars['ID']['input'];
|
|
137584
138396
|
id: Scalars['ID']['input'];
|
|
@@ -137708,9 +138520,15 @@ export declare type MutationBlockService_BatchUpdateBlocksArgs = {
|
|
|
137708
138520
|
export declare type MutationBlockService_CreateBlockArgs = {
|
|
137709
138521
|
input: BlockServiceCreateBlockInput;
|
|
137710
138522
|
};
|
|
138523
|
+
export declare type MutationBlockService_CreateReferenceArgs = {
|
|
138524
|
+
input: BlockServiceCreateReferenceInput;
|
|
138525
|
+
};
|
|
137711
138526
|
export declare type MutationBlockService_DeleteBlockArgs = {
|
|
137712
138527
|
input: BlockServiceDeleteBlockInput;
|
|
137713
138528
|
};
|
|
138529
|
+
export declare type MutationBlockService_DeleteReferenceArgs = {
|
|
138530
|
+
input: BlockServiceDeleteReferenceInput;
|
|
138531
|
+
};
|
|
137714
138532
|
export declare type MutationBlockService_UpdateBlockArgs = {
|
|
137715
138533
|
input: BlockServiceUpdateBlockInput;
|
|
137716
138534
|
};
|
|
@@ -137804,6 +138622,19 @@ export declare type MutationChannelPlatform_UploadAttachmentMetadataArgs = {
|
|
|
137804
138622
|
export declare type MutationClearRestrictionsForFreeArgs = {
|
|
137805
138623
|
contentId: Scalars['ID']['input'];
|
|
137806
138624
|
};
|
|
138625
|
+
export declare type MutationCloudify_AddRecommendationArgs = {
|
|
138626
|
+
input: CloudifyRecommendationInput;
|
|
138627
|
+
projectId: Scalars['ID']['input'];
|
|
138628
|
+
siteId: Scalars['ID']['input'];
|
|
138629
|
+
};
|
|
138630
|
+
export declare type MutationCloudify_AnalyzeArgs = {
|
|
138631
|
+
projectId: Scalars['ID']['input'];
|
|
138632
|
+
siteId: Scalars['ID']['input'];
|
|
138633
|
+
};
|
|
138634
|
+
export declare type MutationCloudify_DeleteRecommendationsArgs = {
|
|
138635
|
+
projectId: Scalars['ID']['input'];
|
|
138636
|
+
siteId: Scalars['ID']['input'];
|
|
138637
|
+
};
|
|
137807
138638
|
export declare type MutationCommerceExp_ApprovalDeskArgs = {
|
|
137808
138639
|
input: CommerceExpApprovalDeskTenantInput;
|
|
137809
138640
|
};
|
|
@@ -139066,6 +139897,9 @@ export declare type MutationGraphIntegration_McpAdminManagementUpdateMcpToolConf
|
|
|
139066
139897
|
export declare type MutationGraphIntegration_RemoveTwgCapabilityContainerArgs = {
|
|
139067
139898
|
input: GraphIntegrationRemoveTwgCapabilityContainerInput;
|
|
139068
139899
|
};
|
|
139900
|
+
export declare type MutationGraphIntegration_SetTwgPlatformCapabilityGlobalAdminSettingArgs = {
|
|
139901
|
+
input: GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingInput;
|
|
139902
|
+
};
|
|
139069
139903
|
export declare type MutationGraphIntegration_UpdateDataConnectorConnectionArgs = {
|
|
139070
139904
|
input: GraphIntegrationUpdateDataConnectorConnectionInput;
|
|
139071
139905
|
};
|
|
@@ -140028,6 +140862,8 @@ export declare type MutationRemoveAllDirectUserSpacePermissionsArgs = {
|
|
|
140028
140862
|
};
|
|
140029
140863
|
export declare type MutationRemoveContentStateArgs = {
|
|
140030
140864
|
contentId: Scalars['ID']['input'];
|
|
140865
|
+
doPublish?: InputMaybe<Scalars['Boolean']['input']>;
|
|
140866
|
+
suppressDraftPropertyUpdate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
140031
140867
|
};
|
|
140032
140868
|
export declare type MutationRemoveGroupSpacePermissionsArgs = {
|
|
140033
140869
|
spacePermissionsInput: RemoveGroupSpacePermissionsInput;
|
|
@@ -140303,12 +141139,18 @@ export declare type MutationSpf_UpdateAskOwnerArgs = {
|
|
|
140303
141139
|
export declare type MutationSpf_UpdateAskPriorityArgs = {
|
|
140304
141140
|
input: SpfUpdateAskPriorityInput;
|
|
140305
141141
|
};
|
|
141142
|
+
export declare type MutationSpf_UpdateAskReceivingFieldsArgs = {
|
|
141143
|
+
input: SpfUpdateAskReceivingFieldsInput;
|
|
141144
|
+
};
|
|
140306
141145
|
export declare type MutationSpf_UpdateAskReceivingTeamArgs = {
|
|
140307
141146
|
input: SpfUpdateAskReceivingTeamInput;
|
|
140308
141147
|
};
|
|
140309
141148
|
export declare type MutationSpf_UpdateAskSubmitterArgs = {
|
|
140310
141149
|
input: SpfUpdateAskSubmitterInput;
|
|
140311
141150
|
};
|
|
141151
|
+
export declare type MutationSpf_UpdateAskSubmittingFieldsArgs = {
|
|
141152
|
+
input: SpfUpdateAskSubmittingFieldsInput;
|
|
141153
|
+
};
|
|
140312
141154
|
export declare type MutationSpf_UpdateAskSubmittingTeamArgs = {
|
|
140313
141155
|
input: SpfUpdateAskSubmittingTeamInput;
|
|
140314
141156
|
};
|
|
@@ -142976,12 +143818,41 @@ export declare type PolarisTimelineConfig = {
|
|
|
142976
143818
|
export declare enum PolarisTimelineMode {
|
|
142977
143819
|
Months = "MONTHS",
|
|
142978
143820
|
Quarters = "QUARTERS",
|
|
143821
|
+
Weeks = "WEEKS",
|
|
142979
143822
|
Years = "YEARS"
|
|
142980
143823
|
}
|
|
142981
143824
|
export declare enum PolarisTimelineTodayMarker {
|
|
142982
143825
|
Disabled = "DISABLED",
|
|
142983
143826
|
Enabled = "ENABLED"
|
|
142984
143827
|
}
|
|
143828
|
+
export declare type PolarisTreeConfig = {
|
|
143829
|
+
__typename?: 'PolarisTreeConfig';
|
|
143830
|
+
defaultFields?: Maybe<Array<PolarisIdeaField>>;
|
|
143831
|
+
hierarchy?: Maybe<Array<PolarisTreeHierarchyItem>>;
|
|
143832
|
+
mode?: Maybe<PolarisTreeMode>;
|
|
143833
|
+
treeDirection?: Maybe<PolarisTreeDirection>;
|
|
143834
|
+
};
|
|
143835
|
+
export declare enum PolarisTreeDirection {
|
|
143836
|
+
Down = "DOWN",
|
|
143837
|
+
Left = "LEFT",
|
|
143838
|
+
Right = "RIGHT",
|
|
143839
|
+
Up = "UP"
|
|
143840
|
+
}
|
|
143841
|
+
export declare type PolarisTreeHierarchyItem = {
|
|
143842
|
+
__typename?: 'PolarisTreeHierarchyItem';
|
|
143843
|
+
filter?: Maybe<Array<PolarisViewFilter>>;
|
|
143844
|
+
items?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
143845
|
+
type?: Maybe<PolarisTreeHierarchyType>;
|
|
143846
|
+
};
|
|
143847
|
+
export declare enum PolarisTreeHierarchyType {
|
|
143848
|
+
Field = "FIELD",
|
|
143849
|
+
Issue = "ISSUE",
|
|
143850
|
+
IssueType = "ISSUE_TYPE"
|
|
143851
|
+
}
|
|
143852
|
+
export declare enum PolarisTreeMode {
|
|
143853
|
+
Automatic = "AUTOMATIC",
|
|
143854
|
+
Manual = "MANUAL"
|
|
143855
|
+
}
|
|
142985
143856
|
export declare type PolarisView = {
|
|
142986
143857
|
__typename?: 'PolarisView';
|
|
142987
143858
|
boldColors?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -143020,6 +143891,7 @@ export declare type PolarisView = {
|
|
|
143020
143891
|
sortMode: PolarisViewSortMode;
|
|
143021
143892
|
tableColumnSizes?: Maybe<Array<PolarisViewTableColumnSize>>;
|
|
143022
143893
|
timelineConfig?: Maybe<PolarisTimelineConfig>;
|
|
143894
|
+
treeConfig?: Maybe<PolarisTreeConfig>;
|
|
143023
143895
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
143024
143896
|
userJql?: Maybe<Scalars['String']['output']>;
|
|
143025
143897
|
uuid: Scalars['ID']['output'];
|
|
@@ -143185,6 +144057,23 @@ export declare type PostOfficeContextInput = {
|
|
|
143185
144057
|
subproduct?: InputMaybe<Scalars['String']['input']>;
|
|
143186
144058
|
tenantId?: InputMaybe<Scalars['String']['input']>;
|
|
143187
144059
|
};
|
|
144060
|
+
export declare type PostOfficeEnrichedMessagePayload = {
|
|
144061
|
+
__typename?: 'PostOfficeEnrichedMessagePayload';
|
|
144062
|
+
messages: Array<PostOfficeMessage>;
|
|
144063
|
+
};
|
|
144064
|
+
export declare type PostOfficeGetMessagesInput = {
|
|
144065
|
+
messages: Array<PostOfficeGetMessagesMessageInput>;
|
|
144066
|
+
subscriptionMatchers: PostOfficeSubscriptionMatchersInput;
|
|
144067
|
+
};
|
|
144068
|
+
export declare type PostOfficeGetMessagesMessageInput = {
|
|
144069
|
+
context: Scalars['JSON']['input'];
|
|
144070
|
+
createdAt: Scalars['String']['input'];
|
|
144071
|
+
eventTime: Scalars['String']['input'];
|
|
144072
|
+
messageCategory: Scalars['String']['input'];
|
|
144073
|
+
messageInstanceId: Scalars['String']['input'];
|
|
144074
|
+
messageTemplateId: Scalars['String']['input'];
|
|
144075
|
+
triggerId: Scalars['String']['input'];
|
|
144076
|
+
};
|
|
143188
144077
|
export declare type PostOfficeMessage = {
|
|
143189
144078
|
__typename?: 'PostOfficeMessage';
|
|
143190
144079
|
createdAt: Scalars['String']['output'];
|
|
@@ -143234,6 +144123,10 @@ export declare type PostOfficeRecommendationSession = {
|
|
|
143234
144123
|
export declare type PostOfficeScopeEntryInput = {
|
|
143235
144124
|
name: Scalars['String']['input'];
|
|
143236
144125
|
};
|
|
144126
|
+
export declare type PostOfficeSubscriptionMatchersInput = {
|
|
144127
|
+
atlassianAccountId: Scalars['String']['input'];
|
|
144128
|
+
placementId: Scalars['String']['input'];
|
|
144129
|
+
};
|
|
143237
144130
|
export declare type PremiumExtensionsFeature = {
|
|
143238
144131
|
__typename?: 'PremiumExtensionsFeature';
|
|
143239
144132
|
isEntitled: Scalars['Boolean']['output'];
|
|
@@ -143672,6 +144565,7 @@ export declare type Query = {
|
|
|
143672
144565
|
agentStudio_batchEvaluationResultByConversationId?: Maybe<AgentStudioEvaluationResult>;
|
|
143673
144566
|
agentStudio_batchEvaluationSummary?: Maybe<AgentStudioEvaluationSummary>;
|
|
143674
144567
|
agentStudio_canAddMcpServer?: Maybe<AgentStudioCanAddMcpServerResult>;
|
|
144568
|
+
agentStudio_conversationConfiguration?: Maybe<AgentStudioConversationConfigResponse>;
|
|
143675
144569
|
agentStudio_conversationReportByAgentId?: Maybe<AgentStudioConversationReportByAgentIdResult>;
|
|
143676
144570
|
agentStudio_dataset?: Maybe<AgentStudioDataset>;
|
|
143677
144571
|
agentStudio_datasetItemList?: Maybe<AgentStudioDatasetItemsResult>;
|
|
@@ -143715,6 +144609,7 @@ export declare type Query = {
|
|
|
143715
144609
|
agentWorkspace_catalogTypes?: Maybe<AgentWorkspaceCatalogTypeConnection>;
|
|
143716
144610
|
agentWorkspace_catalogs?: Maybe<AgentWorkspaceCatalogConnection>;
|
|
143717
144611
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
144612
|
+
agentWorkspace_findBestMatchAgents?: Maybe<AgentWorkspaceFindBestMatchAgentsPayload>;
|
|
143718
144613
|
agentWorkspace_projectSkill?: Maybe<AgentWorkspaceProjectSkill>;
|
|
143719
144614
|
agentWorkspace_projectSkills?: Maybe<AgentWorkspaceProjectSkillConnection>;
|
|
143720
144615
|
agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
|
|
@@ -143818,7 +144713,8 @@ export declare type Query = {
|
|
|
143818
144713
|
assetsDM_savedSearchDetails?: Maybe<AssetsDmSavedSearchDetails>;
|
|
143819
144714
|
assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
|
|
143820
144715
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
143821
|
-
|
|
144716
|
+
assetsVertical_bundle: AssetsVerticalBundle;
|
|
144717
|
+
assetsVertical_insights?: Maybe<AssetsVerticalInsights>;
|
|
143822
144718
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
143823
144719
|
assets_objectTypeAttributesBySchemaIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
143824
144720
|
assets_objectTypeAttributesForServices?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
@@ -143834,6 +144730,7 @@ export declare type Query = {
|
|
|
143834
144730
|
availableContentStates?: Maybe<AvailableContentStates>;
|
|
143835
144731
|
avpPermissions_getCapabilities?: Maybe<AvpPermissionsGetCapabilitiesResponse>;
|
|
143836
144732
|
avpPermissions_getDashboardIdentityAccess?: Maybe<AvpPermissionsDashboardIdentityAccess>;
|
|
144733
|
+
avpPermissions_getResourcePermission?: Maybe<AvpPermissionsResourcePermission>;
|
|
143837
144734
|
avpPermissions_hasCapability?: Maybe<AvpPermissionsHasCapabilityResponse>;
|
|
143838
144735
|
avp_getChart?: Maybe<AvpChart>;
|
|
143839
144736
|
avp_getChartTemplatePreview?: Maybe<AvpChartTemplatePreview>;
|
|
@@ -143912,6 +144809,7 @@ export declare type Query = {
|
|
|
143912
144809
|
channelPlatform_submitRequest?: Maybe<ChannelPlatformSubmitRequestResponse>;
|
|
143913
144810
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
143914
144811
|
classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
144812
|
+
cloudify_recommendations: Array<CloudifyRecommendation>;
|
|
143915
144813
|
codeInJira?: Maybe<CodeInJira>;
|
|
143916
144814
|
collabContext_workspaceIsConnectedToWorkspace?: Maybe<CollabContextWorkspaceConnection>;
|
|
143917
144815
|
collabDraft?: Maybe<CollabDraft>;
|
|
@@ -143930,6 +144828,7 @@ export declare type Query = {
|
|
|
143930
144828
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
143931
144829
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
143932
144830
|
confluenceUsers?: Maybe<PaginatedPersonList>;
|
|
144831
|
+
confluence_analyticsTimeseries?: Maybe<ConfluenceAnalyticsTimeseriesResult>;
|
|
143933
144832
|
confluence_answer?: Maybe<ConfluenceAnswer>;
|
|
143934
144833
|
confluence_answers?: Maybe<Array<Maybe<ConfluenceAnswer>>>;
|
|
143935
144834
|
confluence_answersForQuestion?: Maybe<ConfluenceAnswerConnection>;
|
|
@@ -143970,6 +144869,7 @@ export declare type Query = {
|
|
|
143970
144869
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
143971
144870
|
confluence_forgeExtensionsByType?: Maybe<Array<Maybe<ConfluenceForgeExtension>>>;
|
|
143972
144871
|
confluence_generateSpaceKey?: Maybe<ConfluenceGeneratedSpaceKey>;
|
|
144872
|
+
confluence_getActiveContentApprovalStatus?: Maybe<ConfluenceBatchActiveWorkflowApplications>;
|
|
143973
144873
|
confluence_getActiveWorkflowApplication?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
143974
144874
|
confluence_getAllApps?: Maybe<ConfluenceAppConnection>;
|
|
143975
144875
|
confluence_getAudioPreference?: Maybe<ConfluenceAudioPreference>;
|
|
@@ -143993,6 +144893,7 @@ export declare type Query = {
|
|
|
143993
144893
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
143994
144894
|
confluence_mediaTokenData?: Maybe<ConfluenceMediaTokenData>;
|
|
143995
144895
|
confluence_mutablePrincipalTypesByCombinationId?: Maybe<Array<Maybe<ConfluencePermissionTransitionMutationPrincipalType>>>;
|
|
144896
|
+
confluence_mutablePrincipalTypesByCombinationIds?: Maybe<Array<Maybe<ConfluenceMutablePrincipalTypesByCombinationId>>>;
|
|
143996
144897
|
confluence_nbmChainsForTransformation?: Maybe<ConfluenceNbmChainsForTransformationConnection>;
|
|
143997
144898
|
confluence_nbmEligibleTransformersForChain?: Maybe<Array<Maybe<ConfluenceNbmTransformer>>>;
|
|
143998
144899
|
confluence_nbmMostRecentVerificationJob?: Maybe<ConfluenceNbmVerificationJob>;
|
|
@@ -144264,6 +145165,7 @@ export declare type Query = {
|
|
|
144264
145165
|
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
144265
145166
|
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
144266
145167
|
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
145168
|
+
graphIntegration_twgPlatformCapabilityGlobalAdminSettings?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSettings>;
|
|
144267
145169
|
graphStore?: Maybe<GraphStore>;
|
|
144268
145170
|
graphStoreV2?: Maybe<GraphStoreV2>;
|
|
144269
145171
|
gravity_importIdeas: GravityImportIdeasResult;
|
|
@@ -144387,8 +145289,10 @@ export declare type Query = {
|
|
|
144387
145289
|
jsmConversation_conversations?: Maybe<JsmConversationConnection>;
|
|
144388
145290
|
jsmConversation_messages?: Maybe<JsmConversationMessageConnection>;
|
|
144389
145291
|
jsmConversation_settings?: Maybe<JsmConversationSettings>;
|
|
145292
|
+
jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
|
|
144390
145293
|
jsw?: Maybe<JswQuery>;
|
|
144391
145294
|
kitsune_chunks?: Maybe<Array<Maybe<KitsuneChunk>>>;
|
|
145295
|
+
kitsune_entitlements?: Maybe<KitsuneEntitlements>;
|
|
144392
145296
|
kitsune_feedbackEvent?: Maybe<KitsuneFeedbackEvent>;
|
|
144393
145297
|
kitsune_feedbacks?: Maybe<Array<Maybe<KitsuneFeedback>>>;
|
|
144394
145298
|
kitsune_fields?: Maybe<Array<Maybe<KitsuneField>>>;
|
|
@@ -144522,6 +145426,7 @@ export declare type Query = {
|
|
|
144522
145426
|
polarisView?: Maybe<PolarisView>;
|
|
144523
145427
|
polarisViewArrangementInfo?: Maybe<Scalars['JSON']['output']>;
|
|
144524
145428
|
popularFeed?: Maybe<PaginatedPopularFeed>;
|
|
145429
|
+
postOffice_getMessages?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
144525
145430
|
postOffice_placeholder?: Maybe<Scalars['String']['output']>;
|
|
144526
145431
|
pricing?: Maybe<ContentPlatformPricing>;
|
|
144527
145432
|
pricings: ContentPlatformPricingSearchConnection;
|
|
@@ -144626,7 +145531,7 @@ export declare type Query = {
|
|
|
144626
145531
|
spaceWatchers?: Maybe<PaginatedPersonList>;
|
|
144627
145532
|
spaces?: Maybe<PaginatedSpaceList>;
|
|
144628
145533
|
spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
|
|
144629
|
-
spcs_fullSiteScan?: Maybe<
|
|
145534
|
+
spcs_fullSiteScan?: Maybe<SpcsScanDetails>;
|
|
144630
145535
|
spcs_listFullSiteScans?: Maybe<SpcsFullSiteScanListResponse>;
|
|
144631
145536
|
spf_ask?: Maybe<SpfAskResult>;
|
|
144632
145537
|
spf_askCommentsByIds?: Maybe<Array<Maybe<SpfAskComment>>>;
|
|
@@ -145084,6 +145989,10 @@ export declare type QueryAgentStudio_BatchEvaluationSummaryArgs = {
|
|
|
145084
145989
|
export declare type QueryAgentStudio_CanAddMcpServerArgs = {
|
|
145085
145990
|
cloudId: Scalars['String']['input'];
|
|
145086
145991
|
};
|
|
145992
|
+
export declare type QueryAgentStudio_ConversationConfigurationArgs = {
|
|
145993
|
+
cloudId: Scalars['String']['input'];
|
|
145994
|
+
containerId: Scalars['ID']['input'];
|
|
145995
|
+
};
|
|
145087
145996
|
export declare type QueryAgentStudio_ConversationReportByAgentIdArgs = {
|
|
145088
145997
|
cloudId: Scalars['String']['input'];
|
|
145089
145998
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -145311,6 +146220,9 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
|
145311
146220
|
cloudId: Scalars['ID']['input'];
|
|
145312
146221
|
projectKey: Scalars['String']['input'];
|
|
145313
146222
|
};
|
|
146223
|
+
export declare type QueryAgentWorkspace_FindBestMatchAgentsArgs = {
|
|
146224
|
+
input: AgentWorkspaceFindBestMatchAgentsInput;
|
|
146225
|
+
};
|
|
145314
146226
|
export declare type QueryAgentWorkspace_ProjectSkillArgs = {
|
|
145315
146227
|
input: AgentWorkspaceProjectSkillInput;
|
|
145316
146228
|
};
|
|
@@ -145860,9 +146772,13 @@ export declare type QueryAssetsDm_TransformedDataArgs = {
|
|
|
145860
146772
|
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
145861
146773
|
workspaceId: Scalars['ID']['input'];
|
|
145862
146774
|
};
|
|
145863
|
-
export declare type
|
|
146775
|
+
export declare type QueryAssetsVertical_BundleArgs = {
|
|
146776
|
+
cloudId: Scalars['ID']['input'];
|
|
146777
|
+
type: AssetsVerticalBundleType;
|
|
146778
|
+
};
|
|
146779
|
+
export declare type QueryAssetsVertical_InsightsArgs = {
|
|
145864
146780
|
cloudId: Scalars['ID']['input'];
|
|
145865
|
-
|
|
146781
|
+
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
145866
146782
|
};
|
|
145867
146783
|
export declare type QueryAssets_ObjectByIdArgs = {
|
|
145868
146784
|
id: Scalars['ID']['input'];
|
|
@@ -145912,6 +146828,9 @@ export declare type QueryAvpPermissions_GetCapabilitiesArgs = {
|
|
|
145912
146828
|
export declare type QueryAvpPermissions_GetDashboardIdentityAccessArgs = {
|
|
145913
146829
|
input: AvpPermissionsGetDashboardIdentityAccessInput;
|
|
145914
146830
|
};
|
|
146831
|
+
export declare type QueryAvpPermissions_GetResourcePermissionArgs = {
|
|
146832
|
+
input: AvpPermissionsGetResourcePermissionInput;
|
|
146833
|
+
};
|
|
145915
146834
|
export declare type QueryAvpPermissions_HasCapabilityArgs = {
|
|
145916
146835
|
input: AvpPermissionsHasCapabilityInput;
|
|
145917
146836
|
};
|
|
@@ -146180,6 +147099,10 @@ export declare type QueryClassificationLevelsArgs = {
|
|
|
146180
147099
|
reclassificationFilterScope?: InputMaybe<ReclassificationFilterScope>;
|
|
146181
147100
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
146182
147101
|
};
|
|
147102
|
+
export declare type QueryCloudify_RecommendationsArgs = {
|
|
147103
|
+
projectId: Scalars['ID']['input'];
|
|
147104
|
+
siteId: Scalars['ID']['input'];
|
|
147105
|
+
};
|
|
146183
147106
|
export declare type QueryCodeInJiraArgs = {
|
|
146184
147107
|
cloudId: Scalars['ID']['input'];
|
|
146185
147108
|
};
|
|
@@ -146254,6 +147177,13 @@ export declare type QueryConfluenceUsersArgs = {
|
|
|
146254
147177
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
146255
147178
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
146256
147179
|
};
|
|
147180
|
+
export declare type QueryConfluence_AnalyticsTimeseriesArgs = {
|
|
147181
|
+
cloudId: Scalars['ID']['input'];
|
|
147182
|
+
endTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
147183
|
+
granularity: ConfluenceAnalyticsTimeseriesGranularity;
|
|
147184
|
+
metricRequests: Array<InputMaybe<ConfluenceAnalyticsMetricRequest>>;
|
|
147185
|
+
startTimestamp: Scalars['String']['input'];
|
|
147186
|
+
};
|
|
146257
147187
|
export declare type QueryConfluence_AnswerArgs = {
|
|
146258
147188
|
cloudId: Scalars['ID']['input'];
|
|
146259
147189
|
id: Scalars['Long']['input'];
|
|
@@ -146454,6 +147384,10 @@ export declare type QueryConfluence_GenerateSpaceKeyArgs = {
|
|
|
146454
147384
|
cloudId: Scalars['ID']['input'];
|
|
146455
147385
|
spaceName?: InputMaybe<Scalars['String']['input']>;
|
|
146456
147386
|
};
|
|
147387
|
+
export declare type QueryConfluence_GetActiveContentApprovalStatusArgs = {
|
|
147388
|
+
cloudId: Scalars['ID']['input'];
|
|
147389
|
+
contentIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
147390
|
+
};
|
|
146457
147391
|
export declare type QueryConfluence_GetActiveWorkflowApplicationArgs = {
|
|
146458
147392
|
cloudId: Scalars['ID']['input'];
|
|
146459
147393
|
contentId: Scalars['ID']['input'];
|
|
@@ -146558,6 +147492,10 @@ export declare type QueryConfluence_MutablePrincipalTypesByCombinationIdArgs = {
|
|
|
146558
147492
|
cloudId: Scalars['ID']['input'];
|
|
146559
147493
|
combinationId: Scalars['String']['input'];
|
|
146560
147494
|
};
|
|
147495
|
+
export declare type QueryConfluence_MutablePrincipalTypesByCombinationIdsArgs = {
|
|
147496
|
+
cloudId: Scalars['ID']['input'];
|
|
147497
|
+
combinationIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
147498
|
+
};
|
|
146561
147499
|
export declare type QueryConfluence_NbmChainsForTransformationArgs = {
|
|
146562
147500
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
146563
147501
|
cloudId: Scalars['ID']['input'];
|
|
@@ -146736,6 +147674,7 @@ export declare type QueryConfluence_SpacePermissionCombinationsByCriteriaArgs =
|
|
|
146736
147674
|
combinationId?: InputMaybe<Scalars['String']['input']>;
|
|
146737
147675
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
146738
147676
|
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
147677
|
+
isRoleMatch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
146739
147678
|
orderBy?: InputMaybe<ConfluenceSpacePermissionCombinationsByCriteriaOrder>;
|
|
146740
147679
|
spacePermissionIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
146741
147680
|
};
|
|
@@ -147141,6 +148080,7 @@ export declare type QueryCpls_FiltersArgs = {
|
|
|
147141
148080
|
export declare type QueryCpls_PeopleViewArgs = {
|
|
147142
148081
|
filters?: InputMaybe<CplsFiltersInput>;
|
|
147143
148082
|
id: Scalars['ID']['input'];
|
|
148083
|
+
includeSuggestions?: InputMaybe<Scalars['Boolean']['input']>;
|
|
147144
148084
|
};
|
|
147145
148085
|
export declare type QueryCpls_SettingsArgs = {
|
|
147146
148086
|
id: Scalars['ID']['input'];
|
|
@@ -147803,6 +148743,9 @@ export declare type QueryGraphIntegration_TwgCapabilityContainersInContextArgs =
|
|
|
147803
148743
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147804
148744
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
147805
148745
|
};
|
|
148746
|
+
export declare type QueryGraphIntegration_TwgPlatformCapabilityGlobalAdminSettingsArgs = {
|
|
148747
|
+
cloudId: Scalars['ID']['input'];
|
|
148748
|
+
};
|
|
147806
148749
|
export declare type QueryGravity_ImportIdeasArgs = {
|
|
147807
148750
|
cloudId: Scalars['ID']['input'];
|
|
147808
148751
|
input: GravityImportIdeasInput;
|
|
@@ -147813,6 +148756,8 @@ export declare type QueryGravity_JpdImportIdeasArgs = {
|
|
|
147813
148756
|
};
|
|
147814
148757
|
export declare type QueryGravity_ViewTemplateMappingProposalsArgs = {
|
|
147815
148758
|
cloudId: Scalars['ID']['input'];
|
|
148759
|
+
maxFieldProposals?: InputMaybe<Scalars['Int']['input']>;
|
|
148760
|
+
projectId: Scalars['ID']['input'];
|
|
147816
148761
|
templateId: Scalars['ID']['input'];
|
|
147817
148762
|
};
|
|
147818
148763
|
export declare type QueryGravity_ViewTemplatesArgs = {
|
|
@@ -148186,7 +149131,6 @@ export declare type QueryJpdViewsService_GlobalViewsByCriteriaArgs = {
|
|
|
148186
149131
|
filter: JpdViewsServiceGlobalViewsByCriteriaInput;
|
|
148187
149132
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148188
149133
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
148189
|
-
pagination?: InputMaybe<JpdViewsServicePaginationInput>;
|
|
148190
149134
|
};
|
|
148191
149135
|
export declare type QueryJpdViewsService_GlobalViewsByIdArgs = {
|
|
148192
149136
|
cloudId: Scalars['ID']['input'];
|
|
@@ -148253,6 +149197,9 @@ export declare type QueryJsmConversation_SettingsArgs = {
|
|
|
148253
149197
|
export declare type QueryKitsune_ChunksArgs = {
|
|
148254
149198
|
ids: Array<Scalars['ID']['input']>;
|
|
148255
149199
|
};
|
|
149200
|
+
export declare type QueryKitsune_EntitlementsArgs = {
|
|
149201
|
+
workspaceAri: Scalars['ID']['input'];
|
|
149202
|
+
};
|
|
148256
149203
|
export declare type QueryKitsune_FeedbackEventArgs = {
|
|
148257
149204
|
id: Scalars['ID']['input'];
|
|
148258
149205
|
spaceAri: Scalars['ID']['input'];
|
|
@@ -148672,6 +149619,9 @@ export declare type QueryPopularFeedArgs = {
|
|
|
148672
149619
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148673
149620
|
timeGranularity?: InputMaybe<Scalars['String']['input']>;
|
|
148674
149621
|
};
|
|
149622
|
+
export declare type QueryPostOffice_GetMessagesArgs = {
|
|
149623
|
+
payload: PostOfficeGetMessagesInput;
|
|
149624
|
+
};
|
|
148675
149625
|
export declare type QueryPricingArgs = {
|
|
148676
149626
|
id: Scalars['String']['input'];
|
|
148677
149627
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -149121,9 +150071,8 @@ export declare type QuerySpcs_FullSiteScanArgs = {
|
|
|
149121
150071
|
scanId: Scalars['ID']['input'];
|
|
149122
150072
|
};
|
|
149123
150073
|
export declare type QuerySpcs_ListFullSiteScansArgs = {
|
|
149124
|
-
|
|
150074
|
+
input?: InputMaybe<SpcsListFullSiteScansInput>;
|
|
149125
150075
|
orgId: Scalars['ID']['input'];
|
|
149126
|
-
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
149127
150076
|
};
|
|
149128
150077
|
export declare type QuerySpf_AskArgs = {
|
|
149129
150078
|
id: Scalars['ID']['input'];
|
|
@@ -152442,13 +153391,20 @@ export declare type SearchFirstPartyMetadata = {
|
|
|
152442
153391
|
__typename?: 'SearchFirstPartyMetadata';
|
|
152443
153392
|
name: Scalars['String']['output'];
|
|
152444
153393
|
};
|
|
153394
|
+
export declare type SearchGitFilters = {
|
|
153395
|
+
pullRequestStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
153396
|
+
};
|
|
152445
153397
|
export declare type SearchGraphQlConfigurationResponse = {
|
|
152446
153398
|
__typename?: 'SearchGraphQLConfigurationResponse';
|
|
152447
153399
|
firstPartyProducts: Array<SearchFirstPartyMetadata>;
|
|
152448
153400
|
intercomHmac?: Maybe<Scalars['String']['output']>;
|
|
152449
153401
|
siteMetadata: SearchConfigurationSiteMetadata;
|
|
153402
|
+
thirdPartyFilterOptions?: Maybe<SearchThirdPartyDynamicFilterOptions>;
|
|
152450
153403
|
thirdPartyProducts: Array<SearchThirdPartyMetadata>;
|
|
152451
153404
|
};
|
|
153405
|
+
export declare type SearchGraphQlConfigurationResponseThirdPartyFilterOptionsArgs = {
|
|
153406
|
+
datasourceId: Scalars['String']['input'];
|
|
153407
|
+
};
|
|
152452
153408
|
export declare type SearchInput = {
|
|
152453
153409
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
152454
153410
|
analytics?: InputMaybe<SearchAnalyticsInput>;
|
|
@@ -152457,6 +153413,7 @@ export declare type SearchInput = {
|
|
|
152457
153413
|
disableWildcardMatching?: InputMaybe<Scalars['Boolean']['input']>;
|
|
152458
153414
|
enableHighlighting?: InputMaybe<Scalars['Boolean']['input']>;
|
|
152459
153415
|
enableRelevanceDebugging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
153416
|
+
expectResult?: InputMaybe<Scalars['Boolean']['input']>;
|
|
152460
153417
|
experience: Scalars['String']['input'];
|
|
152461
153418
|
experimentContext?: InputMaybe<SearchExperimentContextInput>;
|
|
152462
153419
|
fanoutExperimentCohort?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -152584,9 +153541,12 @@ export declare type SearchParticipantOutput = {
|
|
|
152584
153541
|
users: Array<Scalars['ID']['output']>;
|
|
152585
153542
|
};
|
|
152586
153543
|
export declare enum SearchParticipantType {
|
|
153544
|
+
Commented = "COMMENTED",
|
|
152587
153545
|
Contributor = "CONTRIBUTOR",
|
|
152588
153546
|
Mentions = "MENTIONS",
|
|
152589
|
-
Presence = "PRESENCE"
|
|
153547
|
+
Presence = "PRESENCE",
|
|
153548
|
+
Shared = "SHARED",
|
|
153549
|
+
Viewed = "VIEWED"
|
|
152590
153550
|
}
|
|
152591
153551
|
export declare type SearchParticipants = {
|
|
152592
153552
|
combination: SearchCombinationType;
|
|
@@ -152932,6 +153892,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
152932
153892
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
152933
153893
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
152934
153894
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
153895
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
152935
153896
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
152936
153897
|
title: Scalars['String']['output'];
|
|
152937
153898
|
type: SearchResultType;
|
|
@@ -153275,6 +154236,20 @@ export declare type SearchTeamsFilters = {
|
|
|
153275
154236
|
hasAttachment?: InputMaybe<Scalars['Boolean']['input']>;
|
|
153276
154237
|
hasLink?: InputMaybe<Scalars['Boolean']['input']>;
|
|
153277
154238
|
};
|
|
154239
|
+
export declare type SearchThirdPartyDynamicFilter = {
|
|
154240
|
+
__typename?: 'SearchThirdPartyDynamicFilter';
|
|
154241
|
+
name: Scalars['String']['output'];
|
|
154242
|
+
values: Array<SearchThirdPartyDynamicFilterValue>;
|
|
154243
|
+
};
|
|
154244
|
+
export declare type SearchThirdPartyDynamicFilterOptions = {
|
|
154245
|
+
__typename?: 'SearchThirdPartyDynamicFilterOptions';
|
|
154246
|
+
filters: Array<SearchThirdPartyDynamicFilter>;
|
|
154247
|
+
};
|
|
154248
|
+
export declare type SearchThirdPartyDynamicFilterValue = {
|
|
154249
|
+
__typename?: 'SearchThirdPartyDynamicFilterValue';
|
|
154250
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
154251
|
+
name: Scalars['String']['output'];
|
|
154252
|
+
};
|
|
153278
154253
|
export declare type SearchThirdPartyFilter = {
|
|
153279
154254
|
additionalTexts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
153280
154255
|
ancestorAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -153284,6 +154259,7 @@ export declare type SearchThirdPartyFilter = {
|
|
|
153284
154259
|
containerTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
153285
154260
|
createdBy?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
153286
154261
|
excludeSubtypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
154262
|
+
gitFilters?: InputMaybe<SearchGitFilters>;
|
|
153287
154263
|
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
153288
154264
|
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
153289
154265
|
lastUpdatedBy?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -173509,19 +174485,34 @@ export declare type SpaceWithExemption = {
|
|
|
173509
174485
|
status?: Maybe<Scalars['String']['output']>;
|
|
173510
174486
|
type?: Maybe<Scalars['String']['output']>;
|
|
173511
174487
|
};
|
|
174488
|
+
export declare type SpcsBootstrapStage = {
|
|
174489
|
+
__typename?: 'SpcsBootstrapStage';
|
|
174490
|
+
emitted?: Maybe<Scalars['Int']['output']>;
|
|
174491
|
+
event?: Maybe<Scalars['String']['output']>;
|
|
174492
|
+
filtered?: Maybe<Scalars['Int']['output']>;
|
|
174493
|
+
processed?: Maybe<Scalars['Int']['output']>;
|
|
174494
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
174495
|
+
};
|
|
174496
|
+
export declare type SpcsBootstrapWorkspace = {
|
|
174497
|
+
__typename?: 'SpcsBootstrapWorkspace';
|
|
174498
|
+
exportStatus?: Maybe<Scalars['String']['output']>;
|
|
174499
|
+
workspaceAri?: Maybe<Scalars['String']['output']>;
|
|
174500
|
+
};
|
|
173512
174501
|
export declare type SpcsFullSiteScan = {
|
|
173513
174502
|
__typename?: 'SpcsFullSiteScan';
|
|
173514
|
-
createdBy: Scalars['
|
|
174503
|
+
createdBy: Scalars['String']['output'];
|
|
173515
174504
|
createdOn: Scalars['String']['output'];
|
|
174505
|
+
dryRun?: Maybe<Scalars['Boolean']['output']>;
|
|
173516
174506
|
orgId: Scalars['ID']['output'];
|
|
173517
174507
|
scanEndedOn?: Maybe<Scalars['String']['output']>;
|
|
173518
174508
|
scanId: Scalars['ID']['output'];
|
|
173519
174509
|
scanPercentage?: Maybe<Scalars['Float']['output']>;
|
|
173520
174510
|
scanStartedOn?: Maybe<Scalars['String']['output']>;
|
|
173521
174511
|
status: SpcsFullSiteScanStatus;
|
|
173522
|
-
|
|
173523
|
-
|
|
173524
|
-
|
|
174512
|
+
totalDataVolumeBytes?: Maybe<Scalars['String']['output']>;
|
|
174513
|
+
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
174514
|
+
updatedOn?: Maybe<Scalars['String']['output']>;
|
|
174515
|
+
workspaceAris: Array<Scalars['String']['output']>;
|
|
173525
174516
|
};
|
|
173526
174517
|
export declare type SpcsFullSiteScanListResponse = {
|
|
173527
174518
|
__typename?: 'SpcsFullSiteScanListResponse';
|
|
@@ -173534,8 +174525,34 @@ export declare enum SpcsFullSiteScanStatus {
|
|
|
173534
174525
|
InProgress = "IN_PROGRESS",
|
|
173535
174526
|
Pending = "PENDING"
|
|
173536
174527
|
}
|
|
174528
|
+
export declare type SpcsListFullSiteScansInput = {
|
|
174529
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
174530
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
174531
|
+
};
|
|
174532
|
+
export declare type SpcsScanBootstrap = {
|
|
174533
|
+
__typename?: 'SpcsScanBootstrap';
|
|
174534
|
+
bootstrapId: Scalars['ID']['output'];
|
|
174535
|
+
bootstrapStages?: Maybe<Array<SpcsBootstrapStage>>;
|
|
174536
|
+
dataVolumeBytes?: Maybe<Scalars['String']['output']>;
|
|
174537
|
+
entities: Array<Scalars['String']['output']>;
|
|
174538
|
+
estimatedObjectCount?: Maybe<Scalars['String']['output']>;
|
|
174539
|
+
objectsCount?: Maybe<Scalars['String']['output']>;
|
|
174540
|
+
orgId: Scalars['ID']['output'];
|
|
174541
|
+
processedDataVolumeBytes?: Maybe<Scalars['String']['output']>;
|
|
174542
|
+
region?: Maybe<Scalars['String']['output']>;
|
|
174543
|
+
s3Path?: Maybe<Scalars['String']['output']>;
|
|
174544
|
+
scanId: Scalars['ID']['output'];
|
|
174545
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
174546
|
+
workspaceAris: Array<Scalars['String']['output']>;
|
|
174547
|
+
workspaces?: Maybe<Array<SpcsBootstrapWorkspace>>;
|
|
174548
|
+
};
|
|
174549
|
+
export declare type SpcsScanDetails = {
|
|
174550
|
+
__typename?: 'SpcsScanDetails';
|
|
174551
|
+
dataScan: SpcsFullSiteScan;
|
|
174552
|
+
scanBootstraps: Array<SpcsScanBootstrap>;
|
|
174553
|
+
};
|
|
173537
174554
|
export declare type SpcsStartFullSiteScanInput = {
|
|
173538
|
-
workspaceAris: Array<Scalars['
|
|
174555
|
+
workspaceAris: Array<Scalars['String']['input']>;
|
|
173539
174556
|
};
|
|
173540
174557
|
export declare type SpcsStartFullSiteScanPayload = {
|
|
173541
174558
|
__typename?: 'SpcsStartFullSiteScanPayload';
|
|
@@ -174294,6 +175311,11 @@ export declare type SpfUpdateAskPriorityInput = {
|
|
|
174294
175311
|
id: Scalars['ID']['input'];
|
|
174295
175312
|
priority: SpfAskPriority;
|
|
174296
175313
|
};
|
|
175314
|
+
export declare type SpfUpdateAskReceivingFieldsInput = {
|
|
175315
|
+
id: Scalars['ID']['input'];
|
|
175316
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
175317
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
175318
|
+
};
|
|
174297
175319
|
export declare type SpfUpdateAskReceivingTeamInput = {
|
|
174298
175320
|
id: Scalars['ID']['input'];
|
|
174299
175321
|
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -174302,6 +175324,11 @@ export declare type SpfUpdateAskSubmitterInput = {
|
|
|
174302
175324
|
id: Scalars['ID']['input'];
|
|
174303
175325
|
submitterId: Scalars['String']['input'];
|
|
174304
175326
|
};
|
|
175327
|
+
export declare type SpfUpdateAskSubmittingFieldsInput = {
|
|
175328
|
+
id: Scalars['ID']['input'];
|
|
175329
|
+
submitterId: Scalars['String']['input'];
|
|
175330
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
175331
|
+
};
|
|
174305
175332
|
export declare type SpfUpdateAskSubmittingTeamInput = {
|
|
174306
175333
|
id: Scalars['ID']['input'];
|
|
174307
175334
|
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -176077,6 +177104,7 @@ export declare type Subscription = {
|
|
|
176077
177104
|
migration: MigrationSubscription;
|
|
176078
177105
|
migrationPlanningService: MigrationPlanningServiceSubscription;
|
|
176079
177106
|
postOffice_onMessageReceived?: Maybe<PostOfficeMessagePayload>;
|
|
177107
|
+
postOffice_onMessageReceivedEnriched?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
176080
177108
|
sandbox: SandboxSubscription;
|
|
176081
177109
|
signup: SignupSubscriptionApi;
|
|
176082
177110
|
spf_onPlanUpdate?: Maybe<SpfPlanResult>;
|
|
@@ -176169,6 +177197,12 @@ export declare type SubscriptionPostOffice_OnMessageReceivedArgs = {
|
|
|
176169
177197
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
176170
177198
|
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
176171
177199
|
};
|
|
177200
|
+
export declare type SubscriptionPostOffice_OnMessageReceivedEnrichedArgs = {
|
|
177201
|
+
context?: InputMaybe<PostOfficeContextInput>;
|
|
177202
|
+
placementId: Scalars['String']['input'];
|
|
177203
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
177204
|
+
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
177205
|
+
};
|
|
176172
177206
|
export declare type SubscriptionSpf_OnPlanUpdateArgs = {
|
|
176173
177207
|
id: Scalars['ID']['input'];
|
|
176174
177208
|
};
|
|
@@ -178411,6 +179445,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
178411
179445
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
178412
179446
|
id: Scalars['ID']['output'];
|
|
178413
179447
|
isArchived: Scalars['Boolean']['output'];
|
|
179448
|
+
isPrivate: Scalars['Boolean']['output'];
|
|
178414
179449
|
isWatching?: Maybe<Scalars['Boolean']['output']>;
|
|
178415
179450
|
jiraAlignItems?: Maybe<GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectConnection>;
|
|
178416
179451
|
key: Scalars['String']['output'];
|
|
@@ -181509,12 +182544,10 @@ export declare type TrelloAiBoardUserInput = {
|
|
|
181509
182544
|
};
|
|
181510
182545
|
export declare type TrelloAiFeature = {
|
|
181511
182546
|
__typename?: 'TrelloAiFeature';
|
|
181512
|
-
aiUseCase: Scalars['String']['output'];
|
|
181513
182547
|
creationMethodError?: Maybe<Scalars['String']['output']>;
|
|
181514
182548
|
entities?: Maybe<Array<TrelloAiFeatureEntity>>;
|
|
181515
182549
|
feature: Scalars['String']['output'];
|
|
181516
|
-
|
|
181517
|
-
totalTokens: Scalars['Int']['output'];
|
|
182550
|
+
modelMetadata?: Maybe<Array<TrelloModelMetadata>>;
|
|
181518
182551
|
};
|
|
181519
182552
|
export declare type TrelloAiFeatureEntity = {
|
|
181520
182553
|
__typename?: 'TrelloAiFeatureEntity';
|
|
@@ -181688,6 +182721,7 @@ export declare type TrelloAttachment = Node & {
|
|
|
181688
182721
|
objectId: Scalars['ID']['output'];
|
|
181689
182722
|
position?: Maybe<Scalars['Float']['output']>;
|
|
181690
182723
|
previews?: Maybe<TrelloImagePreviewConnection>;
|
|
182724
|
+
sourceView?: Maybe<TrelloAttachmentSourceView>;
|
|
181691
182725
|
url?: Maybe<Scalars['URL']['output']>;
|
|
181692
182726
|
};
|
|
181693
182727
|
export declare type TrelloAttachmentPreviewsArgs = {
|
|
@@ -181713,6 +182747,11 @@ export declare type TrelloAttachmentEdgeUpdated = {
|
|
|
181713
182747
|
__typename?: 'TrelloAttachmentEdgeUpdated';
|
|
181714
182748
|
node: TrelloAttachment;
|
|
181715
182749
|
};
|
|
182750
|
+
export declare type TrelloAttachmentSourceView = {
|
|
182751
|
+
__typename?: 'TrelloAttachmentSourceView';
|
|
182752
|
+
originName?: Maybe<Scalars['String']['output']>;
|
|
182753
|
+
originalText: Scalars['String']['output'];
|
|
182754
|
+
};
|
|
181716
182755
|
export declare type TrelloAttachmentUpdated = {
|
|
181717
182756
|
__typename?: 'TrelloAttachmentUpdated';
|
|
181718
182757
|
id: Scalars['ID']['output'];
|
|
@@ -182170,6 +183209,7 @@ export declare type TrelloBoardUpdatedEdge = {
|
|
|
182170
183209
|
export declare type TrelloBoardViewer = {
|
|
182171
183210
|
__typename?: 'TrelloBoardViewer';
|
|
182172
183211
|
aiBrowserExtensionEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
183212
|
+
aiConfluenceEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
182173
183213
|
aiEmailEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
182174
183214
|
aiMSTeamsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
182175
183215
|
aiSlackEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -182567,7 +183607,7 @@ export declare type TrelloCardLimits = {
|
|
|
182567
183607
|
stickers?: Maybe<TrelloCardLimit>;
|
|
182568
183608
|
};
|
|
182569
183609
|
export declare type TrelloCardListClause = {
|
|
182570
|
-
|
|
183610
|
+
lists?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
182571
183611
|
};
|
|
182572
183612
|
export declare type TrelloCardLocation = {
|
|
182573
183613
|
__typename?: 'TrelloCardLocation';
|
|
@@ -183276,6 +184316,7 @@ export declare type TrelloGenerateCheckItemsForCardInput = {
|
|
|
183276
184316
|
export declare type TrelloGenerateCheckItemsForCardPayload = {
|
|
183277
184317
|
__typename?: 'TrelloGenerateCheckItemsForCardPayload';
|
|
183278
184318
|
card?: Maybe<TrelloBaseCard>;
|
|
184319
|
+
checklistId?: Maybe<Scalars['ID']['output']>;
|
|
183279
184320
|
errors?: Maybe<Array<MutationError>>;
|
|
183280
184321
|
success: Scalars['Boolean']['output'];
|
|
183281
184322
|
};
|
|
@@ -183443,7 +184484,7 @@ export declare type TrelloInboxPrefs = TrelloBaseBoardPrefs & {
|
|
|
183443
184484
|
};
|
|
183444
184485
|
export declare type TrelloInboxQuickCaptureCard = {
|
|
183445
184486
|
__typename?: 'TrelloInboxQuickCaptureCard';
|
|
183446
|
-
card?: Maybe<
|
|
184487
|
+
card?: Maybe<TrelloBaseCard>;
|
|
183447
184488
|
dateCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
183448
184489
|
member?: Maybe<TrelloMember>;
|
|
183449
184490
|
notificationId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -183832,9 +184873,9 @@ export declare type TrelloMergeCardsPayload = Payload & {
|
|
|
183832
184873
|
export declare type TrelloMirrorCard = {
|
|
183833
184874
|
__typename?: 'TrelloMirrorCard';
|
|
183834
184875
|
id: Scalars['ID']['output'];
|
|
183835
|
-
mirrorCard?: Maybe<
|
|
184876
|
+
mirrorCard?: Maybe<TrelloBaseCard>;
|
|
183836
184877
|
sourceBoard?: Maybe<TrelloBoard>;
|
|
183837
|
-
sourceCard?: Maybe<
|
|
184878
|
+
sourceCard?: Maybe<TrelloBaseCard>;
|
|
183838
184879
|
};
|
|
183839
184880
|
export declare type TrelloMirrorCardConnection = {
|
|
183840
184881
|
__typename?: 'TrelloMirrorCardConnection';
|
|
@@ -183846,6 +184887,12 @@ export declare type TrelloMirrorCardEdge = {
|
|
|
183846
184887
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
183847
184888
|
node?: Maybe<TrelloMirrorCard>;
|
|
183848
184889
|
};
|
|
184890
|
+
export declare type TrelloModelMetadata = {
|
|
184891
|
+
__typename?: 'TrelloModelMetadata';
|
|
184892
|
+
aiUseCase: Scalars['String']['output'];
|
|
184893
|
+
model: Scalars['String']['output'];
|
|
184894
|
+
totalTokens: Scalars['Int']['output'];
|
|
184895
|
+
};
|
|
183849
184896
|
export declare type TrelloMoveCardAction = TrelloAction & TrelloCardActionData & {
|
|
183850
184897
|
__typename?: 'TrelloMoveCardAction';
|
|
183851
184898
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -183988,6 +185035,7 @@ export declare type TrelloMutationApi = {
|
|
|
183988
185035
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
183989
185036
|
updateBoardStarPosition?: Maybe<TrelloUpdateBoardStarPositionPayload>;
|
|
183990
185037
|
updateBoardViewerAIBrowserExtension?: Maybe<TrelloUpdateBoardViewerAiBrowserExtensionPayload>;
|
|
185038
|
+
updateBoardViewerAIConfluence?: Maybe<TrelloUpdateBoardViewerAiConfluencePayload>;
|
|
183991
185039
|
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
183992
185040
|
updateBoardViewerAIMSTeams?: Maybe<TrelloUpdateBoardViewerAimsTeamsPayload>;
|
|
183993
185041
|
updateBoardViewerAISlack?: Maybe<TrelloUpdateBoardViewerAiSlackPayload>;
|
|
@@ -184169,6 +185217,9 @@ export declare type TrelloMutationApiUpdateBoardStarPositionArgs = {
|
|
|
184169
185217
|
export declare type TrelloMutationApiUpdateBoardViewerAiBrowserExtensionArgs = {
|
|
184170
185218
|
input: TrelloUpdateBoardViewerAiBrowserExtensionInput;
|
|
184171
185219
|
};
|
|
185220
|
+
export declare type TrelloMutationApiUpdateBoardViewerAiConfluenceArgs = {
|
|
185221
|
+
input: TrelloUpdateBoardViewerAiConfluenceInput;
|
|
185222
|
+
};
|
|
184172
185223
|
export declare type TrelloMutationApiUpdateBoardViewerAiEmailArgs = {
|
|
184173
185224
|
input: TrelloUpdateBoardViewerAiEmailInput;
|
|
184174
185225
|
};
|
|
@@ -185449,7 +186500,7 @@ export declare type TrelloSubscriptionApi = {
|
|
|
185449
186500
|
onInboxUpdated?: Maybe<TrelloInboxUpdated>;
|
|
185450
186501
|
onMemberPlannerEventCardsUpdated?: Maybe<TrelloMemberPlannerEventCardsUpdated>;
|
|
185451
186502
|
onMemberUpdated?: Maybe<TrelloMemberUpdated>;
|
|
185452
|
-
onWorkOverviewDashboardJobUpdated?: Maybe<
|
|
186503
|
+
onWorkOverviewDashboardJobUpdated?: Maybe<TrelloWorkOverviewDashboardJobUpdated>;
|
|
185453
186504
|
onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
|
|
185454
186505
|
};
|
|
185455
186506
|
export declare type TrelloSubscriptionApiOnBoardCardSetUpdatedArgs = {
|
|
@@ -185648,6 +186699,16 @@ export declare type TrelloUpdateBoardViewerAiBrowserExtensionPayload = Payload &
|
|
|
185648
186699
|
success: Scalars['Boolean']['output'];
|
|
185649
186700
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
185650
186701
|
};
|
|
186702
|
+
export declare type TrelloUpdateBoardViewerAiConfluenceInput = {
|
|
186703
|
+
boardId: Scalars['ID']['input'];
|
|
186704
|
+
value: Scalars['Boolean']['input'];
|
|
186705
|
+
};
|
|
186706
|
+
export declare type TrelloUpdateBoardViewerAiConfluencePayload = Payload & {
|
|
186707
|
+
__typename?: 'TrelloUpdateBoardViewerAIConfluencePayload';
|
|
186708
|
+
errors?: Maybe<Array<MutationError>>;
|
|
186709
|
+
success: Scalars['Boolean']['output'];
|
|
186710
|
+
viewer?: Maybe<TrelloBoardViewer>;
|
|
186711
|
+
};
|
|
185651
186712
|
export declare type TrelloUpdateBoardViewerAiEmailInput = {
|
|
185652
186713
|
boardId: Scalars['ID']['input'];
|
|
185653
186714
|
value: Scalars['Boolean']['input'];
|
|
@@ -186014,6 +187075,13 @@ export declare enum TrelloWorkOverviewDashboardJobStatus {
|
|
|
186014
187075
|
Failed = "FAILED",
|
|
186015
187076
|
Pending = "PENDING"
|
|
186016
187077
|
}
|
|
187078
|
+
export declare type TrelloWorkOverviewDashboardJobUpdated = {
|
|
187079
|
+
__typename?: 'TrelloWorkOverviewDashboardJobUpdated';
|
|
187080
|
+
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
187081
|
+
board?: Maybe<TrelloBoardUpdated>;
|
|
187082
|
+
objectId: Scalars['ID']['output'];
|
|
187083
|
+
status?: Maybe<TrelloWorkOverviewDashboardJobStatus>;
|
|
187084
|
+
};
|
|
186017
187085
|
export declare type TrelloWorkOverviewDashboardPayload = Payload & {
|
|
186018
187086
|
__typename?: 'TrelloWorkOverviewDashboardPayload';
|
|
186019
187087
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -187153,6 +188221,20 @@ export declare enum UnifiedLearningCertificationType {
|
|
|
187153
188221
|
Certification = "CERTIFICATION",
|
|
187154
188222
|
Standing = "STANDING"
|
|
187155
188223
|
}
|
|
188224
|
+
export declare type UnifiedLearningMutation = {
|
|
188225
|
+
__typename?: 'UnifiedLearningMutation';
|
|
188226
|
+
notifyProfileChange?: Maybe<UnifiedLearningPayload>;
|
|
188227
|
+
};
|
|
188228
|
+
export declare type UnifiedLearningMutationNotifyProfileChangeArgs = {
|
|
188229
|
+
aaid: Scalars['String']['input'];
|
|
188230
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
188231
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
188232
|
+
};
|
|
188233
|
+
export declare type UnifiedLearningPayload = UnifiedPayload & {
|
|
188234
|
+
__typename?: 'UnifiedLearningPayload';
|
|
188235
|
+
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
188236
|
+
success: Scalars['Boolean']['output'];
|
|
188237
|
+
};
|
|
187156
188238
|
export declare type UnifiedLinkAuthenticationPayload = {
|
|
187157
188239
|
__typename?: 'UnifiedLinkAuthenticationPayload';
|
|
187158
188240
|
account1?: Maybe<UnifiedAccountDetails>;
|
|
@@ -187223,6 +188305,7 @@ export declare type UnifiedMutation = {
|
|
|
187223
188305
|
createUnifiedSystem?: Maybe<UnifiedProfilePayload>;
|
|
187224
188306
|
gamification?: Maybe<UnifiedGamificationMutation>;
|
|
187225
188307
|
gating?: Maybe<UnifiedGatingMutation>;
|
|
188308
|
+
learning?: Maybe<UnifiedLearningMutation>;
|
|
187226
188309
|
linking?: Maybe<UnifiedLinkingMutation>;
|
|
187227
188310
|
profile?: Maybe<UnifiedProfileMutation>;
|
|
187228
188311
|
updateUnifiedProfile?: Maybe<UnifiedProfilePayload>;
|
|
@@ -188190,6 +189273,17 @@ export declare type UpdatePolarisTimelineConfig = {
|
|
|
188190
189273
|
summaryCardField?: InputMaybe<Scalars['ID']['input']>;
|
|
188191
189274
|
todayMarker?: InputMaybe<PolarisTimelineTodayMarker>;
|
|
188192
189275
|
};
|
|
189276
|
+
export declare type UpdatePolarisTreeConfig = {
|
|
189277
|
+
defaultFields?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
189278
|
+
hierarchy?: InputMaybe<Array<UpdatePolarisTreeHierarchyItem>>;
|
|
189279
|
+
mode?: InputMaybe<PolarisTreeMode>;
|
|
189280
|
+
treeDirection?: InputMaybe<PolarisTreeDirection>;
|
|
189281
|
+
};
|
|
189282
|
+
export declare type UpdatePolarisTreeHierarchyItem = {
|
|
189283
|
+
filter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
189284
|
+
items?: InputMaybe<Array<Scalars['JSON']['input']>>;
|
|
189285
|
+
type?: InputMaybe<PolarisTreeHierarchyType>;
|
|
189286
|
+
};
|
|
188193
189287
|
export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
|
|
188194
189288
|
__typename?: 'UpdatePolarisViewArrangementInfoPayload';
|
|
188195
189289
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -188225,6 +189319,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
188225
189319
|
sortMode?: InputMaybe<PolarisViewSortMode>;
|
|
188226
189320
|
tableColumnSizes?: InputMaybe<Array<PolarisViewTableColumnSizeInput>>;
|
|
188227
189321
|
timelineConfig?: InputMaybe<UpdatePolarisTimelineConfig>;
|
|
189322
|
+
treeConfig?: InputMaybe<UpdatePolarisTreeConfig>;
|
|
188228
189323
|
userJql?: InputMaybe<Scalars['String']['input']>;
|
|
188229
189324
|
verticalGroupBy?: InputMaybe<Scalars['ID']['input']>;
|
|
188230
189325
|
verticalGroupValues?: InputMaybe<Array<PolarisGroupValueInput>>;
|