@forge/cli-shared 6.11.0-next.2 → 6.11.0-next.4
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 +14 -0
- package/out/graphql/graphql-types.d.ts +300 -1015
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +24 -138
- package/package.json +2 -2
|
@@ -831,6 +831,17 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
831
831
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
832
832
|
name?: Maybe<Scalars['String']['output']>;
|
|
833
833
|
};
|
|
834
|
+
export declare type AgentStudioAssistantCustomAction = AgentStudioCustomAction & Node & {
|
|
835
|
+
__typename?: 'AgentStudioAssistantCustomAction';
|
|
836
|
+
action?: Maybe<AgentStudioAction>;
|
|
837
|
+
creator?: Maybe<User>;
|
|
838
|
+
creatorId: Scalars['ID']['output'];
|
|
839
|
+
id: Scalars['ID']['output'];
|
|
840
|
+
instructions: Scalars['String']['output'];
|
|
841
|
+
invocationDescription: Scalars['String']['output'];
|
|
842
|
+
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
843
|
+
name: Scalars['String']['output'];
|
|
844
|
+
};
|
|
834
845
|
export declare type AgentStudioChannel = {
|
|
835
846
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
836
847
|
};
|
|
@@ -872,6 +883,30 @@ export declare type AgentStudioCreateAgentPayload = Payload & {
|
|
|
872
883
|
errors?: Maybe<Array<MutationError>>;
|
|
873
884
|
success: Scalars['Boolean']['output'];
|
|
874
885
|
};
|
|
886
|
+
export declare type AgentStudioCreateCustomActionInput = {
|
|
887
|
+
action?: InputMaybe<AgentStudioActionInput>;
|
|
888
|
+
containerId?: InputMaybe<Scalars['ID']['input']>;
|
|
889
|
+
instructions: Scalars['String']['input'];
|
|
890
|
+
invocationDescription: Scalars['String']['input'];
|
|
891
|
+
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
892
|
+
name: Scalars['String']['input'];
|
|
893
|
+
};
|
|
894
|
+
export declare type AgentStudioCreateCustomActionPayload = Payload & {
|
|
895
|
+
__typename?: 'AgentStudioCreateCustomActionPayload';
|
|
896
|
+
customAction?: Maybe<AgentStudioCustomAction>;
|
|
897
|
+
errors?: Maybe<Array<MutationError>>;
|
|
898
|
+
success: Scalars['Boolean']['output'];
|
|
899
|
+
};
|
|
900
|
+
export declare type AgentStudioCustomAction = {
|
|
901
|
+
action?: Maybe<AgentStudioAction>;
|
|
902
|
+
creatorId: Scalars['ID']['output'];
|
|
903
|
+
id: Scalars['ID']['output'];
|
|
904
|
+
instructions: Scalars['String']['output'];
|
|
905
|
+
invocationDescription: Scalars['String']['output'];
|
|
906
|
+
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
907
|
+
name: Scalars['String']['output'];
|
|
908
|
+
};
|
|
909
|
+
export declare type AgentStudioCustomActionResult = AgentStudioAssistantCustomAction | QueryError;
|
|
875
910
|
export declare type AgentStudioEmailChannel = AgentStudioChannel & {
|
|
876
911
|
__typename?: 'AgentStudioEmailChannel';
|
|
877
912
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -3083,6 +3118,24 @@ export declare type Breadcrumb = {
|
|
|
3083
3118
|
separator?: Maybe<Scalars['String']['output']>;
|
|
3084
3119
|
url?: Maybe<Scalars['String']['output']>;
|
|
3085
3120
|
};
|
|
3121
|
+
export declare type Build = {
|
|
3122
|
+
__typename?: 'Build';
|
|
3123
|
+
appId: Scalars['ID']['output'];
|
|
3124
|
+
createdAt: Scalars['String']['output'];
|
|
3125
|
+
tag: Scalars['String']['output'];
|
|
3126
|
+
};
|
|
3127
|
+
export declare type BuildConnection = {
|
|
3128
|
+
__typename?: 'BuildConnection';
|
|
3129
|
+
edges?: Maybe<Array<Maybe<BuildEdge>>>;
|
|
3130
|
+
nodes?: Maybe<Array<Maybe<Build>>>;
|
|
3131
|
+
pageInfo?: Maybe<PageInfo>;
|
|
3132
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
3133
|
+
};
|
|
3134
|
+
export declare type BuildEdge = {
|
|
3135
|
+
__typename?: 'BuildEdge';
|
|
3136
|
+
cursor: Scalars['String']['output'];
|
|
3137
|
+
node?: Maybe<Build>;
|
|
3138
|
+
};
|
|
3086
3139
|
export declare enum BuiltinPolarisIdeaField {
|
|
3087
3140
|
Archived = "ARCHIVED",
|
|
3088
3141
|
ArchivedBy = "ARCHIVED_BY",
|
|
@@ -4580,6 +4633,15 @@ export declare type ChannelPlatformSampleQueueConfig = {
|
|
|
4580
4633
|
maxItems?: Maybe<Scalars['Int']['output']>;
|
|
4581
4634
|
queueId?: Maybe<Scalars['ID']['output']>;
|
|
4582
4635
|
};
|
|
4636
|
+
export declare type ChannelPlatformSubmitRequestInput = {
|
|
4637
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4638
|
+
payload?: InputMaybe<Scalars['JSON']['input']>;
|
|
4639
|
+
};
|
|
4640
|
+
export declare type ChannelPlatformSubmitRequestResponse = ChannelPlatformGetChannelTokenResponse | ChannelPlatformSubmitTicketResponse;
|
|
4641
|
+
export declare type ChannelPlatformSubmitTicketResponse = {
|
|
4642
|
+
__typename?: 'ChannelPlatformSubmitTicketResponse';
|
|
4643
|
+
contextId?: Maybe<Scalars['String']['output']>;
|
|
4644
|
+
};
|
|
4583
4645
|
export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
4584
4646
|
cloudId: Scalars['ID']['input'];
|
|
4585
4647
|
oauthClientId: Scalars['ID']['input'];
|
|
@@ -5312,6 +5374,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
5312
5374
|
removeComponentLabels?: Maybe<RemoveCompassComponentLabelsPayload>;
|
|
5313
5375
|
removeScorecardFromComponent?: Maybe<RemoveCompassScorecardFromComponentPayload>;
|
|
5314
5376
|
removeTeamLabels?: Maybe<CompassRemoveTeamLabelsPayload>;
|
|
5377
|
+
resyncRepoFiles?: Maybe<CompassResyncRepoFilesPayload>;
|
|
5315
5378
|
revokeJqlMetricSourceUser?: Maybe<CompassRevokeJqlMetricSourceUserPayload>;
|
|
5316
5379
|
setEntityProperty?: Maybe<CompassSetEntityPropertyPayload>;
|
|
5317
5380
|
startChat?: Maybe<CompassAssistantConversation>;
|
|
@@ -5533,6 +5596,9 @@ export declare type CompassCatalogMutationApiRemoveScorecardFromComponentArgs =
|
|
|
5533
5596
|
export declare type CompassCatalogMutationApiRemoveTeamLabelsArgs = {
|
|
5534
5597
|
input: CompassRemoveTeamLabelsInput;
|
|
5535
5598
|
};
|
|
5599
|
+
export declare type CompassCatalogMutationApiResyncRepoFilesArgs = {
|
|
5600
|
+
input?: InputMaybe<CompassResyncRepoFilesInput>;
|
|
5601
|
+
};
|
|
5536
5602
|
export declare type CompassCatalogMutationApiRevokeJqlMetricSourceUserArgs = {
|
|
5537
5603
|
input: CompassRevokeJqlMetricSourceUserInput;
|
|
5538
5604
|
};
|
|
@@ -8399,6 +8465,27 @@ export declare type CompassRepositoryValue = {
|
|
|
8399
8465
|
export declare type CompassRepositoryValueInput = {
|
|
8400
8466
|
exists: Scalars['Boolean']['input'];
|
|
8401
8467
|
};
|
|
8468
|
+
export declare type CompassResyncRepoFileInput = {
|
|
8469
|
+
action: Scalars['String']['input'];
|
|
8470
|
+
currentFilePath: CompassResyncRepoFilePaths;
|
|
8471
|
+
fileSize?: InputMaybe<Scalars['Int']['input']>;
|
|
8472
|
+
oldFilePath?: InputMaybe<CompassResyncRepoFilePaths>;
|
|
8473
|
+
};
|
|
8474
|
+
export declare type CompassResyncRepoFilePaths = {
|
|
8475
|
+
fullFilePath: Scalars['String']['input'];
|
|
8476
|
+
localFilePath: Scalars['String']['input'];
|
|
8477
|
+
};
|
|
8478
|
+
export declare type CompassResyncRepoFilesInput = {
|
|
8479
|
+
baseRepoUrl: Scalars['String']['input'];
|
|
8480
|
+
changedFiles: Array<CompassResyncRepoFileInput>;
|
|
8481
|
+
cloudId: Scalars['ID']['input'];
|
|
8482
|
+
repoId: Scalars['String']['input'];
|
|
8483
|
+
};
|
|
8484
|
+
export declare type CompassResyncRepoFilesPayload = {
|
|
8485
|
+
__typename?: 'CompassResyncRepoFilesPayload';
|
|
8486
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8487
|
+
success: Scalars['Boolean']['output'];
|
|
8488
|
+
};
|
|
8402
8489
|
export declare type CompassRevokeJqlMetricSourceUserInput = {
|
|
8403
8490
|
metricSourceId: Scalars['ID']['input'];
|
|
8404
8491
|
};
|
|
@@ -17277,544 +17364,6 @@ export declare enum ConfluenceUserType {
|
|
|
17277
17364
|
Anonymous = "ANONYMOUS",
|
|
17278
17365
|
Known = "KNOWN"
|
|
17279
17366
|
}
|
|
17280
|
-
export declare type ConfluenceV2Attachment = Node & {
|
|
17281
|
-
__typename?: 'ConfluenceV2Attachment';
|
|
17282
|
-
blogPostId?: Maybe<Scalars['ID']['output']>;
|
|
17283
|
-
comment?: Maybe<Scalars['String']['output']>;
|
|
17284
|
-
customContentId?: Maybe<Scalars['ID']['output']>;
|
|
17285
|
-
downloadLink?: Maybe<Scalars['String']['output']>;
|
|
17286
|
-
fileId?: Maybe<Scalars['String']['output']>;
|
|
17287
|
-
fileSize?: Maybe<Scalars['Int']['output']>;
|
|
17288
|
-
id: Scalars['ID']['output'];
|
|
17289
|
-
mediaType?: Maybe<Scalars['String']['output']>;
|
|
17290
|
-
mediaTypeDescription?: Maybe<Scalars['String']['output']>;
|
|
17291
|
-
pageId?: Maybe<Scalars['ID']['output']>;
|
|
17292
|
-
status: ConfluenceV2AttachmentStatus;
|
|
17293
|
-
title: Scalars['String']['output'];
|
|
17294
|
-
version?: Maybe<ConfluenceV2Version>;
|
|
17295
|
-
webuiLink?: Maybe<Scalars['String']['output']>;
|
|
17296
|
-
};
|
|
17297
|
-
export declare enum ConfluenceV2AttachmentStatus {
|
|
17298
|
-
Any = "any",
|
|
17299
|
-
Archived = "archived",
|
|
17300
|
-
Current = "current",
|
|
17301
|
-
Deleted = "deleted",
|
|
17302
|
-
Draft = "draft",
|
|
17303
|
-
Historical = "historical",
|
|
17304
|
-
Trashed = "trashed"
|
|
17305
|
-
}
|
|
17306
|
-
export declare type ConfluenceV2BlogPost = Node & {
|
|
17307
|
-
__typename?: 'ConfluenceV2BlogPost';
|
|
17308
|
-
authorId?: Maybe<Scalars['String']['output']>;
|
|
17309
|
-
body?: Maybe<ConfluenceV2Body>;
|
|
17310
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
17311
|
-
id: Scalars['ID']['output'];
|
|
17312
|
-
internalProperties?: Maybe<ConfluenceV2InternalProperties>;
|
|
17313
|
-
operations?: Maybe<ConfluenceV2Operations>;
|
|
17314
|
-
space?: Maybe<ConfluenceV2Space>;
|
|
17315
|
-
spaceId?: Maybe<Scalars['ID']['output']>;
|
|
17316
|
-
spaceLookAndFeel?: Maybe<ConfluenceV2LookAndFeel>;
|
|
17317
|
-
spaceSettings?: Maybe<ConfluenceV2SpaceSettings>;
|
|
17318
|
-
spaceTheme?: Maybe<ConfluenceV2Theme>;
|
|
17319
|
-
status: ConfluenceV2BlogStatus;
|
|
17320
|
-
title: Scalars['String']['output'];
|
|
17321
|
-
version?: Maybe<ConfluenceV2Version>;
|
|
17322
|
-
};
|
|
17323
|
-
export declare type ConfluenceV2BlogPostConnection = {
|
|
17324
|
-
__typename?: 'ConfluenceV2BlogPostConnection';
|
|
17325
|
-
edges?: Maybe<Array<Maybe<ConfluenceV2BlogPostEdge>>>;
|
|
17326
|
-
nodes?: Maybe<Array<Maybe<ConfluenceV2BlogPost>>>;
|
|
17327
|
-
pageInfo: PageInfo;
|
|
17328
|
-
};
|
|
17329
|
-
export declare type ConfluenceV2BlogPostEdge = {
|
|
17330
|
-
__typename?: 'ConfluenceV2BlogPostEdge';
|
|
17331
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
17332
|
-
node: ConfluenceV2BlogPost;
|
|
17333
|
-
};
|
|
17334
|
-
export declare enum ConfluenceV2BlogStatus {
|
|
17335
|
-
Current = "current",
|
|
17336
|
-
Deleted = "deleted",
|
|
17337
|
-
Draft = "draft",
|
|
17338
|
-
Historical = "historical",
|
|
17339
|
-
Trashed = "trashed"
|
|
17340
|
-
}
|
|
17341
|
-
export declare type ConfluenceV2Body = {
|
|
17342
|
-
__typename?: 'ConfluenceV2Body';
|
|
17343
|
-
atlasDocFormat?: Maybe<ConfluenceV2FormattedBody>;
|
|
17344
|
-
storage?: Maybe<ConfluenceV2FormattedBody>;
|
|
17345
|
-
};
|
|
17346
|
-
export declare enum ConfluenceV2BodyFormat {
|
|
17347
|
-
AtlasDocFormat = "atlas_doc_format",
|
|
17348
|
-
Storage = "storage"
|
|
17349
|
-
}
|
|
17350
|
-
export declare type ConfluenceV2BordersAndDividersLookAndFeel = {
|
|
17351
|
-
__typename?: 'ConfluenceV2BordersAndDividersLookAndFeel';
|
|
17352
|
-
color?: Maybe<Scalars['String']['output']>;
|
|
17353
|
-
};
|
|
17354
|
-
export declare enum ConfluenceV2BulkBlogPostStatus {
|
|
17355
|
-
Current = "current",
|
|
17356
|
-
Deleted = "deleted",
|
|
17357
|
-
Trashed = "trashed"
|
|
17358
|
-
}
|
|
17359
|
-
export declare enum ConfluenceV2BulkPageStatus {
|
|
17360
|
-
Archived = "archived",
|
|
17361
|
-
Current = "current",
|
|
17362
|
-
Deleted = "deleted",
|
|
17363
|
-
Trashed = "trashed"
|
|
17364
|
-
}
|
|
17365
|
-
export declare type ConfluenceV2ButtonLookAndFeel = {
|
|
17366
|
-
__typename?: 'ConfluenceV2ButtonLookAndFeel';
|
|
17367
|
-
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
17368
|
-
color?: Maybe<Scalars['String']['output']>;
|
|
17369
|
-
};
|
|
17370
|
-
export declare type ConfluenceV2CommentInternalProperties = {
|
|
17371
|
-
__typename?: 'ConfluenceV2CommentInternalProperties';
|
|
17372
|
-
commentSource?: Maybe<Scalars['String']['output']>;
|
|
17373
|
-
};
|
|
17374
|
-
export declare type ConfluenceV2CommentLinks = {
|
|
17375
|
-
__typename?: 'ConfluenceV2CommentLinks';
|
|
17376
|
-
editui?: Maybe<Scalars['String']['output']>;
|
|
17377
|
-
tinyui?: Maybe<Scalars['String']['output']>;
|
|
17378
|
-
webui?: Maybe<Scalars['String']['output']>;
|
|
17379
|
-
};
|
|
17380
|
-
export declare type ConfluenceV2ContainerLookAndFeel = {
|
|
17381
|
-
__typename?: 'ConfluenceV2ContainerLookAndFeel';
|
|
17382
|
-
background?: Maybe<Scalars['String']['output']>;
|
|
17383
|
-
backgroundAttachment?: Maybe<Scalars['String']['output']>;
|
|
17384
|
-
backgroundBlendMode?: Maybe<Scalars['String']['output']>;
|
|
17385
|
-
backgroundClip?: Maybe<Scalars['String']['output']>;
|
|
17386
|
-
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
17387
|
-
backgroundImage?: Maybe<Scalars['String']['output']>;
|
|
17388
|
-
backgroundOrigin?: Maybe<Scalars['String']['output']>;
|
|
17389
|
-
backgroundPosition?: Maybe<Scalars['String']['output']>;
|
|
17390
|
-
backgroundRepeat?: Maybe<Scalars['String']['output']>;
|
|
17391
|
-
backgroundSize?: Maybe<Scalars['String']['output']>;
|
|
17392
|
-
borderRadius?: Maybe<Scalars['String']['output']>;
|
|
17393
|
-
padding?: Maybe<Scalars['String']['output']>;
|
|
17394
|
-
};
|
|
17395
|
-
export declare type ConfluenceV2ContentLookAndFeel = {
|
|
17396
|
-
__typename?: 'ConfluenceV2ContentLookAndFeel';
|
|
17397
|
-
body?: Maybe<ConfluenceV2ContainerLookAndFeel>;
|
|
17398
|
-
container?: Maybe<ConfluenceV2ContainerLookAndFeel>;
|
|
17399
|
-
header?: Maybe<ConfluenceV2ContainerLookAndFeel>;
|
|
17400
|
-
screen?: Maybe<ConfluenceV2ScreenLookAndFeel>;
|
|
17401
|
-
};
|
|
17402
|
-
export declare type ConfluenceV2ContentProperty = {
|
|
17403
|
-
__typename?: 'ConfluenceV2ContentProperty';
|
|
17404
|
-
key: Scalars['String']['output'];
|
|
17405
|
-
value: Scalars['JSON']['output'];
|
|
17406
|
-
version: ConfluenceV2Version;
|
|
17407
|
-
};
|
|
17408
|
-
export declare type ConfluenceV2CreatePageInput = {
|
|
17409
|
-
body?: InputMaybe<ConfluenceV2FormattedBodyInput>;
|
|
17410
|
-
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
17411
|
-
spaceId: Scalars['ID']['input'];
|
|
17412
|
-
status?: InputMaybe<ConfluenceV2PageCreateStatus>;
|
|
17413
|
-
title?: InputMaybe<Scalars['String']['input']>;
|
|
17414
|
-
};
|
|
17415
|
-
export declare type ConfluenceV2CreatePagePayload = {
|
|
17416
|
-
__typename?: 'ConfluenceV2CreatePagePayload';
|
|
17417
|
-
pageV2?: Maybe<ConfluenceV2Page>;
|
|
17418
|
-
};
|
|
17419
|
-
export declare type ConfluenceV2FooterComment = Node & {
|
|
17420
|
-
__typename?: 'ConfluenceV2FooterComment';
|
|
17421
|
-
blogPostId?: Maybe<Scalars['ID']['output']>;
|
|
17422
|
-
body: ConfluenceV2Body;
|
|
17423
|
-
id: Scalars['ID']['output'];
|
|
17424
|
-
internalProperties?: Maybe<ConfluenceV2CommentInternalProperties>;
|
|
17425
|
-
links?: Maybe<ConfluenceV2CommentLinks>;
|
|
17426
|
-
pageId?: Maybe<Scalars['ID']['output']>;
|
|
17427
|
-
parentCommentId?: Maybe<Scalars['ID']['output']>;
|
|
17428
|
-
status: ConfluenceV2FooterCommentStatus;
|
|
17429
|
-
title: Scalars['String']['output'];
|
|
17430
|
-
version: ConfluenceV2Version;
|
|
17431
|
-
};
|
|
17432
|
-
export declare type ConfluenceV2FooterCommentConnection = {
|
|
17433
|
-
__typename?: 'ConfluenceV2FooterCommentConnection';
|
|
17434
|
-
edges?: Maybe<Array<Maybe<ConfluenceV2FooterCommentEdge>>>;
|
|
17435
|
-
nodes?: Maybe<Array<Maybe<ConfluenceV2FooterComment>>>;
|
|
17436
|
-
pageInfo: PageInfo;
|
|
17437
|
-
};
|
|
17438
|
-
export declare type ConfluenceV2FooterCommentEdge = {
|
|
17439
|
-
__typename?: 'ConfluenceV2FooterCommentEdge';
|
|
17440
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
17441
|
-
node: ConfluenceV2FooterComment;
|
|
17442
|
-
};
|
|
17443
|
-
export declare enum ConfluenceV2FooterCommentStatus {
|
|
17444
|
-
Archived = "archived",
|
|
17445
|
-
Current = "current",
|
|
17446
|
-
Deleted = "deleted",
|
|
17447
|
-
Draft = "draft",
|
|
17448
|
-
Historical = "historical",
|
|
17449
|
-
Trashed = "trashed"
|
|
17450
|
-
}
|
|
17451
|
-
export declare type ConfluenceV2FormattedBody = {
|
|
17452
|
-
__typename?: 'ConfluenceV2FormattedBody';
|
|
17453
|
-
representation: ConfluenceV2BodyFormat;
|
|
17454
|
-
value: Scalars['String']['output'];
|
|
17455
|
-
};
|
|
17456
|
-
export declare type ConfluenceV2FormattedBodyInput = {
|
|
17457
|
-
representation: ConfluenceV2BodyFormat;
|
|
17458
|
-
value: Scalars['String']['input'];
|
|
17459
|
-
};
|
|
17460
|
-
export declare type ConfluenceV2FormattedPage = {
|
|
17461
|
-
__typename?: 'ConfluenceV2FormattedPage';
|
|
17462
|
-
representation: ConfluenceV2SpaceDescriptionEnum;
|
|
17463
|
-
value: Scalars['String']['output'];
|
|
17464
|
-
};
|
|
17465
|
-
export declare type ConfluenceV2HeaderLookAndFeel = {
|
|
17466
|
-
__typename?: 'ConfluenceV2HeaderLookAndFeel';
|
|
17467
|
-
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
17468
|
-
button?: Maybe<ConfluenceV2ButtonLookAndFeel>;
|
|
17469
|
-
primaryNavigation?: Maybe<ConfluenceV2NavigationLookAndFeel>;
|
|
17470
|
-
search?: Maybe<ConfluenceV2SearchFieldLookAndFeel>;
|
|
17471
|
-
secondaryNavigation?: Maybe<ConfluenceV2NavigationLookAndFeel>;
|
|
17472
|
-
};
|
|
17473
|
-
export declare type ConfluenceV2InlineComment = Node & {
|
|
17474
|
-
__typename?: 'ConfluenceV2InlineComment';
|
|
17475
|
-
body: ConfluenceV2Body;
|
|
17476
|
-
id: Scalars['ID']['output'];
|
|
17477
|
-
internalProperties?: Maybe<ConfluenceV2CommentInternalProperties>;
|
|
17478
|
-
links?: Maybe<ConfluenceV2CommentLinks>;
|
|
17479
|
-
parentCommentId?: Maybe<Scalars['ID']['output']>;
|
|
17480
|
-
properties?: Maybe<ConfluenceV2InlineCommentProperties>;
|
|
17481
|
-
resolutionLastModifiedAt?: Maybe<Scalars['String']['output']>;
|
|
17482
|
-
resolutionLastModifierId?: Maybe<Scalars['String']['output']>;
|
|
17483
|
-
resolutionStatus?: Maybe<ConfluenceV2InlineCommentResolutionStatus>;
|
|
17484
|
-
status: ConfluenceV2InlineCommentStatus;
|
|
17485
|
-
title: Scalars['String']['output'];
|
|
17486
|
-
version: ConfluenceV2Version;
|
|
17487
|
-
};
|
|
17488
|
-
export declare type ConfluenceV2InlineCommentConnection = {
|
|
17489
|
-
__typename?: 'ConfluenceV2InlineCommentConnection';
|
|
17490
|
-
edges?: Maybe<Array<Maybe<ConfluenceV2InlineCommentEdge>>>;
|
|
17491
|
-
nodes?: Maybe<Array<Maybe<ConfluenceV2InlineComment>>>;
|
|
17492
|
-
pageInfo: PageInfo;
|
|
17493
|
-
};
|
|
17494
|
-
export declare type ConfluenceV2InlineCommentEdge = {
|
|
17495
|
-
__typename?: 'ConfluenceV2InlineCommentEdge';
|
|
17496
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
17497
|
-
node: ConfluenceV2InlineComment;
|
|
17498
|
-
};
|
|
17499
|
-
export declare type ConfluenceV2InlineCommentProperties = {
|
|
17500
|
-
__typename?: 'ConfluenceV2InlineCommentProperties';
|
|
17501
|
-
inlineMarkerRef: Scalars['String']['output'];
|
|
17502
|
-
inlineOriginalSelection: Scalars['String']['output'];
|
|
17503
|
-
};
|
|
17504
|
-
export declare enum ConfluenceV2InlineCommentResolutionStatus {
|
|
17505
|
-
Dangling = "dangling",
|
|
17506
|
-
Open = "open",
|
|
17507
|
-
Reopened = "reopened",
|
|
17508
|
-
Resolved = "resolved"
|
|
17509
|
-
}
|
|
17510
|
-
export declare enum ConfluenceV2InlineCommentStatus {
|
|
17511
|
-
Archived = "archived",
|
|
17512
|
-
Current = "current",
|
|
17513
|
-
Deleted = "deleted",
|
|
17514
|
-
Draft = "draft",
|
|
17515
|
-
Historical = "historical",
|
|
17516
|
-
Trashed = "trashed"
|
|
17517
|
-
}
|
|
17518
|
-
export declare type ConfluenceV2InternalProperties = {
|
|
17519
|
-
__typename?: 'ConfluenceV2InternalProperties';
|
|
17520
|
-
confRev?: Maybe<Scalars['String']['output']>;
|
|
17521
|
-
subType?: Maybe<Scalars['String']['output']>;
|
|
17522
|
-
};
|
|
17523
|
-
export declare type ConfluenceV2LayerScreenLookAndFeel = {
|
|
17524
|
-
__typename?: 'ConfluenceV2LayerScreenLookAndFeel';
|
|
17525
|
-
background?: Maybe<Scalars['String']['output']>;
|
|
17526
|
-
backgroundAttachment?: Maybe<Scalars['String']['output']>;
|
|
17527
|
-
backgroundBlendMode?: Maybe<Scalars['String']['output']>;
|
|
17528
|
-
backgroundClip?: Maybe<Scalars['String']['output']>;
|
|
17529
|
-
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
17530
|
-
backgroundImage?: Maybe<Scalars['String']['output']>;
|
|
17531
|
-
backgroundOrigin?: Maybe<Scalars['String']['output']>;
|
|
17532
|
-
backgroundPosition?: Maybe<Scalars['String']['output']>;
|
|
17533
|
-
backgroundRepeat?: Maybe<Scalars['String']['output']>;
|
|
17534
|
-
backgroundSize?: Maybe<Scalars['String']['output']>;
|
|
17535
|
-
height?: Maybe<Scalars['String']['output']>;
|
|
17536
|
-
width?: Maybe<Scalars['String']['output']>;
|
|
17537
|
-
};
|
|
17538
|
-
export declare type ConfluenceV2LookAndFeel = {
|
|
17539
|
-
__typename?: 'ConfluenceV2LookAndFeel';
|
|
17540
|
-
bordersAndDividers?: Maybe<ConfluenceV2BordersAndDividersLookAndFeel>;
|
|
17541
|
-
content?: Maybe<ConfluenceV2ContentLookAndFeel>;
|
|
17542
|
-
header?: Maybe<ConfluenceV2HeaderLookAndFeel>;
|
|
17543
|
-
horizontalHeader?: Maybe<ConfluenceV2HeaderLookAndFeel>;
|
|
17544
|
-
menus?: Maybe<ConfluenceV2MenusLookAndFeel>;
|
|
17545
|
-
};
|
|
17546
|
-
export declare type ConfluenceV2Macro = {
|
|
17547
|
-
__typename?: 'ConfluenceV2Macro';
|
|
17548
|
-
adf: Scalars['String']['output'];
|
|
17549
|
-
contentId: Scalars['ID']['output'];
|
|
17550
|
-
macroId: Scalars['ID']['output'];
|
|
17551
|
-
};
|
|
17552
|
-
export declare type ConfluenceV2MacroConnection = {
|
|
17553
|
-
__typename?: 'ConfluenceV2MacroConnection';
|
|
17554
|
-
edges?: Maybe<Array<Maybe<ConfluenceV2MacroEdge>>>;
|
|
17555
|
-
nodes?: Maybe<Array<Maybe<ConfluenceV2Macro>>>;
|
|
17556
|
-
pageInfo: PageInfo;
|
|
17557
|
-
};
|
|
17558
|
-
export declare type ConfluenceV2MacroEdge = {
|
|
17559
|
-
__typename?: 'ConfluenceV2MacroEdge';
|
|
17560
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
17561
|
-
node: ConfluenceV2Macro;
|
|
17562
|
-
};
|
|
17563
|
-
export declare type ConfluenceV2MenuHoverOrFocus = {
|
|
17564
|
-
__typename?: 'ConfluenceV2MenuHoverOrFocus';
|
|
17565
|
-
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
17566
|
-
};
|
|
17567
|
-
export declare type ConfluenceV2MenusLookAndFeel = {
|
|
17568
|
-
__typename?: 'ConfluenceV2MenusLookAndFeel';
|
|
17569
|
-
color?: Maybe<Scalars['String']['output']>;
|
|
17570
|
-
hoverOrFocus?: Maybe<ConfluenceV2MenuHoverOrFocus>;
|
|
17571
|
-
};
|
|
17572
|
-
export declare type ConfluenceV2NavigationHoverOrFocus = {
|
|
17573
|
-
__typename?: 'ConfluenceV2NavigationHoverOrFocus';
|
|
17574
|
-
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
17575
|
-
color?: Maybe<Scalars['String']['output']>;
|
|
17576
|
-
};
|
|
17577
|
-
export declare type ConfluenceV2NavigationLookAndFeel = {
|
|
17578
|
-
__typename?: 'ConfluenceV2NavigationLookAndFeel';
|
|
17579
|
-
color?: Maybe<Scalars['String']['output']>;
|
|
17580
|
-
highlightColor?: Maybe<Scalars['String']['output']>;
|
|
17581
|
-
hoverOrFocus?: Maybe<ConfluenceV2NavigationHoverOrFocus>;
|
|
17582
|
-
};
|
|
17583
|
-
export declare type ConfluenceV2Operation = {
|
|
17584
|
-
__typename?: 'ConfluenceV2Operation';
|
|
17585
|
-
operation: Scalars['String']['output'];
|
|
17586
|
-
targetType: Scalars['String']['output'];
|
|
17587
|
-
};
|
|
17588
|
-
export declare type ConfluenceV2Operations = {
|
|
17589
|
-
__typename?: 'ConfluenceV2Operations';
|
|
17590
|
-
results?: Maybe<Array<Maybe<ConfluenceV2Operation>>>;
|
|
17591
|
-
};
|
|
17592
|
-
export declare type ConfluenceV2Organization = {
|
|
17593
|
-
__typename?: 'ConfluenceV2Organization';
|
|
17594
|
-
orgId?: Maybe<Scalars['String']['output']>;
|
|
17595
|
-
};
|
|
17596
|
-
export declare type ConfluenceV2Page = Node & {
|
|
17597
|
-
__typename?: 'ConfluenceV2Page';
|
|
17598
|
-
authorId?: Maybe<Scalars['String']['output']>;
|
|
17599
|
-
body?: Maybe<ConfluenceV2Body>;
|
|
17600
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
17601
|
-
id: Scalars['ID']['output'];
|
|
17602
|
-
internalProperties?: Maybe<ConfluenceV2InternalProperties>;
|
|
17603
|
-
isFavoritedByCurrentUser?: Maybe<Scalars['Boolean']['output']>;
|
|
17604
|
-
lastOwnerId?: Maybe<Scalars['String']['output']>;
|
|
17605
|
-
operations?: Maybe<ConfluenceV2Operations>;
|
|
17606
|
-
ownerId?: Maybe<Scalars['String']['output']>;
|
|
17607
|
-
parentId?: Maybe<Scalars['ID']['output']>;
|
|
17608
|
-
parentPage?: Maybe<ConfluenceV2Page>;
|
|
17609
|
-
parentType?: Maybe<ConfluenceV2ParentContent>;
|
|
17610
|
-
position?: Maybe<Scalars['Int']['output']>;
|
|
17611
|
-
space?: Maybe<ConfluenceV2Space>;
|
|
17612
|
-
spaceId?: Maybe<Scalars['ID']['output']>;
|
|
17613
|
-
spaceLookAndFeel?: Maybe<ConfluenceV2LookAndFeel>;
|
|
17614
|
-
spaceSettings?: Maybe<ConfluenceV2SpaceSettings>;
|
|
17615
|
-
spaceTheme?: Maybe<ConfluenceV2Theme>;
|
|
17616
|
-
status: ConfluenceV2PageStatus;
|
|
17617
|
-
title: Scalars['String']['output'];
|
|
17618
|
-
version?: Maybe<ConfluenceV2Version>;
|
|
17619
|
-
};
|
|
17620
|
-
export declare type ConfluenceV2PageBodyArgs = {
|
|
17621
|
-
format?: InputMaybe<ConfluenceV2BodyFormat>;
|
|
17622
|
-
};
|
|
17623
|
-
export declare type ConfluenceV2PageConnection = {
|
|
17624
|
-
__typename?: 'ConfluenceV2PageConnection';
|
|
17625
|
-
edges?: Maybe<Array<Maybe<ConfluenceV2PageEdge>>>;
|
|
17626
|
-
nodes?: Maybe<Array<Maybe<ConfluenceV2Page>>>;
|
|
17627
|
-
pageInfo: PageInfo;
|
|
17628
|
-
};
|
|
17629
|
-
export declare enum ConfluenceV2PageCreateStatus {
|
|
17630
|
-
Current = "current",
|
|
17631
|
-
Draft = "draft"
|
|
17632
|
-
}
|
|
17633
|
-
export declare type ConfluenceV2PageEdge = {
|
|
17634
|
-
__typename?: 'ConfluenceV2PageEdge';
|
|
17635
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
17636
|
-
node: ConfluenceV2Page;
|
|
17637
|
-
};
|
|
17638
|
-
export declare enum ConfluenceV2PageStatus {
|
|
17639
|
-
Archived = "archived",
|
|
17640
|
-
Current = "current",
|
|
17641
|
-
Deleted = "deleted",
|
|
17642
|
-
Draft = "draft",
|
|
17643
|
-
Historical = "historical",
|
|
17644
|
-
Trashed = "trashed"
|
|
17645
|
-
}
|
|
17646
|
-
export declare enum ConfluenceV2PageUpdateStatus {
|
|
17647
|
-
Archived = "archived",
|
|
17648
|
-
Current = "current",
|
|
17649
|
-
Deleted = "deleted",
|
|
17650
|
-
Draft = "draft"
|
|
17651
|
-
}
|
|
17652
|
-
export declare enum ConfluenceV2ParentContent {
|
|
17653
|
-
Page = "page"
|
|
17654
|
-
}
|
|
17655
|
-
export declare type ConfluenceV2RenderedMacro = {
|
|
17656
|
-
__typename?: 'ConfluenceV2RenderedMacro';
|
|
17657
|
-
value?: Maybe<Scalars['String']['output']>;
|
|
17658
|
-
};
|
|
17659
|
-
export declare type ConfluenceV2ScreenLookAndFeel = {
|
|
17660
|
-
__typename?: 'ConfluenceV2ScreenLookAndFeel';
|
|
17661
|
-
background?: Maybe<Scalars['String']['output']>;
|
|
17662
|
-
backgroundAttachment?: Maybe<Scalars['String']['output']>;
|
|
17663
|
-
backgroundBlendMode?: Maybe<Scalars['String']['output']>;
|
|
17664
|
-
backgroundClip?: Maybe<Scalars['String']['output']>;
|
|
17665
|
-
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
17666
|
-
backgroundImage?: Maybe<Scalars['String']['output']>;
|
|
17667
|
-
backgroundOrigin?: Maybe<Scalars['String']['output']>;
|
|
17668
|
-
backgroundPosition?: Maybe<Scalars['String']['output']>;
|
|
17669
|
-
backgroundRepeat?: Maybe<Scalars['String']['output']>;
|
|
17670
|
-
backgroundSize?: Maybe<Scalars['String']['output']>;
|
|
17671
|
-
gutterBottom?: Maybe<Scalars['String']['output']>;
|
|
17672
|
-
gutterLeft?: Maybe<Scalars['String']['output']>;
|
|
17673
|
-
gutterRight?: Maybe<Scalars['String']['output']>;
|
|
17674
|
-
gutterTop?: Maybe<Scalars['String']['output']>;
|
|
17675
|
-
layer?: Maybe<ConfluenceV2LayerScreenLookAndFeel>;
|
|
17676
|
-
};
|
|
17677
|
-
export declare type ConfluenceV2SearchFieldLookAndFeel = {
|
|
17678
|
-
__typename?: 'ConfluenceV2SearchFieldLookAndFeel';
|
|
17679
|
-
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
17680
|
-
color?: Maybe<Scalars['String']['output']>;
|
|
17681
|
-
};
|
|
17682
|
-
export declare type ConfluenceV2Space = Node & {
|
|
17683
|
-
__typename?: 'ConfluenceV2Space';
|
|
17684
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
17685
|
-
description?: Maybe<ConfluenceV2SpaceDescription>;
|
|
17686
|
-
homepage?: Maybe<ConfluenceV2Page>;
|
|
17687
|
-
homepageId: Scalars['ID']['output'];
|
|
17688
|
-
icon?: Maybe<ConfluenceV2SpaceIcon>;
|
|
17689
|
-
id: Scalars['ID']['output'];
|
|
17690
|
-
key: Scalars['String']['output'];
|
|
17691
|
-
name: Scalars['String']['output'];
|
|
17692
|
-
status: ConfluenceV2SpaceStatus;
|
|
17693
|
-
type: ConfluenceV2SpaceType;
|
|
17694
|
-
};
|
|
17695
|
-
export declare type ConfluenceV2SpaceDescriptionArgs = {
|
|
17696
|
-
format?: InputMaybe<ConfluenceV2SpaceDescriptionEnum>;
|
|
17697
|
-
};
|
|
17698
|
-
export declare type ConfluenceV2SpaceDescription = {
|
|
17699
|
-
__typename?: 'ConfluenceV2SpaceDescription';
|
|
17700
|
-
plain?: Maybe<ConfluenceV2FormattedPage>;
|
|
17701
|
-
view?: Maybe<ConfluenceV2FormattedPage>;
|
|
17702
|
-
};
|
|
17703
|
-
export declare enum ConfluenceV2SpaceDescriptionEnum {
|
|
17704
|
-
Plain = "plain",
|
|
17705
|
-
View = "view"
|
|
17706
|
-
}
|
|
17707
|
-
export declare type ConfluenceV2SpaceIcon = {
|
|
17708
|
-
__typename?: 'ConfluenceV2SpaceIcon';
|
|
17709
|
-
apiDownloadLink?: Maybe<Scalars['String']['output']>;
|
|
17710
|
-
path?: Maybe<Scalars['String']['output']>;
|
|
17711
|
-
};
|
|
17712
|
-
export declare type ConfluenceV2SpacePage = Node & {
|
|
17713
|
-
__typename?: 'ConfluenceV2SpacePage';
|
|
17714
|
-
authorId?: Maybe<Scalars['String']['output']>;
|
|
17715
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
17716
|
-
description?: Maybe<ConfluenceV2SpaceDescription>;
|
|
17717
|
-
homepageId: Scalars['ID']['output'];
|
|
17718
|
-
icon?: Maybe<ConfluenceV2SpaceIcon>;
|
|
17719
|
-
id: Scalars['ID']['output'];
|
|
17720
|
-
key: Scalars['String']['output'];
|
|
17721
|
-
links?: Maybe<ConfluenceV2SpacePageLinks>;
|
|
17722
|
-
lookAndFeel?: Maybe<ConfluenceV2LookAndFeel>;
|
|
17723
|
-
name: Scalars['String']['output'];
|
|
17724
|
-
settings?: Maybe<ConfluenceV2SpacePageSettings>;
|
|
17725
|
-
status: ConfluenceV2SpaceStatus;
|
|
17726
|
-
theme?: Maybe<ConfluenceV2Theme>;
|
|
17727
|
-
type: ConfluenceV2SpaceType;
|
|
17728
|
-
};
|
|
17729
|
-
export declare type ConfluenceV2SpacePageDescriptionArgs = {
|
|
17730
|
-
format?: InputMaybe<ConfluenceV2SpaceDescriptionEnum>;
|
|
17731
|
-
};
|
|
17732
|
-
export declare type ConfluenceV2SpacePageEditorSettings = {
|
|
17733
|
-
__typename?: 'ConfluenceV2SpacePageEditorSettings';
|
|
17734
|
-
blogPost?: Maybe<Scalars['String']['output']>;
|
|
17735
|
-
default?: Maybe<Scalars['String']['output']>;
|
|
17736
|
-
page?: Maybe<Scalars['String']['output']>;
|
|
17737
|
-
};
|
|
17738
|
-
export declare type ConfluenceV2SpacePageLinks = {
|
|
17739
|
-
__typename?: 'ConfluenceV2SpacePageLinks';
|
|
17740
|
-
base?: Maybe<Scalars['String']['output']>;
|
|
17741
|
-
webui?: Maybe<Scalars['String']['output']>;
|
|
17742
|
-
};
|
|
17743
|
-
export declare type ConfluenceV2SpacePageSettings = {
|
|
17744
|
-
__typename?: 'ConfluenceV2SpacePageSettings';
|
|
17745
|
-
editor?: Maybe<ConfluenceV2SpacePageEditorSettings>;
|
|
17746
|
-
routeOverrideEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
17747
|
-
};
|
|
17748
|
-
export declare type ConfluenceV2SpaceProperty = {
|
|
17749
|
-
__typename?: 'ConfluenceV2SpaceProperty';
|
|
17750
|
-
authorId: Scalars['String']['output'];
|
|
17751
|
-
createdAt: Scalars['String']['output'];
|
|
17752
|
-
createdBy?: Maybe<Scalars['String']['output']>;
|
|
17753
|
-
key: Scalars['String']['output'];
|
|
17754
|
-
value: Scalars['JSON']['output'];
|
|
17755
|
-
version: ConfluenceV2SpaceVersion;
|
|
17756
|
-
};
|
|
17757
|
-
export declare type ConfluenceV2SpacePropertyConnection = {
|
|
17758
|
-
__typename?: 'ConfluenceV2SpacePropertyConnection';
|
|
17759
|
-
edges?: Maybe<Array<Maybe<ConfluenceV2SpacePropertyEdge>>>;
|
|
17760
|
-
nodes?: Maybe<Array<Maybe<ConfluenceV2SpaceProperty>>>;
|
|
17761
|
-
pageInfo: PageInfo;
|
|
17762
|
-
};
|
|
17763
|
-
export declare type ConfluenceV2SpacePropertyEdge = {
|
|
17764
|
-
__typename?: 'ConfluenceV2SpacePropertyEdge';
|
|
17765
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
17766
|
-
node: ConfluenceV2SpaceProperty;
|
|
17767
|
-
};
|
|
17768
|
-
export declare type ConfluenceV2SpaceSettings = {
|
|
17769
|
-
__typename?: 'ConfluenceV2SpaceSettings';
|
|
17770
|
-
routeOverrideEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
17771
|
-
};
|
|
17772
|
-
export declare enum ConfluenceV2SpaceStatus {
|
|
17773
|
-
Archived = "archived",
|
|
17774
|
-
Current = "current"
|
|
17775
|
-
}
|
|
17776
|
-
export declare enum ConfluenceV2SpaceType {
|
|
17777
|
-
Global = "global",
|
|
17778
|
-
Personal = "personal"
|
|
17779
|
-
}
|
|
17780
|
-
export declare type ConfluenceV2SpaceVersion = {
|
|
17781
|
-
__typename?: 'ConfluenceV2SpaceVersion';
|
|
17782
|
-
authorId: Scalars['String']['output'];
|
|
17783
|
-
createdAt: Scalars['String']['output'];
|
|
17784
|
-
createdBy?: Maybe<Scalars['String']['output']>;
|
|
17785
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
17786
|
-
number: Scalars['Int']['output'];
|
|
17787
|
-
};
|
|
17788
|
-
export declare type ConfluenceV2Theme = {
|
|
17789
|
-
__typename?: 'ConfluenceV2Theme';
|
|
17790
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
17791
|
-
themeKey?: Maybe<Scalars['String']['output']>;
|
|
17792
|
-
};
|
|
17793
|
-
export declare type ConfluenceV2UpdatePageInput = {
|
|
17794
|
-
body: ConfluenceV2FormattedBodyInput;
|
|
17795
|
-
id: Scalars['ID']['input'];
|
|
17796
|
-
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
17797
|
-
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
17798
|
-
status: ConfluenceV2PageUpdateStatus;
|
|
17799
|
-
title: Scalars['String']['input'];
|
|
17800
|
-
version: ConfluenceV2VersionInput;
|
|
17801
|
-
};
|
|
17802
|
-
export declare type ConfluenceV2UpdatePagePayload = {
|
|
17803
|
-
__typename?: 'ConfluenceV2UpdatePagePayload';
|
|
17804
|
-
pageV2?: Maybe<ConfluenceV2Page>;
|
|
17805
|
-
};
|
|
17806
|
-
export declare type ConfluenceV2Version = {
|
|
17807
|
-
__typename?: 'ConfluenceV2Version';
|
|
17808
|
-
authorId?: Maybe<Scalars['String']['output']>;
|
|
17809
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
17810
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
17811
|
-
minorEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
17812
|
-
number: Scalars['Int']['output'];
|
|
17813
|
-
};
|
|
17814
|
-
export declare type ConfluenceV2VersionInput = {
|
|
17815
|
-
message?: InputMaybe<Scalars['String']['input']>;
|
|
17816
|
-
number: Scalars['Int']['input'];
|
|
17817
|
-
};
|
|
17818
17367
|
export declare type ConfluenceValidateSpaceKeyResponse = {
|
|
17819
17368
|
__typename?: 'ConfluenceValidateSpaceKeyResponse';
|
|
17820
17369
|
generatedUniqueKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -20831,10 +20380,12 @@ export declare type CsmAiActionVariableInput = {
|
|
|
20831
20380
|
};
|
|
20832
20381
|
export declare type CsmAiAgent = {
|
|
20833
20382
|
__typename?: 'CsmAiAgent';
|
|
20383
|
+
companyDescription?: Maybe<Scalars['String']['output']>;
|
|
20384
|
+
companyName?: Maybe<Scalars['String']['output']>;
|
|
20834
20385
|
conversationStarters?: Maybe<Array<CsmAiAgentConversationStarter>>;
|
|
20386
|
+
greetingMessage?: Maybe<Scalars['String']['output']>;
|
|
20835
20387
|
id: Scalars['ID']['output'];
|
|
20836
20388
|
name?: Maybe<Scalars['String']['output']>;
|
|
20837
|
-
purpose?: Maybe<Scalars['String']['output']>;
|
|
20838
20389
|
tone?: Maybe<CsmAiAgentTone>;
|
|
20839
20390
|
};
|
|
20840
20391
|
export declare type CsmAiAgentConversationStarter = {
|
|
@@ -20943,9 +20494,11 @@ export declare type CsmAiUpdateAgentConversationStarterInput = {
|
|
|
20943
20494
|
};
|
|
20944
20495
|
export declare type CsmAiUpdateAgentInput = {
|
|
20945
20496
|
addedConversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
20497
|
+
companyDescription?: InputMaybe<Scalars['String']['input']>;
|
|
20498
|
+
companyName?: InputMaybe<Scalars['String']['input']>;
|
|
20946
20499
|
deletedConversationStarters?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
20500
|
+
greetingMessage?: InputMaybe<Scalars['String']['input']>;
|
|
20947
20501
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
20948
|
-
purpose?: InputMaybe<Scalars['String']['input']>;
|
|
20949
20502
|
tone?: InputMaybe<CsmAiAgentToneInput>;
|
|
20950
20503
|
updatedConversationStarters?: InputMaybe<Array<CsmAiUpdateAgentConversationStarterInput>>;
|
|
20951
20504
|
};
|
|
@@ -24565,301 +24118,6 @@ export declare type DevOpsThumbnail = {
|
|
|
24565
24118
|
__typename?: 'DevOpsThumbnail';
|
|
24566
24119
|
externalUrl?: Maybe<Scalars['URL']['output']>;
|
|
24567
24120
|
};
|
|
24568
|
-
export declare type DevOpsTool = Node & {
|
|
24569
|
-
__typename?: 'DevOpsTool';
|
|
24570
|
-
auth?: Maybe<DevOpsToolAuth>;
|
|
24571
|
-
avatar?: Maybe<DevOpsToolAvatar>;
|
|
24572
|
-
category: DevOpsToolCategory;
|
|
24573
|
-
containerRelationshipType?: Maybe<Scalars['ID']['output']>;
|
|
24574
|
-
containerRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
24575
|
-
group: DevOpsToolGroup;
|
|
24576
|
-
id: Scalars['ID']['output'];
|
|
24577
|
-
installed?: Maybe<Scalars['Boolean']['output']>;
|
|
24578
|
-
integration?: Maybe<DevOpsToolIntegration>;
|
|
24579
|
-
name: Scalars['String']['output'];
|
|
24580
|
-
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
24581
|
-
productKey: Scalars['String']['output'];
|
|
24582
|
-
provider?: Maybe<DevOpsDataProvider>;
|
|
24583
|
-
recommended: Scalars['Boolean']['output'];
|
|
24584
|
-
supportsContainers: Scalars['Boolean']['output'];
|
|
24585
|
-
};
|
|
24586
|
-
export declare type DevOpsToolContainerRelationshipsArgs = {
|
|
24587
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
24588
|
-
filter?: InputMaybe<AriGraphRelationshipsFilter>;
|
|
24589
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24590
|
-
jiraProjectId: Scalars['ID']['input'];
|
|
24591
|
-
sort?: InputMaybe<AriGraphRelationshipsSort>;
|
|
24592
|
-
};
|
|
24593
|
-
export declare type DevOpsToolNamespacesArgs = {
|
|
24594
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
24595
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24596
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
24597
|
-
};
|
|
24598
|
-
export declare type DevOpsToolProviderArgs = {
|
|
24599
|
-
id: Scalars['ID']['input'];
|
|
24600
|
-
providerTypes?: InputMaybe<Array<DevOpsProviderType>>;
|
|
24601
|
-
};
|
|
24602
|
-
export declare type DevOpsToolAppLinks = {
|
|
24603
|
-
__typename?: 'DevOpsToolAppLinks';
|
|
24604
|
-
configure?: Maybe<Scalars['String']['output']>;
|
|
24605
|
-
getStarted?: Maybe<Scalars['String']['output']>;
|
|
24606
|
-
manage?: Maybe<Scalars['String']['output']>;
|
|
24607
|
-
self?: Maybe<Scalars['String']['output']>;
|
|
24608
|
-
support?: Maybe<Scalars['String']['output']>;
|
|
24609
|
-
};
|
|
24610
|
-
export declare type DevOpsToolAuth = {
|
|
24611
|
-
authenticated: Scalars['Boolean']['output'];
|
|
24612
|
-
};
|
|
24613
|
-
export declare type DevOpsToolAvatar = {
|
|
24614
|
-
__typename?: 'DevOpsToolAvatar';
|
|
24615
|
-
url: Scalars['URL']['output'];
|
|
24616
|
-
};
|
|
24617
|
-
export declare type DevOpsToolBitbucketCreate = DevOpsToolContainerCreationSpecification & {
|
|
24618
|
-
__typename?: 'DevOpsToolBitbucketCreate';
|
|
24619
|
-
name: Scalars['String']['output'];
|
|
24620
|
-
requestId: Scalars['String']['output'];
|
|
24621
|
-
slug?: Maybe<Scalars['String']['output']>;
|
|
24622
|
-
workspace: Scalars['String']['output'];
|
|
24623
|
-
};
|
|
24624
|
-
export declare type DevOpsToolCanContainerBeCreated = DevOpsToolContainerCanBeCreated | DevOpsToolContainerKeyCannotBeGenerated | DevOpsToolContainerKeyConflict | DevOpsToolContainerNameConflict | DevOpsToolUnknownTool;
|
|
24625
|
-
export declare type DevOpsToolCategory = {
|
|
24626
|
-
__typename?: 'DevOpsToolCategory';
|
|
24627
|
-
groupId: Scalars['String']['output'];
|
|
24628
|
-
id: Scalars['String']['output'];
|
|
24629
|
-
name: Scalars['String']['output'];
|
|
24630
|
-
};
|
|
24631
|
-
export declare type DevOpsToolCategoryConnection = {
|
|
24632
|
-
__typename?: 'DevOpsToolCategoryConnection';
|
|
24633
|
-
edges?: Maybe<Array<Maybe<DevOpsToolCategoryEdge>>>;
|
|
24634
|
-
nodes?: Maybe<Array<Maybe<DevOpsToolCategory>>>;
|
|
24635
|
-
pageInfo: PageInfo;
|
|
24636
|
-
};
|
|
24637
|
-
export declare type DevOpsToolCategoryEdge = {
|
|
24638
|
-
__typename?: 'DevOpsToolCategoryEdge';
|
|
24639
|
-
cursor: Scalars['String']['output'];
|
|
24640
|
-
node?: Maybe<DevOpsToolCategory>;
|
|
24641
|
-
};
|
|
24642
|
-
export declare type DevOpsToolConfluenceCreate = DevOpsToolContainerCreationSpecification & {
|
|
24643
|
-
__typename?: 'DevOpsToolConfluenceCreate';
|
|
24644
|
-
key: Scalars['String']['output'];
|
|
24645
|
-
name: Scalars['String']['output'];
|
|
24646
|
-
requestId: Scalars['String']['output'];
|
|
24647
|
-
};
|
|
24648
|
-
export declare type DevOpsToolConnection = {
|
|
24649
|
-
__typename?: 'DevOpsToolConnection';
|
|
24650
|
-
edges?: Maybe<Array<Maybe<DevOpsToolEdge>>>;
|
|
24651
|
-
nodes?: Maybe<Array<Maybe<DevOpsTool>>>;
|
|
24652
|
-
pageInfo: PageInfo;
|
|
24653
|
-
};
|
|
24654
|
-
export declare type DevOpsToolContainer = Node & {
|
|
24655
|
-
__typename?: 'DevOpsToolContainer';
|
|
24656
|
-
displayName: Scalars['String']['output'];
|
|
24657
|
-
id: Scalars['ID']['output'];
|
|
24658
|
-
productKey: Scalars['String']['output'];
|
|
24659
|
-
underlyingId: Scalars['String']['output'];
|
|
24660
|
-
url: Scalars['String']['output'];
|
|
24661
|
-
};
|
|
24662
|
-
export declare type DevOpsToolContainerCanBeCreated = {
|
|
24663
|
-
__typename?: 'DevOpsToolContainerCanBeCreated';
|
|
24664
|
-
containerCreationSpecification?: Maybe<DevOpsToolContainerCreationSpecification>;
|
|
24665
|
-
};
|
|
24666
|
-
export declare type DevOpsToolContainerConnection = {
|
|
24667
|
-
__typename?: 'DevOpsToolContainerConnection';
|
|
24668
|
-
edges?: Maybe<Array<Maybe<DevOpsToolContainerEdge>>>;
|
|
24669
|
-
nodes?: Maybe<Array<Maybe<DevOpsToolContainer>>>;
|
|
24670
|
-
pageInfo: PageInfo;
|
|
24671
|
-
};
|
|
24672
|
-
export declare type DevOpsToolContainerCreationSpecification = {
|
|
24673
|
-
requestId: Scalars['String']['output'];
|
|
24674
|
-
};
|
|
24675
|
-
export declare type DevOpsToolContainerEdge = {
|
|
24676
|
-
__typename?: 'DevOpsToolContainerEdge';
|
|
24677
|
-
cursor: Scalars['String']['output'];
|
|
24678
|
-
node?: Maybe<DevOpsToolContainer>;
|
|
24679
|
-
};
|
|
24680
|
-
export declare type DevOpsToolContainerKeyCannotBeGenerated = {
|
|
24681
|
-
__typename?: 'DevOpsToolContainerKeyCannotBeGenerated';
|
|
24682
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
24683
|
-
};
|
|
24684
|
-
export declare type DevOpsToolContainerKeyConflict = {
|
|
24685
|
-
__typename?: 'DevOpsToolContainerKeyConflict';
|
|
24686
|
-
key?: Maybe<Scalars['String']['output']>;
|
|
24687
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
24688
|
-
};
|
|
24689
|
-
export declare type DevOpsToolContainerNameConflict = {
|
|
24690
|
-
__typename?: 'DevOpsToolContainerNameConflict';
|
|
24691
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
24692
|
-
};
|
|
24693
|
-
export declare type DevOpsToolDefaultAuth = DevOpsToolAuth & {
|
|
24694
|
-
__typename?: 'DevOpsToolDefaultAuth';
|
|
24695
|
-
authenticated: Scalars['Boolean']['output'];
|
|
24696
|
-
};
|
|
24697
|
-
export declare type DevOpsToolEdge = {
|
|
24698
|
-
__typename?: 'DevOpsToolEdge';
|
|
24699
|
-
cursor: Scalars['String']['output'];
|
|
24700
|
-
node?: Maybe<DevOpsTool>;
|
|
24701
|
-
};
|
|
24702
|
-
export declare type DevOpsToolGitHubCreate = DevOpsToolContainerCreationSpecification & {
|
|
24703
|
-
__typename?: 'DevOpsToolGitHubCreate';
|
|
24704
|
-
organizationName: Scalars['String']['output'];
|
|
24705
|
-
repositoryName: Scalars['String']['output'];
|
|
24706
|
-
requestId: Scalars['String']['output'];
|
|
24707
|
-
};
|
|
24708
|
-
export declare type DevOpsToolGitLabCreate = DevOpsToolContainerCreationSpecification & {
|
|
24709
|
-
__typename?: 'DevOpsToolGitLabCreate';
|
|
24710
|
-
organizationName: Scalars['String']['output'];
|
|
24711
|
-
repositoryName: Scalars['String']['output'];
|
|
24712
|
-
requestId: Scalars['String']['output'];
|
|
24713
|
-
};
|
|
24714
|
-
export declare type DevOpsToolGroup = {
|
|
24715
|
-
__typename?: 'DevOpsToolGroup';
|
|
24716
|
-
categories?: Maybe<DevOpsToolCategoryConnection>;
|
|
24717
|
-
groupId: Scalars['String']['output'];
|
|
24718
|
-
groupName: Scalars['String']['output'];
|
|
24719
|
-
};
|
|
24720
|
-
export declare type DevOpsToolGroupCategoriesArgs = {
|
|
24721
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
24722
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24723
|
-
};
|
|
24724
|
-
export declare type DevOpsToolGroupConnection = {
|
|
24725
|
-
__typename?: 'DevOpsToolGroupConnection';
|
|
24726
|
-
edges?: Maybe<Array<Maybe<DevOpsToolGroupEdge>>>;
|
|
24727
|
-
nodes?: Maybe<Array<Maybe<DevOpsToolGroup>>>;
|
|
24728
|
-
pageInfo: PageInfo;
|
|
24729
|
-
};
|
|
24730
|
-
export declare type DevOpsToolGroupEdge = {
|
|
24731
|
-
__typename?: 'DevOpsToolGroupEdge';
|
|
24732
|
-
cursor: Scalars['String']['output'];
|
|
24733
|
-
node?: Maybe<DevOpsToolGroup>;
|
|
24734
|
-
};
|
|
24735
|
-
export declare type DevOpsToolIntegration = {
|
|
24736
|
-
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
24737
|
-
key: Scalars['String']['output'];
|
|
24738
|
-
name: Scalars['String']['output'];
|
|
24739
|
-
};
|
|
24740
|
-
export declare type DevOpsToolIntegrationApp = DevOpsToolIntegration & {
|
|
24741
|
-
__typename?: 'DevOpsToolIntegrationApp';
|
|
24742
|
-
appKey: Scalars['String']['output'];
|
|
24743
|
-
appName: Scalars['String']['output'];
|
|
24744
|
-
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
24745
|
-
key: Scalars['String']['output'];
|
|
24746
|
-
links?: Maybe<DevOpsToolAppLinks>;
|
|
24747
|
-
marketplaceType: Scalars['String']['output'];
|
|
24748
|
-
name: Scalars['String']['output'];
|
|
24749
|
-
};
|
|
24750
|
-
export declare type DevOpsToolIntegrationProduct = DevOpsToolIntegration & {
|
|
24751
|
-
__typename?: 'DevOpsToolIntegrationProduct';
|
|
24752
|
-
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
24753
|
-
key: Scalars['String']['output'];
|
|
24754
|
-
name: Scalars['String']['output'];
|
|
24755
|
-
productKey: Scalars['String']['output'];
|
|
24756
|
-
productName: Scalars['String']['output'];
|
|
24757
|
-
};
|
|
24758
|
-
export declare enum DevOpsToolIntegrationType {
|
|
24759
|
-
Any = "ANY",
|
|
24760
|
-
App = "APP",
|
|
24761
|
-
Exists = "EXISTS",
|
|
24762
|
-
None = "NONE",
|
|
24763
|
-
Product = "PRODUCT"
|
|
24764
|
-
}
|
|
24765
|
-
export declare type DevOpsToolNamespace = Node & {
|
|
24766
|
-
__typename?: 'DevOpsToolNamespace';
|
|
24767
|
-
canCreateContainer: Scalars['Boolean']['output'];
|
|
24768
|
-
containers?: Maybe<DevOpsToolContainerConnection>;
|
|
24769
|
-
displayName: Scalars['String']['output'];
|
|
24770
|
-
id: Scalars['ID']['output'];
|
|
24771
|
-
productKey: Scalars['String']['output'];
|
|
24772
|
-
underlyingId: Scalars['String']['output'];
|
|
24773
|
-
};
|
|
24774
|
-
export declare type DevOpsToolNamespaceContainersArgs = {
|
|
24775
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
24776
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24777
|
-
projectAri?: InputMaybe<Scalars['String']['input']>;
|
|
24778
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
24779
|
-
};
|
|
24780
|
-
export declare type DevOpsToolNamespaceConnection = {
|
|
24781
|
-
__typename?: 'DevOpsToolNamespaceConnection';
|
|
24782
|
-
edges?: Maybe<Array<Maybe<DevOpsToolNamespaceEdge>>>;
|
|
24783
|
-
nodes?: Maybe<Array<Maybe<DevOpsToolNamespace>>>;
|
|
24784
|
-
pageInfo: PageInfo;
|
|
24785
|
-
};
|
|
24786
|
-
export declare type DevOpsToolNamespaceEdge = {
|
|
24787
|
-
__typename?: 'DevOpsToolNamespaceEdge';
|
|
24788
|
-
cursor: Scalars['String']['output'];
|
|
24789
|
-
node?: Maybe<DevOpsToolNamespace>;
|
|
24790
|
-
};
|
|
24791
|
-
export declare type DevOpsToolOAuth = DevOpsToolAuth & {
|
|
24792
|
-
__typename?: 'DevOpsToolOAuth';
|
|
24793
|
-
authenticated: Scalars['Boolean']['output'];
|
|
24794
|
-
oauthUrl: Scalars['String']['output'];
|
|
24795
|
-
};
|
|
24796
|
-
export declare type DevOpsToolOpsgenieCreate = DevOpsToolContainerCreationSpecification & {
|
|
24797
|
-
__typename?: 'DevOpsToolOpsgenieCreate';
|
|
24798
|
-
name: Scalars['String']['output'];
|
|
24799
|
-
requestId: Scalars['String']['output'];
|
|
24800
|
-
};
|
|
24801
|
-
export declare type DevOpsToolSort = {
|
|
24802
|
-
integration?: InputMaybe<DevOpsToolSortOrder>;
|
|
24803
|
-
name?: InputMaybe<DevOpsToolSortOrder>;
|
|
24804
|
-
recommended?: InputMaybe<DevOpsToolSortOrder>;
|
|
24805
|
-
supportsContainers?: InputMaybe<DevOpsToolSortOrder>;
|
|
24806
|
-
};
|
|
24807
|
-
export declare enum DevOpsToolSortOrder {
|
|
24808
|
-
Asc = "ASC",
|
|
24809
|
-
Desc = "DESC"
|
|
24810
|
-
}
|
|
24811
|
-
export declare type DevOpsToolUnknownTool = {
|
|
24812
|
-
__typename?: 'DevOpsToolUnknownTool';
|
|
24813
|
-
toolId?: Maybe<Scalars['String']['output']>;
|
|
24814
|
-
};
|
|
24815
|
-
export declare type DevOpsTools = {
|
|
24816
|
-
__typename?: 'DevOpsTools';
|
|
24817
|
-
canContainerBeCreated?: Maybe<DevOpsToolCanContainerBeCreated>;
|
|
24818
|
-
container?: Maybe<DevOpsToolContainer>;
|
|
24819
|
-
groups?: Maybe<DevOpsToolGroupConnection>;
|
|
24820
|
-
integration?: Maybe<DevOpsToolIntegration>;
|
|
24821
|
-
isInstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
24822
|
-
namespace?: Maybe<DevOpsToolNamespace>;
|
|
24823
|
-
tool?: Maybe<DevOpsTool>;
|
|
24824
|
-
tools?: Maybe<DevOpsToolConnection>;
|
|
24825
|
-
};
|
|
24826
|
-
export declare type DevOpsToolsCanContainerBeCreatedArgs = {
|
|
24827
|
-
cloudId: Scalars['ID']['input'];
|
|
24828
|
-
containerName: Scalars['String']['input'];
|
|
24829
|
-
namespaceId: Scalars['String']['input'];
|
|
24830
|
-
toolId: Scalars['String']['input'];
|
|
24831
|
-
};
|
|
24832
|
-
export declare type DevOpsToolsContainerArgs = {
|
|
24833
|
-
id: Scalars['ID']['input'];
|
|
24834
|
-
};
|
|
24835
|
-
export declare type DevOpsToolsGroupsArgs = {
|
|
24836
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
24837
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24838
|
-
};
|
|
24839
|
-
export declare type DevOpsToolsIntegrationArgs = {
|
|
24840
|
-
id: Scalars['ID']['input'];
|
|
24841
|
-
};
|
|
24842
|
-
export declare type DevOpsToolsIsInstalledArgs = {
|
|
24843
|
-
id: Scalars['ID']['input'];
|
|
24844
|
-
};
|
|
24845
|
-
export declare type DevOpsToolsNamespaceArgs = {
|
|
24846
|
-
id: Scalars['ID']['input'];
|
|
24847
|
-
};
|
|
24848
|
-
export declare type DevOpsToolsToolArgs = {
|
|
24849
|
-
id: Scalars['ID']['input'];
|
|
24850
|
-
};
|
|
24851
|
-
export declare type DevOpsToolsToolsArgs = {
|
|
24852
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
24853
|
-
categoryId?: InputMaybe<Scalars['String']['input']>;
|
|
24854
|
-
cloudId: Scalars['ID']['input'];
|
|
24855
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24856
|
-
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
24857
|
-
integrationType?: InputMaybe<DevOpsToolIntegrationType>;
|
|
24858
|
-
recommended?: InputMaybe<Scalars['Boolean']['input']>;
|
|
24859
|
-
search?: InputMaybe<Scalars['String']['input']>;
|
|
24860
|
-
sort?: InputMaybe<Array<InputMaybe<DevOpsToolSort>>>;
|
|
24861
|
-
supportsContainers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
24862
|
-
};
|
|
24863
24121
|
export declare type DevOpsUser = {
|
|
24864
24122
|
__typename?: 'DevOpsUser';
|
|
24865
24123
|
thirdPartyUser?: Maybe<ThirdPartyUser>;
|
|
@@ -27848,6 +27106,7 @@ export declare enum ForgeMetricsGroupByDimensions {
|
|
|
27848
27106
|
export declare type ForgeMetricsInstallationContext = {
|
|
27849
27107
|
__typename?: 'ForgeMetricsInstallationContext';
|
|
27850
27108
|
contextAri: Scalars['ID']['output'];
|
|
27109
|
+
contextAris: Array<Scalars['ID']['output']>;
|
|
27851
27110
|
tenantContext?: Maybe<TenantContext>;
|
|
27852
27111
|
};
|
|
27853
27112
|
export declare type ForgeMetricsIntervalInput = {
|
|
@@ -32069,6 +31328,8 @@ export declare type GraphStore = {
|
|
|
32069
31328
|
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
32070
31329
|
cypherQuery: GraphStoreCypherQueryConnection;
|
|
32071
31330
|
cypherQueryV2: GraphStoreCypherQueryV2Connection;
|
|
31331
|
+
deploymentAssociatedDeployment?: Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection>;
|
|
31332
|
+
deploymentAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentInverseConnection>;
|
|
32072
31333
|
deploymentAssociatedRepo?: Maybe<GraphStoreSimplifiedDeploymentAssociatedRepoConnection>;
|
|
32073
31334
|
deploymentAssociatedRepoInverse?: Maybe<GraphStoreSimplifiedDeploymentAssociatedRepoInverseConnection>;
|
|
32074
31335
|
deploymentContainsCommit?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitConnection>;
|
|
@@ -32601,6 +31862,8 @@ export declare type GraphStore = {
|
|
|
32601
31862
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
32602
31863
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
32603
31864
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
31865
|
+
userUpdatedAtlasProject?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectConnection>;
|
|
31866
|
+
userUpdatedAtlasProjectInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectInverseConnection>;
|
|
32604
31867
|
userUpdatedComment?: Maybe<GraphStoreSimplifiedUserUpdatedCommentConnection>;
|
|
32605
31868
|
userUpdatedCommentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseConnection>;
|
|
32606
31869
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
@@ -33357,6 +32620,20 @@ export declare type GraphStoreCypherQueryV2Args = {
|
|
|
33357
32620
|
query: Scalars['String']['input'];
|
|
33358
32621
|
version?: InputMaybe<GraphStoreCypherQueryV2VersionEnum>;
|
|
33359
32622
|
};
|
|
32623
|
+
export declare type GraphStoreDeploymentAssociatedDeploymentArgs = {
|
|
32624
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32625
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32626
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32627
|
+
id: Scalars['ID']['input'];
|
|
32628
|
+
sort?: InputMaybe<GraphStoreDeploymentAssociatedDeploymentSortInput>;
|
|
32629
|
+
};
|
|
32630
|
+
export declare type GraphStoreDeploymentAssociatedDeploymentInverseArgs = {
|
|
32631
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32632
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32633
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32634
|
+
id: Scalars['ID']['input'];
|
|
32635
|
+
sort?: InputMaybe<GraphStoreDeploymentAssociatedDeploymentSortInput>;
|
|
32636
|
+
};
|
|
33360
32637
|
export declare type GraphStoreDeploymentAssociatedRepoArgs = {
|
|
33361
32638
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33362
32639
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36900,6 +36177,20 @@ export declare type GraphStoreUserTriggeredDeploymentInverseArgs = {
|
|
|
36900
36177
|
id: Scalars['ID']['input'];
|
|
36901
36178
|
sort?: InputMaybe<GraphStoreUserTriggeredDeploymentSortInput>;
|
|
36902
36179
|
};
|
|
36180
|
+
export declare type GraphStoreUserUpdatedAtlasProjectArgs = {
|
|
36181
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36182
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36183
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36184
|
+
id: Scalars['ID']['input'];
|
|
36185
|
+
sort?: InputMaybe<GraphStoreUserUpdatedAtlasProjectSortInput>;
|
|
36186
|
+
};
|
|
36187
|
+
export declare type GraphStoreUserUpdatedAtlasProjectInverseArgs = {
|
|
36188
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36189
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36190
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36191
|
+
id: Scalars['ID']['input'];
|
|
36192
|
+
sort?: InputMaybe<GraphStoreUserUpdatedAtlasProjectSortInput>;
|
|
36193
|
+
};
|
|
36903
36194
|
export declare type GraphStoreUserUpdatedCommentArgs = {
|
|
36904
36195
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36905
36196
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39525,6 +38816,9 @@ export declare type GraphStoreDeleteVulnerabilityAssociatedIssueRelationshipInpu
|
|
|
39525
38816
|
from: Scalars['ID']['input'];
|
|
39526
38817
|
to: Scalars['ID']['input'];
|
|
39527
38818
|
};
|
|
38819
|
+
export declare type GraphStoreDeploymentAssociatedDeploymentSortInput = {
|
|
38820
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38821
|
+
};
|
|
39528
38822
|
export declare type GraphStoreDeploymentAssociatedRepoSortInput = {
|
|
39529
38823
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39530
38824
|
};
|
|
@@ -45386,6 +44680,34 @@ export declare type GraphStoreSimplifiedConversationHasMessageInverseEdge = {
|
|
|
45386
44680
|
};
|
|
45387
44681
|
export declare type GraphStoreSimplifiedConversationHasMessageInverseUnion = ExternalConversation;
|
|
45388
44682
|
export declare type GraphStoreSimplifiedConversationHasMessageUnion = ExternalMessage;
|
|
44683
|
+
export declare type GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection = HasPageInfo & {
|
|
44684
|
+
__typename?: 'GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection';
|
|
44685
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentEdge>>>;
|
|
44686
|
+
pageInfo: PageInfo;
|
|
44687
|
+
};
|
|
44688
|
+
export declare type GraphStoreSimplifiedDeploymentAssociatedDeploymentEdge = {
|
|
44689
|
+
__typename?: 'GraphStoreSimplifiedDeploymentAssociatedDeploymentEdge';
|
|
44690
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44691
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44692
|
+
id: Scalars['ID']['output'];
|
|
44693
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44694
|
+
node?: Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentUnion>;
|
|
44695
|
+
};
|
|
44696
|
+
export declare type GraphStoreSimplifiedDeploymentAssociatedDeploymentInverseConnection = HasPageInfo & {
|
|
44697
|
+
__typename?: 'GraphStoreSimplifiedDeploymentAssociatedDeploymentInverseConnection';
|
|
44698
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentInverseEdge>>>;
|
|
44699
|
+
pageInfo: PageInfo;
|
|
44700
|
+
};
|
|
44701
|
+
export declare type GraphStoreSimplifiedDeploymentAssociatedDeploymentInverseEdge = {
|
|
44702
|
+
__typename?: 'GraphStoreSimplifiedDeploymentAssociatedDeploymentInverseEdge';
|
|
44703
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44704
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44705
|
+
id: Scalars['ID']['output'];
|
|
44706
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44707
|
+
node?: Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentInverseUnion>;
|
|
44708
|
+
};
|
|
44709
|
+
export declare type GraphStoreSimplifiedDeploymentAssociatedDeploymentInverseUnion = DeploymentSummary | ExternalDeployment;
|
|
44710
|
+
export declare type GraphStoreSimplifiedDeploymentAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
45389
44711
|
export declare type GraphStoreSimplifiedDeploymentAssociatedRepoConnection = HasPageInfo & {
|
|
45390
44712
|
__typename?: 'GraphStoreSimplifiedDeploymentAssociatedRepoConnection';
|
|
45391
44713
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentAssociatedRepoEdge>>>;
|
|
@@ -50876,6 +50198,34 @@ export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseEdge = {
|
|
|
50876
50198
|
};
|
|
50877
50199
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50878
50200
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
50201
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectConnection = HasPageInfo & {
|
|
50202
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasProjectConnection';
|
|
50203
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectEdge>>>;
|
|
50204
|
+
pageInfo: PageInfo;
|
|
50205
|
+
};
|
|
50206
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectEdge = {
|
|
50207
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasProjectEdge';
|
|
50208
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50209
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50210
|
+
id: Scalars['ID']['output'];
|
|
50211
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50212
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectUnion>;
|
|
50213
|
+
};
|
|
50214
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseConnection = HasPageInfo & {
|
|
50215
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasProjectInverseConnection';
|
|
50216
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectInverseEdge>>>;
|
|
50217
|
+
pageInfo: PageInfo;
|
|
50218
|
+
};
|
|
50219
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseEdge = {
|
|
50220
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasProjectInverseEdge';
|
|
50221
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50222
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50223
|
+
id: Scalars['ID']['output'];
|
|
50224
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50225
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectInverseUnion>;
|
|
50226
|
+
};
|
|
50227
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50228
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectUnion = TownsquareProject;
|
|
50879
50229
|
export declare type GraphStoreSimplifiedUserUpdatedCommentConnection = HasPageInfo & {
|
|
50880
50230
|
__typename?: 'GraphStoreSimplifiedUserUpdatedCommentConnection';
|
|
50881
50231
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedCommentEdge>>>;
|
|
@@ -52365,6 +51715,9 @@ export declare type GraphStoreUserTaggedInIssueCommentSortInput = {
|
|
|
52365
51715
|
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
52366
51716
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52367
51717
|
};
|
|
51718
|
+
export declare type GraphStoreUserUpdatedAtlasProjectSortInput = {
|
|
51719
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51720
|
+
};
|
|
52368
51721
|
export declare type GraphStoreUserUpdatedCommentSortInput = {
|
|
52369
51722
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52370
51723
|
};
|
|
@@ -56413,9 +55766,6 @@ export declare type JiraAssignableUsersEdge = {
|
|
|
56413
55766
|
cursor: Scalars['String']['output'];
|
|
56414
55767
|
node?: Maybe<User>;
|
|
56415
55768
|
};
|
|
56416
|
-
export declare type JiraAssociatedFieldConfigSchemesInput = {
|
|
56417
|
-
fieldId: Scalars['ID']['input'];
|
|
56418
|
-
};
|
|
56419
55769
|
export declare type JiraAtlassianIntelligenceAction = JiraAccessAtlassianIntelligenceFeature | JiraContactOrgAdminToEnableAtlassianIntelligence | JiraEnableAtlassianIntelligenceDeepLink;
|
|
56420
55770
|
export declare enum JiraAtlassianIntelligenceFeatureEnum {
|
|
56421
55771
|
AiMate = "AI_MATE",
|
|
@@ -56832,10 +56182,6 @@ export declare type JiraAvailableField = JiraProjectFieldAssociationInterface &
|
|
|
56832
56182
|
fieldOperation?: Maybe<JiraFieldOperation>;
|
|
56833
56183
|
id: Scalars['ID']['output'];
|
|
56834
56184
|
};
|
|
56835
|
-
export declare type JiraAvailableFieldConfigSchemesInput = {
|
|
56836
|
-
fieldId: Scalars['ID']['input'];
|
|
56837
|
-
schemeNameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
56838
|
-
};
|
|
56839
56185
|
export declare type JiraAvailableFieldsConnection = {
|
|
56840
56186
|
__typename?: 'JiraAvailableFieldsConnection';
|
|
56841
56187
|
edges?: Maybe<Array<Maybe<JiraAvailableFieldsEdge>>>;
|
|
@@ -59690,6 +59036,12 @@ export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
59690
59036
|
export declare type JiraDurationFieldInput = {
|
|
59691
59037
|
originalEstimateField?: InputMaybe<Scalars['String']['input']>;
|
|
59692
59038
|
};
|
|
59039
|
+
export declare type JiraEchoWhereInput = {
|
|
59040
|
+
delayMs?: InputMaybe<Scalars['Int']['input']>;
|
|
59041
|
+
message?: InputMaybe<Scalars['String']['input']>;
|
|
59042
|
+
withDataError?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59043
|
+
withTopLevelError?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59044
|
+
};
|
|
59693
59045
|
export declare type JiraEditCustomFieldInput = {
|
|
59694
59046
|
cloudId: Scalars['ID']['input'];
|
|
59695
59047
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -60017,6 +59369,10 @@ export declare type JiraFieldConfigSchemesEdge = {
|
|
|
60017
59369
|
cursor: Scalars['String']['output'];
|
|
60018
59370
|
node?: Maybe<JiraFieldConfigScheme>;
|
|
60019
59371
|
};
|
|
59372
|
+
export declare type JiraFieldConfigSchemesInput = {
|
|
59373
|
+
fieldId: Scalars['ID']['input'];
|
|
59374
|
+
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
59375
|
+
};
|
|
60020
59376
|
export declare type JiraFieldConnection = {
|
|
60021
59377
|
__typename?: 'JiraFieldConnection';
|
|
60022
59378
|
edges?: Maybe<Array<Maybe<JiraFieldEdge>>>;
|
|
@@ -63570,6 +62926,7 @@ export declare type JiraJqlVersionsUnreleasedArgs = {
|
|
|
63570
62926
|
};
|
|
63571
62927
|
export declare enum JiraJqlViewContext {
|
|
63572
62928
|
JpdRoadmaps = "JPD_ROADMAPS",
|
|
62929
|
+
JsmQueuePage = "JSM_QUEUE_PAGE",
|
|
63573
62930
|
JsmSummaryPage = "JSM_SUMMARY_PAGE",
|
|
63574
62931
|
JswPlans = "JSW_PLANS",
|
|
63575
62932
|
JswSummaryPage = "JSW_SUMMARY_PAGE",
|
|
@@ -65209,7 +64566,7 @@ export declare type JiraNumberFieldFormatConfig = {
|
|
|
65209
64566
|
export declare enum JiraNumberFieldFormatStyle {
|
|
65210
64567
|
Currency = "CURRENCY",
|
|
65211
64568
|
Decimal = "DECIMAL",
|
|
65212
|
-
|
|
64569
|
+
Percent = "PERCENT",
|
|
65213
64570
|
Unit = "UNIT"
|
|
65214
64571
|
}
|
|
65215
64572
|
export declare type JiraNumberFieldInput = {
|
|
@@ -67085,6 +66442,7 @@ export declare type JiraQuery = {
|
|
|
67085
66442
|
deploymentsFeaturePreconditionByProjectKey?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
67086
66443
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
67087
66444
|
devOpsProviders?: Maybe<Array<Maybe<JiraDevOpsProvider>>>;
|
|
66445
|
+
echo?: Maybe<Scalars['String']['output']>;
|
|
67088
66446
|
epicLinkFieldKey?: Maybe<Scalars['String']['output']>;
|
|
67089
66447
|
exportIssueDetails?: Maybe<JiraExportIssueDetailsResponse>;
|
|
67090
66448
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
@@ -67405,6 +66763,10 @@ export declare type JiraQueryDevOpsProvidersArgs = {
|
|
|
67405
66763
|
cloudId: Scalars['ID']['input'];
|
|
67406
66764
|
filter?: InputMaybe<Array<JiraDevOpsCapability>>;
|
|
67407
66765
|
};
|
|
66766
|
+
export declare type JiraQueryEchoArgs = {
|
|
66767
|
+
cloudId: Scalars['ID']['input'];
|
|
66768
|
+
where?: InputMaybe<JiraEchoWhereInput>;
|
|
66769
|
+
};
|
|
67408
66770
|
export declare type JiraQueryEpicLinkFieldKeyArgs = {
|
|
67409
66771
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
67410
66772
|
};
|
|
@@ -70640,10 +70002,9 @@ export declare enum JiraSidebarMenuItemReorderOperation {
|
|
|
70640
70002
|
After = "AFTER",
|
|
70641
70003
|
Before = "BEFORE",
|
|
70642
70004
|
MoveDown = "MOVE_DOWN",
|
|
70643
|
-
|
|
70644
|
-
|
|
70645
|
-
MoveUp = "MOVE_UP"
|
|
70646
|
-
Remove = "REMOVE"
|
|
70005
|
+
MoveToBottom = "MOVE_TO_BOTTOM",
|
|
70006
|
+
MoveToTop = "MOVE_TO_TOP",
|
|
70007
|
+
MoveUp = "MOVE_UP"
|
|
70647
70008
|
}
|
|
70648
70009
|
export declare type JiraSimilarIssues = {
|
|
70649
70010
|
__typename?: 'JiraSimilarIssues';
|
|
@@ -77512,6 +76873,16 @@ export declare type MarketplaceStoreAppDetails = MarketplaceStoreMultiInstanceDe
|
|
|
77512
76873
|
multiInstanceEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
77513
76874
|
status?: Maybe<Scalars['String']['output']>;
|
|
77514
76875
|
};
|
|
76876
|
+
export declare type MarketplaceStoreAppSoftwareVersionListingLinks = {
|
|
76877
|
+
__typename?: 'MarketplaceStoreAppSoftwareVersionListingLinks';
|
|
76878
|
+
bonTermsSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
76879
|
+
eula?: Maybe<Scalars['String']['output']>;
|
|
76880
|
+
partnerSpecificTerms?: Maybe<Scalars['String']['output']>;
|
|
76881
|
+
};
|
|
76882
|
+
export declare type MarketplaceStoreAppSoftwareVersionListingResponse = {
|
|
76883
|
+
__typename?: 'MarketplaceStoreAppSoftwareVersionListingResponse';
|
|
76884
|
+
vendorLinks?: Maybe<MarketplaceStoreAppSoftwareVersionListingLinks>;
|
|
76885
|
+
};
|
|
77515
76886
|
export declare enum MarketplaceStoreAtlassianProductHostingType {
|
|
77516
76887
|
Cloud = "CLOUD",
|
|
77517
76888
|
Datacenter = "DATACENTER",
|
|
@@ -77675,11 +77046,6 @@ export declare type MarketplaceStoreDeleteReviewResponseInput = {
|
|
|
77675
77046
|
appKey: Scalars['String']['input'];
|
|
77676
77047
|
reviewId: Scalars['ID']['input'];
|
|
77677
77048
|
};
|
|
77678
|
-
export declare type MarketplaceStoreDeleteReviewResponseResponse = {
|
|
77679
|
-
__typename?: 'MarketplaceStoreDeleteReviewResponseResponse';
|
|
77680
|
-
id: Scalars['ID']['output'];
|
|
77681
|
-
status?: Maybe<Scalars['String']['output']>;
|
|
77682
|
-
};
|
|
77683
77049
|
export declare type MarketplaceStoreDeveloperSpace = {
|
|
77684
77050
|
__typename?: 'MarketplaceStoreDeveloperSpace';
|
|
77685
77051
|
name: Scalars['String']['output'];
|
|
@@ -77915,7 +77281,7 @@ export declare type MarketplaceStoreMutationApi = {
|
|
|
77915
77281
|
createOrUpdateReview: MarketplaceStoreCreateOrUpdateReviewResponse;
|
|
77916
77282
|
createOrUpdateReviewResponse: MarketplaceStoreCreateOrUpdateReviewResponseResponse;
|
|
77917
77283
|
deleteReview: MarketplaceStoreDeleteReviewResponse;
|
|
77918
|
-
deleteReviewResponse:
|
|
77284
|
+
deleteReviewResponse: MarketplaceStoreDeleteReviewResponse;
|
|
77919
77285
|
installApp: MarketplaceStoreInstallAppResponse;
|
|
77920
77286
|
updateReviewDownvote: MarketplaceStoreUpdateReviewVoteResponse;
|
|
77921
77287
|
updateReviewFlag: MarketplaceStoreUpdateReviewFlagResponse;
|
|
@@ -78112,6 +77478,8 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
78112
77478
|
appReviewById?: Maybe<MarketplaceStoreReviewByIdResponse>;
|
|
78113
77479
|
appReviewsByAppId: MarketplaceStoreReviewsResponse;
|
|
78114
77480
|
appReviewsByAppKey: MarketplaceStoreReviewsResponse;
|
|
77481
|
+
appSoftwareVersionListingByAppId?: Maybe<MarketplaceStoreAppSoftwareVersionListingResponse>;
|
|
77482
|
+
appSoftwareVersionListingByAppKey?: Maybe<MarketplaceStoreAppSoftwareVersionListingResponse>;
|
|
78115
77483
|
billingSystem: MarketplaceStoreBillingSystemResponse;
|
|
78116
77484
|
bundleDetail: MarketplaceStoreBundleDetailResponse;
|
|
78117
77485
|
category: MarketplaceStoreCategoryResponse;
|
|
@@ -78148,6 +77516,14 @@ export declare type MarketplaceStoreQueryApiAppReviewsByAppKeyArgs = {
|
|
|
78148
77516
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
78149
77517
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
78150
77518
|
};
|
|
77519
|
+
export declare type MarketplaceStoreQueryApiAppSoftwareVersionListingByAppIdArgs = {
|
|
77520
|
+
appId: Scalars['ID']['input'];
|
|
77521
|
+
buildNumber: Scalars['ID']['input'];
|
|
77522
|
+
};
|
|
77523
|
+
export declare type MarketplaceStoreQueryApiAppSoftwareVersionListingByAppKeyArgs = {
|
|
77524
|
+
appKey: Scalars['String']['input'];
|
|
77525
|
+
buildNumber: Scalars['ID']['input'];
|
|
77526
|
+
};
|
|
78151
77527
|
export declare type MarketplaceStoreQueryApiBillingSystemArgs = {
|
|
78152
77528
|
billingSystemInput: MarketplaceStoreBillingSystemInput;
|
|
78153
77529
|
};
|
|
@@ -78893,6 +78269,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
78893
78269
|
goalLinks?: Maybe<MercuryFocusAreaGoalLinks>;
|
|
78894
78270
|
headcountAggregation?: Maybe<MercuryHeadcountAggregation>;
|
|
78895
78271
|
health?: Maybe<MercuryFocusAreaHealth>;
|
|
78272
|
+
icon: MercuryFocusAreaIcon;
|
|
78896
78273
|
id: Scalars['ID']['output'];
|
|
78897
78274
|
linkedGoalSummary?: Maybe<MercuryFocusAreaLinkedGoalSummary>;
|
|
78898
78275
|
linkedWorkSummary?: Maybe<MercuryFocusAreaLinkedWorkSummary>;
|
|
@@ -79025,6 +78402,10 @@ export declare enum MercuryFocusAreaHierarchySortField {
|
|
|
79025
78402
|
HierarchyLevel = "HIERARCHY_LEVEL",
|
|
79026
78403
|
Name = "NAME"
|
|
79027
78404
|
}
|
|
78405
|
+
export declare type MercuryFocusAreaIcon = {
|
|
78406
|
+
__typename?: 'MercuryFocusAreaIcon';
|
|
78407
|
+
url: Scalars['String']['output'];
|
|
78408
|
+
};
|
|
79028
78409
|
export declare type MercuryFocusAreaLink = Node & {
|
|
79029
78410
|
__typename?: 'MercuryFocusAreaLink';
|
|
79030
78411
|
childFocusAreaId: Scalars['String']['output'];
|
|
@@ -80861,6 +80242,7 @@ export declare type Mutation = {
|
|
|
80861
80242
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
80862
80243
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
80863
80244
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
80245
|
+
agentStudio_createCustomAction?: Maybe<AgentStudioCreateCustomActionPayload>;
|
|
80864
80246
|
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
80865
80247
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
80866
80248
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
@@ -81050,9 +80432,6 @@ export declare type Mutation = {
|
|
|
81050
80432
|
confluenceLegacy_watchBlogs?: Maybe<ConfluenceLegacyWatchSpacePayload>;
|
|
81051
80433
|
confluenceLegacy_watchContent?: Maybe<ConfluenceLegacyWatchContentPayload>;
|
|
81052
80434
|
confluenceLegacy_watchSpace?: Maybe<ConfluenceLegacyWatchSpacePayload>;
|
|
81053
|
-
confluenceV2_createPage?: Maybe<ConfluenceV2CreatePagePayload>;
|
|
81054
|
-
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
81055
|
-
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
81056
80435
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
81057
80436
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
81058
80437
|
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
@@ -81463,6 +80842,10 @@ export declare type MutationAgentStudio_CreateAgentArgs = {
|
|
|
81463
80842
|
cloudId: Scalars['String']['input'];
|
|
81464
80843
|
input: AgentStudioCreateAgentInput;
|
|
81465
80844
|
};
|
|
80845
|
+
export declare type MutationAgentStudio_CreateCustomActionArgs = {
|
|
80846
|
+
cloudId: Scalars['String']['input'];
|
|
80847
|
+
input: AgentStudioCreateCustomActionInput;
|
|
80848
|
+
};
|
|
81466
80849
|
export declare type MutationAgentStudio_UpdateAgentActionsArgs = {
|
|
81467
80850
|
id: Scalars['ID']['input'];
|
|
81468
80851
|
input: AgentStudioActionConfigurationInput;
|
|
@@ -82042,15 +81425,6 @@ export declare type MutationConfluenceLegacy_WatchContentArgs = {
|
|
|
82042
81425
|
export declare type MutationConfluenceLegacy_WatchSpaceArgs = {
|
|
82043
81426
|
watchSpaceInput: ConfluenceLegacyWatchSpaceInput;
|
|
82044
81427
|
};
|
|
82045
|
-
export declare type MutationConfluenceV2_CreatePageArgs = {
|
|
82046
|
-
input: ConfluenceV2CreatePageInput;
|
|
82047
|
-
};
|
|
82048
|
-
export declare type MutationConfluenceV2_DeletePageArgs = {
|
|
82049
|
-
id: Scalars['ID']['input'];
|
|
82050
|
-
};
|
|
82051
|
-
export declare type MutationConfluenceV2_UpdatePageArgs = {
|
|
82052
|
-
input: ConfluenceV2UpdatePageInput;
|
|
82053
|
-
};
|
|
82054
81428
|
export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
82055
81429
|
cloudId: Scalars['ID']['input'];
|
|
82056
81430
|
input: Array<InputMaybe<NestedPageInput>>;
|
|
@@ -85842,6 +85216,8 @@ export declare type Query = {
|
|
|
85842
85216
|
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
85843
85217
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
85844
85218
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
85219
|
+
agentStudio_customActionById?: Maybe<AgentStudioCustomActionResult>;
|
|
85220
|
+
agentStudio_customActionsByIds?: Maybe<Array<Maybe<AgentStudioCustomAction>>>;
|
|
85845
85221
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
85846
85222
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
85847
85223
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
@@ -85879,6 +85255,7 @@ export declare type Query = {
|
|
|
85879
85255
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
85880
85256
|
blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
|
|
85881
85257
|
boardScope?: Maybe<BoardScope>;
|
|
85258
|
+
buildsByApp?: Maybe<BuildConnection>;
|
|
85882
85259
|
bulkPermitted?: Maybe<Array<Maybe<BulkPermittedResponse>>>;
|
|
85883
85260
|
canSplitIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
85884
85261
|
canvasToken?: Maybe<CanvasToken>;
|
|
@@ -85892,6 +85269,7 @@ export declare type Query = {
|
|
|
85892
85269
|
channelPlatform_getQueue?: Maybe<ChannelPlatformConnectQueue>;
|
|
85893
85270
|
channelPlatform_listQueues?: Maybe<Array<Maybe<ChannelPlatformConnectQueue>>>;
|
|
85894
85271
|
channelPlatform_sampleQueueById?: Maybe<ChannelPlatformSampleQueue>;
|
|
85272
|
+
channelPlatform_submitRequest?: Maybe<ChannelPlatformSubmitRequestResponse>;
|
|
85895
85273
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
85896
85274
|
classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
85897
85275
|
codeInJira?: Maybe<CodeInJira>;
|
|
@@ -86091,35 +85469,6 @@ export declare type Query = {
|
|
|
86091
85469
|
confluenceLegacy_webItems?: Maybe<Array<Maybe<ConfluenceLegacyWebItem>>>;
|
|
86092
85470
|
confluenceLegacy_webPanels?: Maybe<Array<Maybe<ConfluenceLegacyWebPanel>>>;
|
|
86093
85471
|
confluenceUsers?: Maybe<PaginatedPersonList>;
|
|
86094
|
-
confluenceV2_attachment?: Maybe<ConfluenceV2Attachment>;
|
|
86095
|
-
confluenceV2_blogPost?: Maybe<ConfluenceV2BlogPost>;
|
|
86096
|
-
confluenceV2_blogPosts?: Maybe<Array<Maybe<ConfluenceV2BlogPost>>>;
|
|
86097
|
-
confluenceV2_blogPostsForSpace?: Maybe<ConfluenceV2BlogPostConnection>;
|
|
86098
|
-
confluenceV2_contentPropertiesForAttachment?: Maybe<Array<Maybe<ConfluenceV2ContentProperty>>>;
|
|
86099
|
-
confluenceV2_contentPropertiesForBlogPost?: Maybe<Array<Maybe<ConfluenceV2ContentProperty>>>;
|
|
86100
|
-
confluenceV2_contentPropertiesForComment?: Maybe<Array<Maybe<ConfluenceV2ContentProperty>>>;
|
|
86101
|
-
confluenceV2_contentPropertiesForPage?: Maybe<Array<Maybe<ConfluenceV2ContentProperty>>>;
|
|
86102
|
-
confluenceV2_footerComment?: Maybe<ConfluenceV2FooterComment>;
|
|
86103
|
-
confluenceV2_footerCommentsForBlogPost?: Maybe<ConfluenceV2FooterCommentConnection>;
|
|
86104
|
-
confluenceV2_footerCommentsForPage?: Maybe<ConfluenceV2FooterCommentConnection>;
|
|
86105
|
-
confluenceV2_footerCommentsForParentFooterComment?: Maybe<ConfluenceV2FooterCommentConnection>;
|
|
86106
|
-
confluenceV2_inlineComment?: Maybe<ConfluenceV2InlineComment>;
|
|
86107
|
-
confluenceV2_inlineCommentsForBlogPost?: Maybe<ConfluenceV2InlineCommentConnection>;
|
|
86108
|
-
confluenceV2_inlineCommentsForPage?: Maybe<ConfluenceV2InlineCommentConnection>;
|
|
86109
|
-
confluenceV2_inlineCommentsForParentInlineComment?: Maybe<ConfluenceV2InlineCommentConnection>;
|
|
86110
|
-
confluenceV2_macros?: Maybe<ConfluenceV2MacroConnection>;
|
|
86111
|
-
confluenceV2_organization?: Maybe<ConfluenceV2Organization>;
|
|
86112
|
-
confluenceV2_page?: Maybe<ConfluenceV2Page>;
|
|
86113
|
-
confluenceV2_pages?: Maybe<Array<Maybe<ConfluenceV2Page>>>;
|
|
86114
|
-
confluenceV2_pagesForSpace?: Maybe<ConfluenceV2PageConnection>;
|
|
86115
|
-
confluenceV2_renderedMacro?: Maybe<ConfluenceV2RenderedMacro>;
|
|
86116
|
-
confluenceV2_space?: Maybe<ConfluenceV2Space>;
|
|
86117
|
-
confluenceV2_spaceForPage?: Maybe<ConfluenceV2SpacePage>;
|
|
86118
|
-
confluenceV2_spaceLookAndFeel?: Maybe<ConfluenceV2LookAndFeel>;
|
|
86119
|
-
confluenceV2_spaceProperties?: Maybe<ConfluenceV2SpacePropertyConnection>;
|
|
86120
|
-
confluenceV2_spaceSettings?: Maybe<ConfluenceV2SpaceSettings>;
|
|
86121
|
-
confluenceV2_spaceTheme?: Maybe<ConfluenceV2Theme>;
|
|
86122
|
-
confluenceV2_spaces?: Maybe<Array<Maybe<ConfluenceV2Space>>>;
|
|
86123
85472
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
86124
85473
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
86125
85474
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
@@ -86216,7 +85565,6 @@ export declare type Query = {
|
|
|
86216
85565
|
devOpsServiceTypes?: Maybe<Array<DevOpsServiceType>>;
|
|
86217
85566
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
86218
85567
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
86219
|
-
devOpsTools?: Maybe<DevOpsTools>;
|
|
86220
85568
|
devai_autodevAgentForJob?: Maybe<DevAiRovoAgent>;
|
|
86221
85569
|
devai_autodevIssueScoping?: Maybe<DevAiIssueScopingResult>;
|
|
86222
85570
|
devai_autodevIssueScopingScoreForJob?: Maybe<DevAiIssueScopingResult>;
|
|
@@ -86372,6 +85720,7 @@ export declare type Query = {
|
|
|
86372
85720
|
loom_video?: Maybe<LoomVideo>;
|
|
86373
85721
|
loom_videoDurations?: Maybe<LoomVideoDurations>;
|
|
86374
85722
|
loom_videos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
85723
|
+
loom_workspaceTrendingVideos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
86375
85724
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
86376
85725
|
macroBodyRenderer?: Maybe<MacroBody>;
|
|
86377
85726
|
macros?: Maybe<MacroConnection>;
|
|
@@ -86590,6 +85939,12 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
|
86590
85939
|
export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
86591
85940
|
id: Scalars['ID']['input'];
|
|
86592
85941
|
};
|
|
85942
|
+
export declare type QueryAgentStudio_CustomActionByIdArgs = {
|
|
85943
|
+
id: Scalars['ID']['input'];
|
|
85944
|
+
};
|
|
85945
|
+
export declare type QueryAgentStudio_CustomActionsByIdsArgs = {
|
|
85946
|
+
ids: Array<Scalars['ID']['input']>;
|
|
85947
|
+
};
|
|
86593
85948
|
export declare type QueryAgentStudio_GetAgentsArgs = {
|
|
86594
85949
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86595
85950
|
cloudId: Scalars['String']['input'];
|
|
@@ -86760,6 +86115,13 @@ export declare type QueryBoardScopeArgs = {
|
|
|
86760
86115
|
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
86761
86116
|
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86762
86117
|
};
|
|
86118
|
+
export declare type QueryBuildsByAppArgs = {
|
|
86119
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86120
|
+
appId: Scalars['ID']['input'];
|
|
86121
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
86122
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86123
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
86124
|
+
};
|
|
86763
86125
|
export declare type QueryBulkPermittedArgs = {
|
|
86764
86126
|
dontRequirePrincipalsInSite?: InputMaybe<Array<InputMaybe<Scalars['Boolean']['input']>>>;
|
|
86765
86127
|
permissionIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -86808,6 +86170,10 @@ export declare type QueryChannelPlatform_GetQueueArgs = {
|
|
|
86808
86170
|
export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
|
|
86809
86171
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
86810
86172
|
};
|
|
86173
|
+
export declare type QueryChannelPlatform_SubmitRequestArgs = {
|
|
86174
|
+
request?: InputMaybe<ChannelPlatformSubmitRequestInput>;
|
|
86175
|
+
requestType?: InputMaybe<Scalars['String']['input']>;
|
|
86176
|
+
};
|
|
86811
86177
|
export declare type QueryClassificationLevelArgs = {
|
|
86812
86178
|
id: Scalars['String']['input'];
|
|
86813
86179
|
};
|
|
@@ -87665,124 +87031,6 @@ export declare type QueryConfluenceUsersArgs = {
|
|
|
87665
87031
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
87666
87032
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
87667
87033
|
};
|
|
87668
|
-
export declare type QueryConfluenceV2_AttachmentArgs = {
|
|
87669
|
-
id: Scalars['ID']['input'];
|
|
87670
|
-
};
|
|
87671
|
-
export declare type QueryConfluenceV2_BlogPostArgs = {
|
|
87672
|
-
id: Scalars['ID']['input'];
|
|
87673
|
-
status?: InputMaybe<Array<ConfluenceV2BlogStatus>>;
|
|
87674
|
-
};
|
|
87675
|
-
export declare type QueryConfluenceV2_BlogPostsArgs = {
|
|
87676
|
-
ids: Array<Scalars['ID']['input']>;
|
|
87677
|
-
status?: InputMaybe<Array<ConfluenceV2BulkBlogPostStatus>>;
|
|
87678
|
-
};
|
|
87679
|
-
export declare type QueryConfluenceV2_BlogPostsForSpaceArgs = {
|
|
87680
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87681
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87682
|
-
id: Scalars['ID']['input'];
|
|
87683
|
-
};
|
|
87684
|
-
export declare type QueryConfluenceV2_ContentPropertiesForAttachmentArgs = {
|
|
87685
|
-
attachmentId: Scalars['ID']['input'];
|
|
87686
|
-
keys: Array<Scalars['String']['input']>;
|
|
87687
|
-
};
|
|
87688
|
-
export declare type QueryConfluenceV2_ContentPropertiesForBlogPostArgs = {
|
|
87689
|
-
blogPostId: Scalars['ID']['input'];
|
|
87690
|
-
keys: Array<Scalars['String']['input']>;
|
|
87691
|
-
};
|
|
87692
|
-
export declare type QueryConfluenceV2_ContentPropertiesForCommentArgs = {
|
|
87693
|
-
commentId: Scalars['ID']['input'];
|
|
87694
|
-
keys: Array<Scalars['String']['input']>;
|
|
87695
|
-
};
|
|
87696
|
-
export declare type QueryConfluenceV2_ContentPropertiesForPageArgs = {
|
|
87697
|
-
keys: Array<Scalars['String']['input']>;
|
|
87698
|
-
pageId: Scalars['ID']['input'];
|
|
87699
|
-
};
|
|
87700
|
-
export declare type QueryConfluenceV2_FooterCommentArgs = {
|
|
87701
|
-
id: Scalars['ID']['input'];
|
|
87702
|
-
};
|
|
87703
|
-
export declare type QueryConfluenceV2_FooterCommentsForBlogPostArgs = {
|
|
87704
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87705
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87706
|
-
id: Scalars['ID']['input'];
|
|
87707
|
-
status?: InputMaybe<Array<ConfluenceV2FooterCommentStatus>>;
|
|
87708
|
-
};
|
|
87709
|
-
export declare type QueryConfluenceV2_FooterCommentsForPageArgs = {
|
|
87710
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87711
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87712
|
-
id: Scalars['ID']['input'];
|
|
87713
|
-
status?: InputMaybe<Array<ConfluenceV2FooterCommentStatus>>;
|
|
87714
|
-
};
|
|
87715
|
-
export declare type QueryConfluenceV2_FooterCommentsForParentFooterCommentArgs = {
|
|
87716
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87717
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87718
|
-
id: Scalars['ID']['input'];
|
|
87719
|
-
};
|
|
87720
|
-
export declare type QueryConfluenceV2_InlineCommentArgs = {
|
|
87721
|
-
id: Scalars['ID']['input'];
|
|
87722
|
-
};
|
|
87723
|
-
export declare type QueryConfluenceV2_InlineCommentsForBlogPostArgs = {
|
|
87724
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87725
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87726
|
-
id: Scalars['ID']['input'];
|
|
87727
|
-
resolutionStatus?: InputMaybe<Array<ConfluenceV2InlineCommentResolutionStatus>>;
|
|
87728
|
-
status?: InputMaybe<Array<ConfluenceV2InlineCommentStatus>>;
|
|
87729
|
-
};
|
|
87730
|
-
export declare type QueryConfluenceV2_InlineCommentsForPageArgs = {
|
|
87731
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87732
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87733
|
-
id: Scalars['ID']['input'];
|
|
87734
|
-
resolutionStatus?: InputMaybe<Array<ConfluenceV2InlineCommentResolutionStatus>>;
|
|
87735
|
-
status?: InputMaybe<Array<ConfluenceV2InlineCommentStatus>>;
|
|
87736
|
-
};
|
|
87737
|
-
export declare type QueryConfluenceV2_InlineCommentsForParentInlineCommentArgs = {
|
|
87738
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87739
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87740
|
-
id: Scalars['ID']['input'];
|
|
87741
|
-
};
|
|
87742
|
-
export declare type QueryConfluenceV2_MacrosArgs = {
|
|
87743
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87744
|
-
blocklist?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
87745
|
-
contentId: Scalars['ID']['input'];
|
|
87746
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87747
|
-
};
|
|
87748
|
-
export declare type QueryConfluenceV2_PageArgs = {
|
|
87749
|
-
id: Scalars['ID']['input'];
|
|
87750
|
-
status?: InputMaybe<Array<ConfluenceV2PageStatus>>;
|
|
87751
|
-
};
|
|
87752
|
-
export declare type QueryConfluenceV2_PagesArgs = {
|
|
87753
|
-
ids: Array<Scalars['ID']['input']>;
|
|
87754
|
-
status?: InputMaybe<Array<ConfluenceV2BulkPageStatus>>;
|
|
87755
|
-
};
|
|
87756
|
-
export declare type QueryConfluenceV2_PagesForSpaceArgs = {
|
|
87757
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87758
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87759
|
-
id: Scalars['ID']['input'];
|
|
87760
|
-
};
|
|
87761
|
-
export declare type QueryConfluenceV2_RenderedMacroArgs = {
|
|
87762
|
-
adf: Scalars['String']['input'];
|
|
87763
|
-
contentId: Scalars['ID']['input'];
|
|
87764
|
-
};
|
|
87765
|
-
export declare type QueryConfluenceV2_SpaceArgs = {
|
|
87766
|
-
id: Scalars['ID']['input'];
|
|
87767
|
-
};
|
|
87768
|
-
export declare type QueryConfluenceV2_SpaceForPageArgs = {
|
|
87769
|
-
id: Scalars['ID']['input'];
|
|
87770
|
-
};
|
|
87771
|
-
export declare type QueryConfluenceV2_SpaceLookAndFeelArgs = {
|
|
87772
|
-
id: Scalars['ID']['input'];
|
|
87773
|
-
};
|
|
87774
|
-
export declare type QueryConfluenceV2_SpacePropertiesArgs = {
|
|
87775
|
-
spaceId: Scalars['ID']['input'];
|
|
87776
|
-
};
|
|
87777
|
-
export declare type QueryConfluenceV2_SpaceSettingsArgs = {
|
|
87778
|
-
id: Scalars['ID']['input'];
|
|
87779
|
-
};
|
|
87780
|
-
export declare type QueryConfluenceV2_SpaceThemeArgs = {
|
|
87781
|
-
id: Scalars['ID']['input'];
|
|
87782
|
-
};
|
|
87783
|
-
export declare type QueryConfluenceV2_SpacesArgs = {
|
|
87784
|
-
ids: Array<Scalars['ID']['input']>;
|
|
87785
|
-
};
|
|
87786
87034
|
export declare type QueryConfluence_AtlassianUserArgs = {
|
|
87787
87035
|
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
87788
87036
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -88641,7 +87889,7 @@ export declare type QueryJira_AssociatedFieldConfigSchemesArgs = {
|
|
|
88641
87889
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
88642
87890
|
cloudId: Scalars['ID']['input'];
|
|
88643
87891
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88644
|
-
input?: InputMaybe<
|
|
87892
|
+
input?: InputMaybe<JiraFieldConfigSchemesInput>;
|
|
88645
87893
|
};
|
|
88646
87894
|
export declare type QueryJira_AssociatedFieldConfigSchemesCountArgs = {
|
|
88647
87895
|
cloudId: Scalars['ID']['input'];
|
|
@@ -88651,7 +87899,7 @@ export declare type QueryJira_AvailableFieldConfigSchemesArgs = {
|
|
|
88651
87899
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
88652
87900
|
cloudId: Scalars['ID']['input'];
|
|
88653
87901
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88654
|
-
input?: InputMaybe<
|
|
87902
|
+
input?: InputMaybe<JiraFieldConfigSchemesInput>;
|
|
88655
87903
|
};
|
|
88656
87904
|
export declare type QueryJira_BoardViewArgs = {
|
|
88657
87905
|
input: JiraBoardViewInput;
|
|
@@ -88760,6 +88008,9 @@ export declare type QueryLoom_VideoDurationsArgs = {
|
|
|
88760
88008
|
export declare type QueryLoom_VideosArgs = {
|
|
88761
88009
|
ids: Array<Scalars['ID']['input']>;
|
|
88762
88010
|
};
|
|
88011
|
+
export declare type QueryLoom_WorkspaceTrendingVideosArgs = {
|
|
88012
|
+
id: Scalars['ID']['input'];
|
|
88013
|
+
};
|
|
88763
88014
|
export declare type QueryMacroBodyRendererArgs = {
|
|
88764
88015
|
adf: Scalars['String']['input'];
|
|
88765
88016
|
containedRender?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -89566,6 +88817,7 @@ export declare type QuotaInfo = {
|
|
|
89566
88817
|
export declare type RadarAriFieldValue = {
|
|
89567
88818
|
__typename?: 'RadarAriFieldValue';
|
|
89568
88819
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
88820
|
+
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89569
88821
|
value?: Maybe<RadarAriObject>;
|
|
89570
88822
|
};
|
|
89571
88823
|
export declare type RadarAriObject = MercuryChangeProposal | MercuryFocusArea | RadarPosition | RadarWorker;
|
|
@@ -91738,6 +90990,7 @@ export declare type SearchConfluenceFilter = {
|
|
|
91738
90990
|
};
|
|
91739
90991
|
export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider & SearchResult & {
|
|
91740
90992
|
__typename?: 'SearchConfluencePageBlogAttachment';
|
|
90993
|
+
bodyText?: Maybe<Scalars['String']['output']>;
|
|
91741
90994
|
confluenceEntity?: Maybe<SearchConfluenceEntity>;
|
|
91742
90995
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
91743
90996
|
description: Scalars['String']['output'];
|
|
@@ -92399,6 +91652,7 @@ export declare type SearchThirdPartyFilter = {
|
|
|
92399
91652
|
assignees?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
92400
91653
|
containerAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
92401
91654
|
containerNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
91655
|
+
createdBy?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
92402
91656
|
excludeSubtypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
92403
91657
|
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
92404
91658
|
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
@@ -97081,6 +96335,21 @@ export declare type TownsquareCreateRelationshipsPayload = {
|
|
|
97081
96335
|
relationships?: Maybe<Array<TownsquareRelationship>>;
|
|
97082
96336
|
success: Scalars['Boolean']['output'];
|
|
97083
96337
|
};
|
|
96338
|
+
export declare type TownsquareDeleteGoalHasJiraAlignProjectInput = {
|
|
96339
|
+
from: Scalars['String']['input'];
|
|
96340
|
+
to: Scalars['String']['input'];
|
|
96341
|
+
};
|
|
96342
|
+
export declare type TownsquareDeleteGoalHasJiraAlignProjectMutationErrorExtension = MutationErrorExtension & {
|
|
96343
|
+
__typename?: 'TownsquareDeleteGoalHasJiraAlignProjectMutationErrorExtension';
|
|
96344
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
96345
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
96346
|
+
};
|
|
96347
|
+
export declare type TownsquareDeleteGoalHasJiraAlignProjectPayload = {
|
|
96348
|
+
__typename?: 'TownsquareDeleteGoalHasJiraAlignProjectPayload';
|
|
96349
|
+
errors?: Maybe<Array<MutationError>>;
|
|
96350
|
+
node?: Maybe<JiraAlignAggProject>;
|
|
96351
|
+
success: Scalars['Boolean']['output'];
|
|
96352
|
+
};
|
|
97084
96353
|
export declare type TownsquareDeleteRelationshipsInput = {
|
|
97085
96354
|
relationships: Array<TownsquareRelationshipInput>;
|
|
97086
96355
|
};
|
|
@@ -97363,6 +96632,7 @@ export declare type TownsquareMutationApi = {
|
|
|
97363
96632
|
createGoalHasJiraAlignProject?: Maybe<TownsquareCreateGoalHasJiraAlignProjectPayload>;
|
|
97364
96633
|
createGoalType?: Maybe<TownsquareCreateGoalTypePayload>;
|
|
97365
96634
|
createRelationships?: Maybe<TownsquareCreateRelationshipsPayload>;
|
|
96635
|
+
deleteGoalHasJiraAlignProject?: Maybe<TownsquareDeleteGoalHasJiraAlignProjectPayload>;
|
|
97366
96636
|
deleteRelationships?: Maybe<TownsquareDeleteRelationshipsPayload>;
|
|
97367
96637
|
editGoal?: Maybe<TownsquareEditGoalPayload>;
|
|
97368
96638
|
editGoalType?: Maybe<TownsquareEditGoalTypePayload>;
|
|
@@ -97385,6 +96655,9 @@ export declare type TownsquareMutationApiCreateGoalTypeArgs = {
|
|
|
97385
96655
|
export declare type TownsquareMutationApiCreateRelationshipsArgs = {
|
|
97386
96656
|
input: TownsquareCreateRelationshipsInput;
|
|
97387
96657
|
};
|
|
96658
|
+
export declare type TownsquareMutationApiDeleteGoalHasJiraAlignProjectArgs = {
|
|
96659
|
+
input: TownsquareDeleteGoalHasJiraAlignProjectInput;
|
|
96660
|
+
};
|
|
97388
96661
|
export declare type TownsquareMutationApiDeleteRelationshipsArgs = {
|
|
97389
96662
|
input: TownsquareDeleteRelationshipsInput;
|
|
97390
96663
|
};
|
|
@@ -98681,6 +97954,7 @@ export declare type TrelloCardUpdated = {
|
|
|
98681
97954
|
labels?: Maybe<TrelloLabelUpdatedConnection>;
|
|
98682
97955
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
98683
97956
|
limits?: Maybe<TrelloCardLimits>;
|
|
97957
|
+
list?: Maybe<TrelloList>;
|
|
98684
97958
|
location?: Maybe<TrelloCardLocation>;
|
|
98685
97959
|
members?: Maybe<TrelloMemberUpdatedConnection>;
|
|
98686
97960
|
mirrorSource?: Maybe<TrelloCard>;
|
|
@@ -98689,9 +97963,14 @@ export declare type TrelloCardUpdated = {
|
|
|
98689
97963
|
name?: Maybe<Scalars['String']['output']>;
|
|
98690
97964
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
98691
97965
|
onChecklistDeleted?: Maybe<Array<TrelloChecklistDeleted>>;
|
|
97966
|
+
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
98692
97967
|
position?: Maybe<Scalars['Float']['output']>;
|
|
98693
97968
|
role?: Maybe<TrelloCardRole>;
|
|
97969
|
+
shortId?: Maybe<Scalars['Int']['output']>;
|
|
98694
97970
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
97971
|
+
shortUrl?: Maybe<Scalars['URL']['output']>;
|
|
97972
|
+
singleInstrumentationId?: Maybe<Scalars['String']['output']>;
|
|
97973
|
+
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
98695
97974
|
stickers?: Maybe<TrelloStickerUpdatedConnection>;
|
|
98696
97975
|
url?: Maybe<Scalars['URL']['output']>;
|
|
98697
97976
|
};
|
|
@@ -99074,8 +98353,13 @@ export declare type TrelloImagePreviewEdge = {
|
|
|
99074
98353
|
cursor: Scalars['String']['output'];
|
|
99075
98354
|
node: TrelloImagePreview;
|
|
99076
98355
|
};
|
|
98356
|
+
export declare type TrelloImagePreviewEdgeUpdated = {
|
|
98357
|
+
__typename?: 'TrelloImagePreviewEdgeUpdated';
|
|
98358
|
+
node: TrelloImagePreview;
|
|
98359
|
+
};
|
|
99077
98360
|
export declare type TrelloImagePreviewUpdatedConnection = {
|
|
99078
98361
|
__typename?: 'TrelloImagePreviewUpdatedConnection';
|
|
98362
|
+
edges?: Maybe<Array<TrelloImagePreviewEdgeUpdated>>;
|
|
99079
98363
|
nodes?: Maybe<Array<TrelloImagePreview>>;
|
|
99080
98364
|
};
|
|
99081
98365
|
export declare type TrelloInbox = {
|
|
@@ -102482,6 +101766,7 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
102482
101766
|
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjectionResult>;
|
|
102483
101767
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
102484
101768
|
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
101769
|
+
lastModified?: Maybe<Scalars['DateTime']['output']>;
|
|
102485
101770
|
liveIntentsCount?: Maybe<Scalars['Int']['output']>;
|
|
102486
101771
|
offerEscalationConfig?: Maybe<VirtualAgentOfferEscalationConfig>;
|
|
102487
101772
|
respondToQueries: Scalars['Boolean']['output'];
|