@forge/cli-shared 6.11.0-next.2 → 6.11.0-next.3
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 +7 -0
- package/out/graphql/graphql-types.d.ts +157 -1008
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +23 -137
- 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 = {
|
|
@@ -56413,9 +55672,6 @@ export declare type JiraAssignableUsersEdge = {
|
|
|
56413
55672
|
cursor: Scalars['String']['output'];
|
|
56414
55673
|
node?: Maybe<User>;
|
|
56415
55674
|
};
|
|
56416
|
-
export declare type JiraAssociatedFieldConfigSchemesInput = {
|
|
56417
|
-
fieldId: Scalars['ID']['input'];
|
|
56418
|
-
};
|
|
56419
55675
|
export declare type JiraAtlassianIntelligenceAction = JiraAccessAtlassianIntelligenceFeature | JiraContactOrgAdminToEnableAtlassianIntelligence | JiraEnableAtlassianIntelligenceDeepLink;
|
|
56420
55676
|
export declare enum JiraAtlassianIntelligenceFeatureEnum {
|
|
56421
55677
|
AiMate = "AI_MATE",
|
|
@@ -56832,10 +56088,6 @@ export declare type JiraAvailableField = JiraProjectFieldAssociationInterface &
|
|
|
56832
56088
|
fieldOperation?: Maybe<JiraFieldOperation>;
|
|
56833
56089
|
id: Scalars['ID']['output'];
|
|
56834
56090
|
};
|
|
56835
|
-
export declare type JiraAvailableFieldConfigSchemesInput = {
|
|
56836
|
-
fieldId: Scalars['ID']['input'];
|
|
56837
|
-
schemeNameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
56838
|
-
};
|
|
56839
56091
|
export declare type JiraAvailableFieldsConnection = {
|
|
56840
56092
|
__typename?: 'JiraAvailableFieldsConnection';
|
|
56841
56093
|
edges?: Maybe<Array<Maybe<JiraAvailableFieldsEdge>>>;
|
|
@@ -59690,6 +58942,12 @@ export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
59690
58942
|
export declare type JiraDurationFieldInput = {
|
|
59691
58943
|
originalEstimateField?: InputMaybe<Scalars['String']['input']>;
|
|
59692
58944
|
};
|
|
58945
|
+
export declare type JiraEchoWhereInput = {
|
|
58946
|
+
delayMs?: InputMaybe<Scalars['Int']['input']>;
|
|
58947
|
+
message?: InputMaybe<Scalars['String']['input']>;
|
|
58948
|
+
withDataError?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58949
|
+
withTopLevelError?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58950
|
+
};
|
|
59693
58951
|
export declare type JiraEditCustomFieldInput = {
|
|
59694
58952
|
cloudId: Scalars['ID']['input'];
|
|
59695
58953
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -60017,6 +59275,10 @@ export declare type JiraFieldConfigSchemesEdge = {
|
|
|
60017
59275
|
cursor: Scalars['String']['output'];
|
|
60018
59276
|
node?: Maybe<JiraFieldConfigScheme>;
|
|
60019
59277
|
};
|
|
59278
|
+
export declare type JiraFieldConfigSchemesInput = {
|
|
59279
|
+
fieldId: Scalars['ID']['input'];
|
|
59280
|
+
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
59281
|
+
};
|
|
60020
59282
|
export declare type JiraFieldConnection = {
|
|
60021
59283
|
__typename?: 'JiraFieldConnection';
|
|
60022
59284
|
edges?: Maybe<Array<Maybe<JiraFieldEdge>>>;
|
|
@@ -63570,6 +62832,7 @@ export declare type JiraJqlVersionsUnreleasedArgs = {
|
|
|
63570
62832
|
};
|
|
63571
62833
|
export declare enum JiraJqlViewContext {
|
|
63572
62834
|
JpdRoadmaps = "JPD_ROADMAPS",
|
|
62835
|
+
JsmQueuePage = "JSM_QUEUE_PAGE",
|
|
63573
62836
|
JsmSummaryPage = "JSM_SUMMARY_PAGE",
|
|
63574
62837
|
JswPlans = "JSW_PLANS",
|
|
63575
62838
|
JswSummaryPage = "JSW_SUMMARY_PAGE",
|
|
@@ -67085,6 +66348,7 @@ export declare type JiraQuery = {
|
|
|
67085
66348
|
deploymentsFeaturePreconditionByProjectKey?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
67086
66349
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
67087
66350
|
devOpsProviders?: Maybe<Array<Maybe<JiraDevOpsProvider>>>;
|
|
66351
|
+
echo?: Maybe<Scalars['String']['output']>;
|
|
67088
66352
|
epicLinkFieldKey?: Maybe<Scalars['String']['output']>;
|
|
67089
66353
|
exportIssueDetails?: Maybe<JiraExportIssueDetailsResponse>;
|
|
67090
66354
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
@@ -67405,6 +66669,10 @@ export declare type JiraQueryDevOpsProvidersArgs = {
|
|
|
67405
66669
|
cloudId: Scalars['ID']['input'];
|
|
67406
66670
|
filter?: InputMaybe<Array<JiraDevOpsCapability>>;
|
|
67407
66671
|
};
|
|
66672
|
+
export declare type JiraQueryEchoArgs = {
|
|
66673
|
+
cloudId: Scalars['ID']['input'];
|
|
66674
|
+
where?: InputMaybe<JiraEchoWhereInput>;
|
|
66675
|
+
};
|
|
67408
66676
|
export declare type JiraQueryEpicLinkFieldKeyArgs = {
|
|
67409
66677
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
67410
66678
|
};
|
|
@@ -70640,10 +69908,9 @@ export declare enum JiraSidebarMenuItemReorderOperation {
|
|
|
70640
69908
|
After = "AFTER",
|
|
70641
69909
|
Before = "BEFORE",
|
|
70642
69910
|
MoveDown = "MOVE_DOWN",
|
|
70643
|
-
|
|
70644
|
-
|
|
70645
|
-
MoveUp = "MOVE_UP"
|
|
70646
|
-
Remove = "REMOVE"
|
|
69911
|
+
MoveToBottom = "MOVE_TO_BOTTOM",
|
|
69912
|
+
MoveToTop = "MOVE_TO_TOP",
|
|
69913
|
+
MoveUp = "MOVE_UP"
|
|
70647
69914
|
}
|
|
70648
69915
|
export declare type JiraSimilarIssues = {
|
|
70649
69916
|
__typename?: 'JiraSimilarIssues';
|
|
@@ -78893,6 +78160,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
78893
78160
|
goalLinks?: Maybe<MercuryFocusAreaGoalLinks>;
|
|
78894
78161
|
headcountAggregation?: Maybe<MercuryHeadcountAggregation>;
|
|
78895
78162
|
health?: Maybe<MercuryFocusAreaHealth>;
|
|
78163
|
+
icon: MercuryFocusAreaIcon;
|
|
78896
78164
|
id: Scalars['ID']['output'];
|
|
78897
78165
|
linkedGoalSummary?: Maybe<MercuryFocusAreaLinkedGoalSummary>;
|
|
78898
78166
|
linkedWorkSummary?: Maybe<MercuryFocusAreaLinkedWorkSummary>;
|
|
@@ -79025,6 +78293,10 @@ export declare enum MercuryFocusAreaHierarchySortField {
|
|
|
79025
78293
|
HierarchyLevel = "HIERARCHY_LEVEL",
|
|
79026
78294
|
Name = "NAME"
|
|
79027
78295
|
}
|
|
78296
|
+
export declare type MercuryFocusAreaIcon = {
|
|
78297
|
+
__typename?: 'MercuryFocusAreaIcon';
|
|
78298
|
+
url: Scalars['String']['output'];
|
|
78299
|
+
};
|
|
79028
78300
|
export declare type MercuryFocusAreaLink = Node & {
|
|
79029
78301
|
__typename?: 'MercuryFocusAreaLink';
|
|
79030
78302
|
childFocusAreaId: Scalars['String']['output'];
|
|
@@ -80861,6 +80133,7 @@ export declare type Mutation = {
|
|
|
80861
80133
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
80862
80134
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
80863
80135
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
80136
|
+
agentStudio_createCustomAction?: Maybe<AgentStudioCreateCustomActionPayload>;
|
|
80864
80137
|
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
80865
80138
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
80866
80139
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
@@ -81050,9 +80323,6 @@ export declare type Mutation = {
|
|
|
81050
80323
|
confluenceLegacy_watchBlogs?: Maybe<ConfluenceLegacyWatchSpacePayload>;
|
|
81051
80324
|
confluenceLegacy_watchContent?: Maybe<ConfluenceLegacyWatchContentPayload>;
|
|
81052
80325
|
confluenceLegacy_watchSpace?: Maybe<ConfluenceLegacyWatchSpacePayload>;
|
|
81053
|
-
confluenceV2_createPage?: Maybe<ConfluenceV2CreatePagePayload>;
|
|
81054
|
-
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
81055
|
-
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
81056
80326
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
81057
80327
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
81058
80328
|
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
@@ -81463,6 +80733,10 @@ export declare type MutationAgentStudio_CreateAgentArgs = {
|
|
|
81463
80733
|
cloudId: Scalars['String']['input'];
|
|
81464
80734
|
input: AgentStudioCreateAgentInput;
|
|
81465
80735
|
};
|
|
80736
|
+
export declare type MutationAgentStudio_CreateCustomActionArgs = {
|
|
80737
|
+
cloudId: Scalars['String']['input'];
|
|
80738
|
+
input: AgentStudioCreateCustomActionInput;
|
|
80739
|
+
};
|
|
81466
80740
|
export declare type MutationAgentStudio_UpdateAgentActionsArgs = {
|
|
81467
80741
|
id: Scalars['ID']['input'];
|
|
81468
80742
|
input: AgentStudioActionConfigurationInput;
|
|
@@ -82042,15 +81316,6 @@ export declare type MutationConfluenceLegacy_WatchContentArgs = {
|
|
|
82042
81316
|
export declare type MutationConfluenceLegacy_WatchSpaceArgs = {
|
|
82043
81317
|
watchSpaceInput: ConfluenceLegacyWatchSpaceInput;
|
|
82044
81318
|
};
|
|
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
81319
|
export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
82055
81320
|
cloudId: Scalars['ID']['input'];
|
|
82056
81321
|
input: Array<InputMaybe<NestedPageInput>>;
|
|
@@ -85842,6 +85107,8 @@ export declare type Query = {
|
|
|
85842
85107
|
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
85843
85108
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
85844
85109
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
85110
|
+
agentStudio_customActionById?: Maybe<AgentStudioCustomActionResult>;
|
|
85111
|
+
agentStudio_customActionsByIds?: Maybe<Array<Maybe<AgentStudioCustomAction>>>;
|
|
85845
85112
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
85846
85113
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
85847
85114
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
@@ -85879,6 +85146,7 @@ export declare type Query = {
|
|
|
85879
85146
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
85880
85147
|
blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
|
|
85881
85148
|
boardScope?: Maybe<BoardScope>;
|
|
85149
|
+
buildsByApp?: Maybe<BuildConnection>;
|
|
85882
85150
|
bulkPermitted?: Maybe<Array<Maybe<BulkPermittedResponse>>>;
|
|
85883
85151
|
canSplitIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
85884
85152
|
canvasToken?: Maybe<CanvasToken>;
|
|
@@ -85892,6 +85160,7 @@ export declare type Query = {
|
|
|
85892
85160
|
channelPlatform_getQueue?: Maybe<ChannelPlatformConnectQueue>;
|
|
85893
85161
|
channelPlatform_listQueues?: Maybe<Array<Maybe<ChannelPlatformConnectQueue>>>;
|
|
85894
85162
|
channelPlatform_sampleQueueById?: Maybe<ChannelPlatformSampleQueue>;
|
|
85163
|
+
channelPlatform_submitRequest?: Maybe<ChannelPlatformSubmitRequestResponse>;
|
|
85895
85164
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
85896
85165
|
classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
85897
85166
|
codeInJira?: Maybe<CodeInJira>;
|
|
@@ -86091,35 +85360,6 @@ export declare type Query = {
|
|
|
86091
85360
|
confluenceLegacy_webItems?: Maybe<Array<Maybe<ConfluenceLegacyWebItem>>>;
|
|
86092
85361
|
confluenceLegacy_webPanels?: Maybe<Array<Maybe<ConfluenceLegacyWebPanel>>>;
|
|
86093
85362
|
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
85363
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
86124
85364
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
86125
85365
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
@@ -86216,7 +85456,6 @@ export declare type Query = {
|
|
|
86216
85456
|
devOpsServiceTypes?: Maybe<Array<DevOpsServiceType>>;
|
|
86217
85457
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
86218
85458
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
86219
|
-
devOpsTools?: Maybe<DevOpsTools>;
|
|
86220
85459
|
devai_autodevAgentForJob?: Maybe<DevAiRovoAgent>;
|
|
86221
85460
|
devai_autodevIssueScoping?: Maybe<DevAiIssueScopingResult>;
|
|
86222
85461
|
devai_autodevIssueScopingScoreForJob?: Maybe<DevAiIssueScopingResult>;
|
|
@@ -86590,6 +85829,12 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
|
86590
85829
|
export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
86591
85830
|
id: Scalars['ID']['input'];
|
|
86592
85831
|
};
|
|
85832
|
+
export declare type QueryAgentStudio_CustomActionByIdArgs = {
|
|
85833
|
+
id: Scalars['ID']['input'];
|
|
85834
|
+
};
|
|
85835
|
+
export declare type QueryAgentStudio_CustomActionsByIdsArgs = {
|
|
85836
|
+
ids: Array<Scalars['ID']['input']>;
|
|
85837
|
+
};
|
|
86593
85838
|
export declare type QueryAgentStudio_GetAgentsArgs = {
|
|
86594
85839
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86595
85840
|
cloudId: Scalars['String']['input'];
|
|
@@ -86760,6 +86005,13 @@ export declare type QueryBoardScopeArgs = {
|
|
|
86760
86005
|
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
86761
86006
|
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86762
86007
|
};
|
|
86008
|
+
export declare type QueryBuildsByAppArgs = {
|
|
86009
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86010
|
+
appId: Scalars['ID']['input'];
|
|
86011
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
86012
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86013
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
86014
|
+
};
|
|
86763
86015
|
export declare type QueryBulkPermittedArgs = {
|
|
86764
86016
|
dontRequirePrincipalsInSite?: InputMaybe<Array<InputMaybe<Scalars['Boolean']['input']>>>;
|
|
86765
86017
|
permissionIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -86808,6 +86060,10 @@ export declare type QueryChannelPlatform_GetQueueArgs = {
|
|
|
86808
86060
|
export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
|
|
86809
86061
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
86810
86062
|
};
|
|
86063
|
+
export declare type QueryChannelPlatform_SubmitRequestArgs = {
|
|
86064
|
+
request?: InputMaybe<ChannelPlatformSubmitRequestInput>;
|
|
86065
|
+
requestType?: InputMaybe<Scalars['String']['input']>;
|
|
86066
|
+
};
|
|
86811
86067
|
export declare type QueryClassificationLevelArgs = {
|
|
86812
86068
|
id: Scalars['String']['input'];
|
|
86813
86069
|
};
|
|
@@ -87665,124 +86921,6 @@ export declare type QueryConfluenceUsersArgs = {
|
|
|
87665
86921
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
87666
86922
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
87667
86923
|
};
|
|
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
86924
|
export declare type QueryConfluence_AtlassianUserArgs = {
|
|
87787
86925
|
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
87788
86926
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -88641,7 +87779,7 @@ export declare type QueryJira_AssociatedFieldConfigSchemesArgs = {
|
|
|
88641
87779
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
88642
87780
|
cloudId: Scalars['ID']['input'];
|
|
88643
87781
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88644
|
-
input?: InputMaybe<
|
|
87782
|
+
input?: InputMaybe<JiraFieldConfigSchemesInput>;
|
|
88645
87783
|
};
|
|
88646
87784
|
export declare type QueryJira_AssociatedFieldConfigSchemesCountArgs = {
|
|
88647
87785
|
cloudId: Scalars['ID']['input'];
|
|
@@ -88651,7 +87789,7 @@ export declare type QueryJira_AvailableFieldConfigSchemesArgs = {
|
|
|
88651
87789
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
88652
87790
|
cloudId: Scalars['ID']['input'];
|
|
88653
87791
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88654
|
-
input?: InputMaybe<
|
|
87792
|
+
input?: InputMaybe<JiraFieldConfigSchemesInput>;
|
|
88655
87793
|
};
|
|
88656
87794
|
export declare type QueryJira_BoardViewArgs = {
|
|
88657
87795
|
input: JiraBoardViewInput;
|
|
@@ -98681,6 +97819,7 @@ export declare type TrelloCardUpdated = {
|
|
|
98681
97819
|
labels?: Maybe<TrelloLabelUpdatedConnection>;
|
|
98682
97820
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
98683
97821
|
limits?: Maybe<TrelloCardLimits>;
|
|
97822
|
+
list?: Maybe<TrelloList>;
|
|
98684
97823
|
location?: Maybe<TrelloCardLocation>;
|
|
98685
97824
|
members?: Maybe<TrelloMemberUpdatedConnection>;
|
|
98686
97825
|
mirrorSource?: Maybe<TrelloCard>;
|
|
@@ -98689,9 +97828,14 @@ export declare type TrelloCardUpdated = {
|
|
|
98689
97828
|
name?: Maybe<Scalars['String']['output']>;
|
|
98690
97829
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
98691
97830
|
onChecklistDeleted?: Maybe<Array<TrelloChecklistDeleted>>;
|
|
97831
|
+
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
98692
97832
|
position?: Maybe<Scalars['Float']['output']>;
|
|
98693
97833
|
role?: Maybe<TrelloCardRole>;
|
|
97834
|
+
shortId?: Maybe<Scalars['Int']['output']>;
|
|
98694
97835
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
97836
|
+
shortUrl?: Maybe<Scalars['URL']['output']>;
|
|
97837
|
+
singleInstrumentationId?: Maybe<Scalars['String']['output']>;
|
|
97838
|
+
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
98695
97839
|
stickers?: Maybe<TrelloStickerUpdatedConnection>;
|
|
98696
97840
|
url?: Maybe<Scalars['URL']['output']>;
|
|
98697
97841
|
};
|
|
@@ -99074,8 +98218,13 @@ export declare type TrelloImagePreviewEdge = {
|
|
|
99074
98218
|
cursor: Scalars['String']['output'];
|
|
99075
98219
|
node: TrelloImagePreview;
|
|
99076
98220
|
};
|
|
98221
|
+
export declare type TrelloImagePreviewEdgeUpdated = {
|
|
98222
|
+
__typename?: 'TrelloImagePreviewEdgeUpdated';
|
|
98223
|
+
node: TrelloImagePreview;
|
|
98224
|
+
};
|
|
99077
98225
|
export declare type TrelloImagePreviewUpdatedConnection = {
|
|
99078
98226
|
__typename?: 'TrelloImagePreviewUpdatedConnection';
|
|
98227
|
+
edges?: Maybe<Array<TrelloImagePreviewEdgeUpdated>>;
|
|
99079
98228
|
nodes?: Maybe<Array<TrelloImagePreview>>;
|
|
99080
98229
|
};
|
|
99081
98230
|
export declare type TrelloInbox = {
|