@forge/cli-shared 2.1.6-next.9 → 2.2.0-next.19
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 +82 -0
- package/out/apps/template.d.ts +11 -5
- package/out/apps/template.d.ts.map +1 -1
- package/out/apps/template.js +25 -18
- package/out/graphql/graphql-types.d.ts +836 -68
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +100 -2
- package/out/graphql/mutation-aware-graphql-client.d.ts +1 -1
- package/package.json +2 -2
|
@@ -237,7 +237,8 @@ export declare enum ApiGroup {
|
|
|
237
237
|
XenLogsApi = "XEN_LOGS_API",
|
|
238
238
|
DevopsService = "DEVOPS_SERVICE",
|
|
239
239
|
DevopsContainerRelationship = "DEVOPS_CONTAINER_RELATIONSHIP",
|
|
240
|
-
Teams = "TEAMS"
|
|
240
|
+
Teams = "TEAMS",
|
|
241
|
+
ContentPlatformApi = "CONTENT_PLATFORM_API"
|
|
241
242
|
}
|
|
242
243
|
export declare type App = {
|
|
243
244
|
__typename?: 'App';
|
|
@@ -914,6 +915,16 @@ export declare type BacklogExtension = {
|
|
|
914
915
|
__typename?: 'BacklogExtension';
|
|
915
916
|
operations?: Maybe<Array<Maybe<SoftwareOperation>>>;
|
|
916
917
|
};
|
|
918
|
+
export declare type BasicBoardFeatureView = Node & {
|
|
919
|
+
__typename?: 'BasicBoardFeatureView';
|
|
920
|
+
id: Scalars['ID'];
|
|
921
|
+
title?: Maybe<Scalars['String']>;
|
|
922
|
+
description?: Maybe<Scalars['String']>;
|
|
923
|
+
status?: Maybe<Scalars['String']>;
|
|
924
|
+
canEnable?: Maybe<Scalars['Boolean']>;
|
|
925
|
+
learnMoreLink?: Maybe<Scalars['String']>;
|
|
926
|
+
imageUri?: Maybe<Scalars['String']>;
|
|
927
|
+
};
|
|
917
928
|
export declare enum BitbucketPermission {
|
|
918
929
|
Admin = "ADMIN"
|
|
919
930
|
}
|
|
@@ -1014,7 +1025,6 @@ export declare type BoardFeatureConnection = {
|
|
|
1014
1025
|
};
|
|
1015
1026
|
export declare type BoardFeatureEdge = {
|
|
1016
1027
|
__typename?: 'BoardFeatureEdge';
|
|
1017
|
-
order?: Maybe<Scalars['Int']>;
|
|
1018
1028
|
cursor?: Maybe<Scalars['String']>;
|
|
1019
1029
|
node?: Maybe<BoardFeatureView>;
|
|
1020
1030
|
};
|
|
@@ -1024,6 +1034,11 @@ export declare type BoardFeatureGroup = Node & {
|
|
|
1024
1034
|
name?: Maybe<Scalars['String']>;
|
|
1025
1035
|
features?: Maybe<BoardFeatureConnection>;
|
|
1026
1036
|
};
|
|
1037
|
+
export declare type BoardFeatureGroupFeaturesArgs = {
|
|
1038
|
+
ids?: Maybe<Array<Scalars['String']>>;
|
|
1039
|
+
first?: Maybe<Scalars['Int']>;
|
|
1040
|
+
after?: Maybe<Scalars['String']>;
|
|
1041
|
+
};
|
|
1027
1042
|
export declare type BoardFeatureGroupConnection = {
|
|
1028
1043
|
__typename?: 'BoardFeatureGroupConnection';
|
|
1029
1044
|
pageInfo?: Maybe<PageInfo>;
|
|
@@ -1031,7 +1046,6 @@ export declare type BoardFeatureGroupConnection = {
|
|
|
1031
1046
|
};
|
|
1032
1047
|
export declare type BoardFeatureGroupEdge = {
|
|
1033
1048
|
__typename?: 'BoardFeatureGroupEdge';
|
|
1034
|
-
order?: Maybe<Scalars['Int']>;
|
|
1035
1049
|
cursor?: Maybe<Scalars['String']>;
|
|
1036
1050
|
node?: Maybe<BoardFeatureGroup>;
|
|
1037
1051
|
};
|
|
@@ -1044,14 +1058,7 @@ export declare enum BoardFeatureToggleStatus {
|
|
|
1044
1058
|
Enabled = "ENABLED",
|
|
1045
1059
|
Disabled = "DISABLED"
|
|
1046
1060
|
}
|
|
1047
|
-
export declare type BoardFeatureView =
|
|
1048
|
-
__typename?: 'BoardFeatureView';
|
|
1049
|
-
id: Scalars['ID'];
|
|
1050
|
-
title?: Maybe<Scalars['String']>;
|
|
1051
|
-
description?: Maybe<Scalars['String']>;
|
|
1052
|
-
isEnabled?: Maybe<Scalars['Boolean']>;
|
|
1053
|
-
canEnable?: Maybe<Scalars['Boolean']>;
|
|
1054
|
-
};
|
|
1061
|
+
export declare type BoardFeatureView = BasicBoardFeatureView | EstimationBoardFeatureView;
|
|
1055
1062
|
export declare type BoardScope = {
|
|
1056
1063
|
__typename?: 'BoardScope';
|
|
1057
1064
|
board?: Maybe<SoftwareBoard>;
|
|
@@ -2213,7 +2220,6 @@ export declare type CompassScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
|
2213
2220
|
};
|
|
2214
2221
|
export declare type CompassScorecardCriteriaScore = {
|
|
2215
2222
|
__typename?: 'CompassScorecardCriteriaScore';
|
|
2216
|
-
scorecardCriteria: CompassScorecardCriteria;
|
|
2217
2223
|
score: Scalars['Int'];
|
|
2218
2224
|
maxScore: Scalars['Int'];
|
|
2219
2225
|
};
|
|
@@ -2235,7 +2241,6 @@ export declare type CompassScorecardScore = {
|
|
|
2235
2241
|
__typename?: 'CompassScorecardScore';
|
|
2236
2242
|
totalScore: Scalars['Int'];
|
|
2237
2243
|
maxTotalScore: Scalars['Int'];
|
|
2238
|
-
scorecard: CompassScorecard;
|
|
2239
2244
|
criteriaScores?: Maybe<Array<CompassScorecardCriteriaScore>>;
|
|
2240
2245
|
};
|
|
2241
2246
|
export declare type CompassScorecardScoreQuery = {
|
|
@@ -2448,6 +2453,7 @@ export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
|
2448
2453
|
};
|
|
2449
2454
|
export declare type ConfluenceAbstractPage = {
|
|
2450
2455
|
id?: Maybe<Scalars['ID']>;
|
|
2456
|
+
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2451
2457
|
space?: Maybe<ConfluenceSpace>;
|
|
2452
2458
|
status?: Maybe<ConfluenceContentStatus>;
|
|
2453
2459
|
title?: Maybe<Scalars['String']>;
|
|
@@ -2458,6 +2464,7 @@ export declare type ConfluenceBlogPost = ConfluenceAbstractPage & {
|
|
|
2458
2464
|
blogPostId: Scalars['ID'];
|
|
2459
2465
|
id?: Maybe<Scalars['ID']>;
|
|
2460
2466
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
2467
|
+
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2461
2468
|
space?: Maybe<ConfluenceSpace>;
|
|
2462
2469
|
status?: Maybe<ConfluenceContentStatus>;
|
|
2463
2470
|
title?: Maybe<Scalars['String']>;
|
|
@@ -2492,8 +2499,12 @@ export declare type ConfluenceContentBody = {
|
|
|
2492
2499
|
styledView?: Maybe<Scalars['String']>;
|
|
2493
2500
|
view?: Maybe<Scalars['String']>;
|
|
2494
2501
|
};
|
|
2502
|
+
export declare type ConfluenceContentMetadata = {
|
|
2503
|
+
__typename?: 'ConfluenceContentMetadata';
|
|
2504
|
+
titleEmojiDraft?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2505
|
+
titleEmojiPublished?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2506
|
+
};
|
|
2495
2507
|
export declare enum ConfluenceContentStatus {
|
|
2496
|
-
Any = "ANY",
|
|
2497
2508
|
Archived = "ARCHIVED",
|
|
2498
2509
|
Current = "CURRENT",
|
|
2499
2510
|
Deleted = "DELETED",
|
|
@@ -2501,6 +2512,12 @@ export declare enum ConfluenceContentStatus {
|
|
|
2501
2512
|
Historical = "HISTORICAL",
|
|
2502
2513
|
Trashed = "TRASHED"
|
|
2503
2514
|
}
|
|
2515
|
+
export declare type ConfluenceContentTitleEmoji = {
|
|
2516
|
+
__typename?: 'ConfluenceContentTitleEmoji';
|
|
2517
|
+
id?: Maybe<Scalars['String']>;
|
|
2518
|
+
key?: Maybe<Scalars['String']>;
|
|
2519
|
+
value?: Maybe<Scalars['String']>;
|
|
2520
|
+
};
|
|
2504
2521
|
export declare enum ConfluenceContentType {
|
|
2505
2522
|
Attachment = "ATTACHMENT",
|
|
2506
2523
|
BlogPost = "BLOG_POST",
|
|
@@ -2538,21 +2555,59 @@ export declare enum ConfluenceInlineTaskStatus {
|
|
|
2538
2555
|
Complete = "COMPLETE",
|
|
2539
2556
|
Incomplete = "INCOMPLETE"
|
|
2540
2557
|
}
|
|
2558
|
+
export declare type ConfluenceLabel = {
|
|
2559
|
+
__typename?: 'ConfluenceLabel';
|
|
2560
|
+
id?: Maybe<Scalars['ID']>;
|
|
2561
|
+
label?: Maybe<Scalars['String']>;
|
|
2562
|
+
prefix?: Maybe<Scalars['String']>;
|
|
2563
|
+
};
|
|
2541
2564
|
export declare type ConfluenceMutationApi = {
|
|
2542
2565
|
__typename?: 'ConfluenceMutationApi';
|
|
2543
|
-
|
|
2544
|
-
|
|
2566
|
+
confluenceCreateSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
2567
|
+
confluenceUpdateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
2545
2568
|
};
|
|
2546
|
-
export declare type
|
|
2569
|
+
export declare type ConfluenceMutationApiConfluenceCreateSpaceArgs = {
|
|
2547
2570
|
input: ConfluenceCreateSpaceInput;
|
|
2548
2571
|
};
|
|
2549
|
-
export declare type
|
|
2572
|
+
export declare type ConfluenceMutationApiConfluenceUpdateSpaceArgs = {
|
|
2550
2573
|
input: ConfluenceUpdateSpaceInput;
|
|
2551
2574
|
};
|
|
2575
|
+
export declare type ConfluenceOperationCheck = {
|
|
2576
|
+
__typename?: 'ConfluenceOperationCheck';
|
|
2577
|
+
operation?: Maybe<ConfluenceOperationName>;
|
|
2578
|
+
target?: Maybe<ConfluenceOperationTarget>;
|
|
2579
|
+
};
|
|
2580
|
+
export declare enum ConfluenceOperationName {
|
|
2581
|
+
Administer = "ADMINISTER",
|
|
2582
|
+
Archive = "ARCHIVE",
|
|
2583
|
+
Copy = "COPY",
|
|
2584
|
+
Create = "CREATE",
|
|
2585
|
+
CreateSpace = "CREATE_SPACE",
|
|
2586
|
+
Delete = "DELETE",
|
|
2587
|
+
Export = "EXPORT",
|
|
2588
|
+
Move = "MOVE",
|
|
2589
|
+
Purge = "PURGE",
|
|
2590
|
+
PurgeVersion = "PURGE_VERSION",
|
|
2591
|
+
Read = "READ",
|
|
2592
|
+
Restore = "RESTORE",
|
|
2593
|
+
RestrictContent = "RESTRICT_CONTENT",
|
|
2594
|
+
Update = "UPDATE",
|
|
2595
|
+
Use = "USE"
|
|
2596
|
+
}
|
|
2597
|
+
export declare enum ConfluenceOperationTarget {
|
|
2598
|
+
Application = "APPLICATION",
|
|
2599
|
+
Attachment = "ATTACHMENT",
|
|
2600
|
+
BlogPost = "BLOG_POST",
|
|
2601
|
+
Comment = "COMMENT",
|
|
2602
|
+
Page = "PAGE",
|
|
2603
|
+
Space = "SPACE",
|
|
2604
|
+
UserProfile = "USER_PROFILE"
|
|
2605
|
+
}
|
|
2552
2606
|
export declare type ConfluencePage = ConfluenceAbstractPage & {
|
|
2553
2607
|
__typename?: 'ConfluencePage';
|
|
2554
2608
|
id?: Maybe<Scalars['ID']>;
|
|
2555
2609
|
links?: Maybe<ConfluencePageLinks>;
|
|
2610
|
+
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2556
2611
|
pageId: Scalars['ID'];
|
|
2557
2612
|
space?: Maybe<ConfluenceSpace>;
|
|
2558
2613
|
status?: Maybe<ConfluenceContentStatus>;
|
|
@@ -2607,15 +2662,30 @@ export declare type ConfluenceQueryApiConfluenceSpacesArgs = {
|
|
|
2607
2662
|
};
|
|
2608
2663
|
export declare type ConfluenceSpace = {
|
|
2609
2664
|
__typename?: 'ConfluenceSpace';
|
|
2665
|
+
description?: Maybe<ConfluenceSpaceDescription>;
|
|
2666
|
+
history?: Maybe<ConfluenceSpaceHistory>;
|
|
2667
|
+
homepage?: Maybe<ConfluenceAbstractPage>;
|
|
2610
2668
|
icon?: Maybe<ConfluenceSpaceIcon>;
|
|
2611
2669
|
id?: Maybe<Scalars['ID']>;
|
|
2612
2670
|
key?: Maybe<Scalars['String']>;
|
|
2613
2671
|
links?: Maybe<ConfluenceSpaceLinks>;
|
|
2672
|
+
metadata?: Maybe<ConfluenceSpaceMetadata>;
|
|
2614
2673
|
name?: Maybe<Scalars['String']>;
|
|
2674
|
+
operations?: Maybe<Array<Maybe<ConfluenceOperationCheck>>>;
|
|
2615
2675
|
spaceId?: Maybe<Scalars['ID']>;
|
|
2616
2676
|
status?: Maybe<ConfluenceSpaceStatus>;
|
|
2617
2677
|
type?: Maybe<ConfluenceSpaceType>;
|
|
2618
2678
|
};
|
|
2679
|
+
export declare type ConfluenceSpaceDescription = {
|
|
2680
|
+
__typename?: 'ConfluenceSpaceDescription';
|
|
2681
|
+
plain?: Maybe<Scalars['String']>;
|
|
2682
|
+
view?: Maybe<Scalars['String']>;
|
|
2683
|
+
};
|
|
2684
|
+
export declare type ConfluenceSpaceHistory = {
|
|
2685
|
+
__typename?: 'ConfluenceSpaceHistory';
|
|
2686
|
+
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
2687
|
+
createdDate?: Maybe<Scalars['String']>;
|
|
2688
|
+
};
|
|
2619
2689
|
export declare type ConfluenceSpaceIcon = {
|
|
2620
2690
|
__typename?: 'ConfluenceSpaceIcon';
|
|
2621
2691
|
height?: Maybe<Scalars['Int']>;
|
|
@@ -2628,6 +2698,15 @@ export declare type ConfluenceSpaceLinks = {
|
|
|
2628
2698
|
base?: Maybe<Scalars['String']>;
|
|
2629
2699
|
webUi?: Maybe<Scalars['String']>;
|
|
2630
2700
|
};
|
|
2701
|
+
export declare type ConfluenceSpaceMetadata = {
|
|
2702
|
+
__typename?: 'ConfluenceSpaceMetadata';
|
|
2703
|
+
labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
2704
|
+
recentCommenters?: Maybe<Array<Maybe<ConfluenceUserInfo>>>;
|
|
2705
|
+
recentWatchers?: Maybe<Array<Maybe<ConfluenceUserInfo>>>;
|
|
2706
|
+
totalCommenters?: Maybe<Scalars['Int']>;
|
|
2707
|
+
totalCurrentPages?: Maybe<Scalars['Int']>;
|
|
2708
|
+
totalWatchers?: Maybe<Scalars['Int']>;
|
|
2709
|
+
};
|
|
2631
2710
|
export declare enum ConfluenceSpaceStatus {
|
|
2632
2711
|
Archived = "ARCHIVED",
|
|
2633
2712
|
Current = "CURRENT"
|
|
@@ -2804,14 +2883,16 @@ export declare type ContentPlatformIntroToPractice = {
|
|
|
2804
2883
|
};
|
|
2805
2884
|
export declare type ContentPlatformPracticePage = {
|
|
2806
2885
|
__typename?: 'ContentPlatformPracticePage';
|
|
2886
|
+
name: Scalars['String'];
|
|
2807
2887
|
tagline: Scalars['String'];
|
|
2808
|
-
|
|
2888
|
+
introTo: ContentPlatformIntroToPractice;
|
|
2809
2889
|
whatIs: ContentPlatformChunkWhatIs;
|
|
2810
|
-
benefits
|
|
2811
|
-
deepDive
|
|
2812
|
-
bestPractices
|
|
2813
|
-
inContext
|
|
2814
|
-
|
|
2890
|
+
benefits?: Maybe<ContentPlatformChunkBenefits>;
|
|
2891
|
+
deepDive?: Maybe<ContentPlatformChunkDeepDive>;
|
|
2892
|
+
bestPractices?: Maybe<ContentPlatformChunkBestPractices>;
|
|
2893
|
+
inContext?: Maybe<ContentPlatformChunkInContext>;
|
|
2894
|
+
howTo?: Maybe<ContentPlatformChunkHowTo>;
|
|
2895
|
+
practice: ContentPlatformWhatPractice;
|
|
2815
2896
|
};
|
|
2816
2897
|
export declare type ContentPlatformReleaseNote = {
|
|
2817
2898
|
__typename?: 'ContentPlatformReleaseNote';
|
|
@@ -2943,6 +3024,10 @@ export declare type ContentPlatformTypeOfChangeEntry = {
|
|
|
2943
3024
|
label?: Maybe<Scalars['String']>;
|
|
2944
3025
|
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
2945
3026
|
};
|
|
3027
|
+
export declare type ContentPlatformWhatPractice = {
|
|
3028
|
+
__typename?: 'ContentPlatformWhatPractice';
|
|
3029
|
+
title: Scalars['String'];
|
|
3030
|
+
};
|
|
2946
3031
|
export declare type ContextEventObject = {
|
|
2947
3032
|
__typename?: 'ContextEventObject';
|
|
2948
3033
|
id: Scalars['ID'];
|
|
@@ -3467,6 +3552,7 @@ export declare type CustomFiltersValidationError = {
|
|
|
3467
3552
|
__typename?: 'CustomFiltersValidationError';
|
|
3468
3553
|
fieldName: Scalars['String'];
|
|
3469
3554
|
errorMessage: Scalars['String'];
|
|
3555
|
+
errorKey: Scalars['String'];
|
|
3470
3556
|
};
|
|
3471
3557
|
export declare type CustomUiTunnelDefinition = {
|
|
3472
3558
|
__typename?: 'CustomUITunnelDefinition';
|
|
@@ -4285,6 +4371,7 @@ export declare type DevOpsThirdPartyRepository = {
|
|
|
4285
4371
|
export declare type DevOpsTool = {
|
|
4286
4372
|
id: Scalars['ID'];
|
|
4287
4373
|
name: Scalars['String'];
|
|
4374
|
+
productKey: Scalars['String'];
|
|
4288
4375
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
4289
4376
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
4290
4377
|
};
|
|
@@ -4292,6 +4379,7 @@ export declare type DevOpsToolAvailable = DevOpsTool & Node & {
|
|
|
4292
4379
|
__typename?: 'DevOpsToolAvailable';
|
|
4293
4380
|
id: Scalars['ID'];
|
|
4294
4381
|
name: Scalars['String'];
|
|
4382
|
+
productKey: Scalars['String'];
|
|
4295
4383
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
4296
4384
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
4297
4385
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
@@ -4316,10 +4404,18 @@ export declare type DevOpsToolConnection = {
|
|
|
4316
4404
|
nodes?: Maybe<Array<Maybe<DevOpsTool>>>;
|
|
4317
4405
|
pageInfo: PageInfo;
|
|
4318
4406
|
};
|
|
4407
|
+
export declare enum DevOpsToolConnectionState {
|
|
4408
|
+
Initial = "INITIAL",
|
|
4409
|
+
Unconnected = "UNCONNECTED",
|
|
4410
|
+
Incomplete = "INCOMPLETE",
|
|
4411
|
+
Connected = "CONNECTED",
|
|
4412
|
+
Seen = "SEEN"
|
|
4413
|
+
}
|
|
4319
4414
|
export declare type DevOpsToolContainer = Node & {
|
|
4320
4415
|
__typename?: 'DevOpsToolContainer';
|
|
4321
4416
|
id: Scalars['ID'];
|
|
4322
4417
|
displayName: Scalars['String'];
|
|
4418
|
+
productKey: Scalars['String'];
|
|
4323
4419
|
url: Scalars['String'];
|
|
4324
4420
|
};
|
|
4325
4421
|
export declare type DevOpsToolContainerConnection = {
|
|
@@ -4352,6 +4448,7 @@ export declare type DevOpsToolNamespace = Node & {
|
|
|
4352
4448
|
__typename?: 'DevOpsToolNamespace';
|
|
4353
4449
|
id: Scalars['ID'];
|
|
4354
4450
|
displayName: Scalars['String'];
|
|
4451
|
+
productKey: Scalars['String'];
|
|
4355
4452
|
canCreateContainer: Scalars['Boolean'];
|
|
4356
4453
|
containers?: Maybe<DevOpsToolContainerConnection>;
|
|
4357
4454
|
};
|
|
@@ -4371,6 +4468,17 @@ export declare type DevOpsToolNamespaceEdge = {
|
|
|
4371
4468
|
cursor: Scalars['String'];
|
|
4372
4469
|
node?: Maybe<DevOpsToolNamespace>;
|
|
4373
4470
|
};
|
|
4471
|
+
export declare type DevOpsToolNavbarConnectionState = {
|
|
4472
|
+
__typename?: 'DevOpsToolNavbarConnectionState';
|
|
4473
|
+
codeTab: DevOpsToolConnectionState;
|
|
4474
|
+
oncallTab: DevOpsToolConnectionState;
|
|
4475
|
+
pagesTab: DevOpsToolConnectionState;
|
|
4476
|
+
};
|
|
4477
|
+
export declare enum DevOpsToolNavbarConnectionStateTab {
|
|
4478
|
+
CodeTab = "codeTab",
|
|
4479
|
+
OncallTab = "oncallTab",
|
|
4480
|
+
PagesTab = "pagesTab"
|
|
4481
|
+
}
|
|
4374
4482
|
export declare type DevOpsToolSupportedContainerType = {
|
|
4375
4483
|
__typename?: 'DevOpsToolSupportedContainerType';
|
|
4376
4484
|
category: DevOpsToolCategory;
|
|
@@ -4380,16 +4488,29 @@ export declare type DevOpsToolUnavailable = DevOpsTool & Node & {
|
|
|
4380
4488
|
__typename?: 'DevOpsToolUnavailable';
|
|
4381
4489
|
id: Scalars['ID'];
|
|
4382
4490
|
name: Scalars['String'];
|
|
4491
|
+
productKey: Scalars['String'];
|
|
4383
4492
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
4384
4493
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
4385
4494
|
install: DevOpsToolInstallationInfo;
|
|
4386
4495
|
};
|
|
4496
|
+
export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenInput = {
|
|
4497
|
+
cloudId: Scalars['ID'];
|
|
4498
|
+
projectId: Scalars['ID'];
|
|
4499
|
+
tab?: Maybe<DevOpsToolNavbarConnectionStateTab>;
|
|
4500
|
+
};
|
|
4501
|
+
export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenPayload = Payload & {
|
|
4502
|
+
__typename?: 'DevOpsToolUpdateNavbarConnectionStateTabSeenPayload';
|
|
4503
|
+
success: Scalars['Boolean'];
|
|
4504
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4505
|
+
updatedNavbarConnectionState: DevOpsToolNavbarConnectionState;
|
|
4506
|
+
};
|
|
4387
4507
|
export declare type DevOpsTools = {
|
|
4388
4508
|
__typename?: 'DevOpsTools';
|
|
4389
4509
|
tools?: Maybe<DevOpsToolConnection>;
|
|
4390
4510
|
tool?: Maybe<DevOpsTool>;
|
|
4391
4511
|
namespace?: Maybe<DevOpsToolNamespace>;
|
|
4392
4512
|
container?: Maybe<DevOpsToolContainer>;
|
|
4513
|
+
navbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
4393
4514
|
};
|
|
4394
4515
|
export declare type DevOpsToolsToolsArgs = {
|
|
4395
4516
|
cloudId: Scalars['ID'];
|
|
@@ -4405,6 +4526,10 @@ export declare type DevOpsToolsNamespaceArgs = {
|
|
|
4405
4526
|
export declare type DevOpsToolsContainerArgs = {
|
|
4406
4527
|
id: Scalars['ID'];
|
|
4407
4528
|
};
|
|
4529
|
+
export declare type DevOpsToolsNavbarConnectionStateArgs = {
|
|
4530
|
+
cloudId: Scalars['ID'];
|
|
4531
|
+
projectId: Scalars['ID'];
|
|
4532
|
+
};
|
|
4408
4533
|
export declare type DevStatus = {
|
|
4409
4534
|
__typename?: 'DevStatus';
|
|
4410
4535
|
activity: DevStatusActivity;
|
|
@@ -4490,6 +4615,16 @@ export declare type Estimate = {
|
|
|
4490
4615
|
storyPoints?: Maybe<Scalars['Float']>;
|
|
4491
4616
|
originalEstimate?: Maybe<OriginalEstimate>;
|
|
4492
4617
|
};
|
|
4618
|
+
export declare type EstimationBoardFeatureView = Node & {
|
|
4619
|
+
__typename?: 'EstimationBoardFeatureView';
|
|
4620
|
+
id: Scalars['ID'];
|
|
4621
|
+
title?: Maybe<Scalars['String']>;
|
|
4622
|
+
description?: Maybe<Scalars['String']>;
|
|
4623
|
+
isEnabled?: Maybe<Scalars['Boolean']>;
|
|
4624
|
+
canEnable?: Maybe<Scalars['Boolean']>;
|
|
4625
|
+
permissibleEstimationTypes?: Maybe<Array<Maybe<PermissibleEstimationType>>>;
|
|
4626
|
+
selectedEstimationType?: Maybe<PermissibleEstimationType>;
|
|
4627
|
+
};
|
|
4493
4628
|
export declare type EstimationConfig = {
|
|
4494
4629
|
__typename?: 'EstimationConfig';
|
|
4495
4630
|
current: CurrentEstimation;
|
|
@@ -4630,23 +4765,6 @@ export declare type ForgeMetricsLabelGroup = {
|
|
|
4630
4765
|
key: Scalars['String'];
|
|
4631
4766
|
value: Scalars['String'];
|
|
4632
4767
|
};
|
|
4633
|
-
export declare type ForgeMetricsLatencyData = ForgeMetricsData & {
|
|
4634
|
-
__typename?: 'ForgeMetricsLatencyData';
|
|
4635
|
-
name: Scalars['String'];
|
|
4636
|
-
type: ForgeMetricsDataType;
|
|
4637
|
-
series: Array<ForgeMetricsLatencySeries>;
|
|
4638
|
-
};
|
|
4639
|
-
export declare type ForgeMetricsLatencyDataPoint = {
|
|
4640
|
-
__typename?: 'ForgeMetricsLatencyDataPoint';
|
|
4641
|
-
bucket: Scalars['String'];
|
|
4642
|
-
count: Scalars['Int'];
|
|
4643
|
-
};
|
|
4644
|
-
export declare type ForgeMetricsLatencyResult = ForgeMetricsLatencyData | QueryError;
|
|
4645
|
-
export declare type ForgeMetricsLatencySeries = ForgeMetricsSeries & {
|
|
4646
|
-
__typename?: 'ForgeMetricsLatencySeries';
|
|
4647
|
-
groups: Array<ForgeMetricsLabelGroup>;
|
|
4648
|
-
data: Array<ForgeMetricsLatencyDataPoint>;
|
|
4649
|
-
};
|
|
4650
4768
|
export declare type ForgeMetricsQuery = {
|
|
4651
4769
|
__typename?: 'ForgeMetricsQuery';
|
|
4652
4770
|
appId: Scalars['ID'];
|
|
@@ -4654,7 +4772,6 @@ export declare type ForgeMetricsQuery = {
|
|
|
4654
4772
|
successRateValue: ForgeMetricsSuccessRateValueResult;
|
|
4655
4773
|
invocations: ForgeMetricsInvocationsResult;
|
|
4656
4774
|
errors: ForgeMetricsErrorsResult;
|
|
4657
|
-
latency: ForgeMetricsLatencyResult;
|
|
4658
4775
|
};
|
|
4659
4776
|
export declare type ForgeMetricsQuerySuccessRateArgs = {
|
|
4660
4777
|
query: ForgeMetricsQueryInput;
|
|
@@ -4668,9 +4785,6 @@ export declare type ForgeMetricsQueryInvocationsArgs = {
|
|
|
4668
4785
|
export declare type ForgeMetricsQueryErrorsArgs = {
|
|
4669
4786
|
query: ForgeMetricsQueryInput;
|
|
4670
4787
|
};
|
|
4671
|
-
export declare type ForgeMetricsQueryLatencyArgs = {
|
|
4672
|
-
query: ForgeMetricsQueryInput;
|
|
4673
|
-
};
|
|
4674
4788
|
export declare type ForgeMetricsQueryFilters = {
|
|
4675
4789
|
environment?: Maybe<Scalars['ID']>;
|
|
4676
4790
|
interval: ForgeMetricsIntervalInput;
|
|
@@ -5339,6 +5453,18 @@ export declare type JiraAvatar = {
|
|
|
5339
5453
|
medium?: Maybe<Scalars['String']>;
|
|
5340
5454
|
large?: Maybe<Scalars['String']>;
|
|
5341
5455
|
};
|
|
5456
|
+
export declare type JiraBooleanField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5457
|
+
__typename?: 'JiraBooleanField';
|
|
5458
|
+
id: Scalars['ID'];
|
|
5459
|
+
fieldId: Scalars['String'];
|
|
5460
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
5461
|
+
type: Scalars['String'];
|
|
5462
|
+
name: Scalars['String'];
|
|
5463
|
+
description?: Maybe<Scalars['String']>;
|
|
5464
|
+
value?: Maybe<Scalars['Boolean']>;
|
|
5465
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5466
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5467
|
+
};
|
|
5342
5468
|
export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
5343
5469
|
__typename?: 'JiraCMDBField';
|
|
5344
5470
|
id: Scalars['ID'];
|
|
@@ -5351,6 +5477,7 @@ export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfig
|
|
|
5351
5477
|
searchUrl?: Maybe<Scalars['String']>;
|
|
5352
5478
|
selectedCmdbObjects?: Maybe<Array<Maybe<JiraCmdbObject>>>;
|
|
5353
5479
|
selectedCmdbObjectsConnection?: Maybe<JiraCmdbObjectConnection>;
|
|
5480
|
+
cmdbFieldConfig?: Maybe<JiraCmdbFieldConfig>;
|
|
5354
5481
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5355
5482
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5356
5483
|
attributesIncludedInAutoCompleteSearch?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -5437,6 +5564,117 @@ export declare type JiraCheckboxesFieldFieldOptionsArgs = {
|
|
|
5437
5564
|
last?: Maybe<Scalars['Int']>;
|
|
5438
5565
|
before?: Maybe<Scalars['String']>;
|
|
5439
5566
|
};
|
|
5567
|
+
export declare type JiraChildIssues = JiraChildIssuesWithinLimit | JiraChildIssuesExceedingLimit;
|
|
5568
|
+
export declare type JiraChildIssuesExceedingLimit = {
|
|
5569
|
+
__typename?: 'JiraChildIssuesExceedingLimit';
|
|
5570
|
+
search?: Maybe<Scalars['String']>;
|
|
5571
|
+
};
|
|
5572
|
+
export declare type JiraChildIssuesWithinLimit = {
|
|
5573
|
+
__typename?: 'JiraChildIssuesWithinLimit';
|
|
5574
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
5575
|
+
};
|
|
5576
|
+
export declare type JiraChildIssuesWithinLimitIssuesArgs = {
|
|
5577
|
+
first?: Maybe<Scalars['Int']>;
|
|
5578
|
+
after?: Maybe<Scalars['String']>;
|
|
5579
|
+
last?: Maybe<Scalars['Int']>;
|
|
5580
|
+
before?: Maybe<Scalars['String']>;
|
|
5581
|
+
};
|
|
5582
|
+
export declare type JiraCmdbAttribute = {
|
|
5583
|
+
__typename?: 'JiraCmdbAttribute';
|
|
5584
|
+
objectTypeAttributeId?: Maybe<Scalars['String']>;
|
|
5585
|
+
objectTypeAttribute?: Maybe<JiraCmdbObjectTypeAttribute>;
|
|
5586
|
+
objectAttributeValues?: Maybe<JiraCmdbObjectAttributeValueConnection>;
|
|
5587
|
+
};
|
|
5588
|
+
export declare type JiraCmdbAttributeObjectAttributeValuesArgs = {
|
|
5589
|
+
first?: Maybe<Scalars['Int']>;
|
|
5590
|
+
after?: Maybe<Scalars['String']>;
|
|
5591
|
+
last?: Maybe<Scalars['Int']>;
|
|
5592
|
+
before?: Maybe<Scalars['String']>;
|
|
5593
|
+
};
|
|
5594
|
+
export declare type JiraCmdbAttributeConnection = {
|
|
5595
|
+
__typename?: 'JiraCmdbAttributeConnection';
|
|
5596
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5597
|
+
pageInfo: PageInfo;
|
|
5598
|
+
edges?: Maybe<Array<Maybe<JiraCmdbAttributeEdge>>>;
|
|
5599
|
+
};
|
|
5600
|
+
export declare type JiraCmdbAttributeEdge = {
|
|
5601
|
+
__typename?: 'JiraCmdbAttributeEdge';
|
|
5602
|
+
node?: Maybe<JiraCmdbAttribute>;
|
|
5603
|
+
cursor: Scalars['String'];
|
|
5604
|
+
};
|
|
5605
|
+
export declare enum JiraCmdbAttributeType {
|
|
5606
|
+
Default = "DEFAULT",
|
|
5607
|
+
ReferencedObject = "REFERENCED_OBJECT",
|
|
5608
|
+
User = "USER",
|
|
5609
|
+
Confluence = "CONFLUENCE",
|
|
5610
|
+
Group = "GROUP",
|
|
5611
|
+
Version = "VERSION",
|
|
5612
|
+
Project = "PROJECT",
|
|
5613
|
+
Status = "STATUS"
|
|
5614
|
+
}
|
|
5615
|
+
export declare type JiraCmdbAvatar = {
|
|
5616
|
+
__typename?: 'JiraCmdbAvatar';
|
|
5617
|
+
id?: Maybe<Scalars['String']>;
|
|
5618
|
+
avatarUUID?: Maybe<Scalars['String']>;
|
|
5619
|
+
url16?: Maybe<Scalars['String']>;
|
|
5620
|
+
url48?: Maybe<Scalars['String']>;
|
|
5621
|
+
url72?: Maybe<Scalars['String']>;
|
|
5622
|
+
url144?: Maybe<Scalars['String']>;
|
|
5623
|
+
url288?: Maybe<Scalars['String']>;
|
|
5624
|
+
mediaClientConfig?: Maybe<JiraCmdbMediaClientConfig>;
|
|
5625
|
+
};
|
|
5626
|
+
export declare type JiraCmdbConfigAttributeConnection = {
|
|
5627
|
+
__typename?: 'JiraCmdbConfigAttributeConnection';
|
|
5628
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5629
|
+
pageInfo: PageInfo;
|
|
5630
|
+
edges?: Maybe<Array<Maybe<JiraCmdbConfigAttributeEdge>>>;
|
|
5631
|
+
};
|
|
5632
|
+
export declare type JiraCmdbConfigAttributeEdge = {
|
|
5633
|
+
__typename?: 'JiraCmdbConfigAttributeEdge';
|
|
5634
|
+
node?: Maybe<Scalars['String']>;
|
|
5635
|
+
cursor: Scalars['String'];
|
|
5636
|
+
};
|
|
5637
|
+
export declare type JiraCmdbDefaultType = {
|
|
5638
|
+
__typename?: 'JiraCmdbDefaultType';
|
|
5639
|
+
id?: Maybe<Scalars['String']>;
|
|
5640
|
+
name?: Maybe<Scalars['String']>;
|
|
5641
|
+
};
|
|
5642
|
+
export declare type JiraCmdbFieldConfig = {
|
|
5643
|
+
__typename?: 'JiraCmdbFieldConfig';
|
|
5644
|
+
objectSchemaId: Scalars['String'];
|
|
5645
|
+
objectFilterQuery?: Maybe<Scalars['String']>;
|
|
5646
|
+
issueScopeFilterQuery?: Maybe<Scalars['String']>;
|
|
5647
|
+
multiple?: Maybe<Scalars['Boolean']>;
|
|
5648
|
+
attributesDisplayedOnIssue?: Maybe<JiraCmdbConfigAttributeConnection>;
|
|
5649
|
+
attributesIncludedInAutoCompleteSearch?: Maybe<JiraCmdbConfigAttributeConnection>;
|
|
5650
|
+
};
|
|
5651
|
+
export declare type JiraCmdbFieldConfigAttributesDisplayedOnIssueArgs = {
|
|
5652
|
+
first?: Maybe<Scalars['Int']>;
|
|
5653
|
+
after?: Maybe<Scalars['String']>;
|
|
5654
|
+
last?: Maybe<Scalars['Int']>;
|
|
5655
|
+
before?: Maybe<Scalars['String']>;
|
|
5656
|
+
};
|
|
5657
|
+
export declare type JiraCmdbFieldConfigAttributesIncludedInAutoCompleteSearchArgs = {
|
|
5658
|
+
first?: Maybe<Scalars['Int']>;
|
|
5659
|
+
after?: Maybe<Scalars['String']>;
|
|
5660
|
+
last?: Maybe<Scalars['Int']>;
|
|
5661
|
+
before?: Maybe<Scalars['String']>;
|
|
5662
|
+
};
|
|
5663
|
+
export declare type JiraCmdbIcon = {
|
|
5664
|
+
__typename?: 'JiraCmdbIcon';
|
|
5665
|
+
id: Scalars['String'];
|
|
5666
|
+
name?: Maybe<Scalars['String']>;
|
|
5667
|
+
url16?: Maybe<Scalars['String']>;
|
|
5668
|
+
url48?: Maybe<Scalars['String']>;
|
|
5669
|
+
};
|
|
5670
|
+
export declare type JiraCmdbMediaClientConfig = {
|
|
5671
|
+
__typename?: 'JiraCmdbMediaClientConfig';
|
|
5672
|
+
clientId?: Maybe<Scalars['String']>;
|
|
5673
|
+
issuer?: Maybe<Scalars['String']>;
|
|
5674
|
+
fileId?: Maybe<Scalars['String']>;
|
|
5675
|
+
mediaBaseUrl?: Maybe<Scalars['URL']>;
|
|
5676
|
+
mediaJwtToken?: Maybe<Scalars['String']>;
|
|
5677
|
+
};
|
|
5440
5678
|
export declare type JiraCmdbObject = Node & {
|
|
5441
5679
|
__typename?: 'JiraCmdbObject';
|
|
5442
5680
|
id: Scalars['ID'];
|
|
@@ -5444,6 +5682,39 @@ export declare type JiraCmdbObject = Node & {
|
|
|
5444
5682
|
objectId?: Maybe<Scalars['String']>;
|
|
5445
5683
|
workspaceId?: Maybe<Scalars['String']>;
|
|
5446
5684
|
label?: Maybe<Scalars['String']>;
|
|
5685
|
+
objectKey?: Maybe<Scalars['String']>;
|
|
5686
|
+
avatar?: Maybe<JiraCmdbAvatar>;
|
|
5687
|
+
objectType?: Maybe<JiraCmdbObjectType>;
|
|
5688
|
+
attributes?: Maybe<JiraCmdbAttributeConnection>;
|
|
5689
|
+
webUrl?: Maybe<Scalars['String']>;
|
|
5690
|
+
};
|
|
5691
|
+
export declare type JiraCmdbObjectAttributesArgs = {
|
|
5692
|
+
first?: Maybe<Scalars['Int']>;
|
|
5693
|
+
after?: Maybe<Scalars['String']>;
|
|
5694
|
+
last?: Maybe<Scalars['Int']>;
|
|
5695
|
+
before?: Maybe<Scalars['String']>;
|
|
5696
|
+
};
|
|
5697
|
+
export declare type JiraCmdbObjectAttributeValue = {
|
|
5698
|
+
__typename?: 'JiraCmdbObjectAttributeValue';
|
|
5699
|
+
referencedObject?: Maybe<JiraCmdbObject>;
|
|
5700
|
+
user?: Maybe<User>;
|
|
5701
|
+
group?: Maybe<JiraGroup>;
|
|
5702
|
+
status?: Maybe<JiraCmdbStatusType>;
|
|
5703
|
+
value?: Maybe<Scalars['String']>;
|
|
5704
|
+
displayValue?: Maybe<Scalars['String']>;
|
|
5705
|
+
searchValue?: Maybe<Scalars['String']>;
|
|
5706
|
+
additionalValue?: Maybe<Scalars['String']>;
|
|
5707
|
+
};
|
|
5708
|
+
export declare type JiraCmdbObjectAttributeValueConnection = {
|
|
5709
|
+
__typename?: 'JiraCmdbObjectAttributeValueConnection';
|
|
5710
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5711
|
+
pageInfo: PageInfo;
|
|
5712
|
+
edges?: Maybe<Array<Maybe<JiraCmdbObjectAttributeValueEdge>>>;
|
|
5713
|
+
};
|
|
5714
|
+
export declare type JiraCmdbObjectAttributeValueEdge = {
|
|
5715
|
+
__typename?: 'JiraCmdbObjectAttributeValueEdge';
|
|
5716
|
+
node?: Maybe<JiraCmdbObjectAttributeValue>;
|
|
5717
|
+
cursor: Scalars['String'];
|
|
5447
5718
|
};
|
|
5448
5719
|
export declare type JiraCmdbObjectConnection = {
|
|
5449
5720
|
__typename?: 'JiraCmdbObjectConnection';
|
|
@@ -5456,6 +5727,45 @@ export declare type JiraCmdbObjectEdge = {
|
|
|
5456
5727
|
node?: Maybe<JiraCmdbObject>;
|
|
5457
5728
|
cursor: Scalars['String'];
|
|
5458
5729
|
};
|
|
5730
|
+
export declare type JiraCmdbObjectType = {
|
|
5731
|
+
__typename?: 'JiraCmdbObjectType';
|
|
5732
|
+
objectTypeId: Scalars['String'];
|
|
5733
|
+
name?: Maybe<Scalars['String']>;
|
|
5734
|
+
description?: Maybe<Scalars['String']>;
|
|
5735
|
+
icon?: Maybe<JiraCmdbIcon>;
|
|
5736
|
+
objectSchemaId?: Maybe<Scalars['String']>;
|
|
5737
|
+
};
|
|
5738
|
+
export declare type JiraCmdbObjectTypeAttribute = {
|
|
5739
|
+
__typename?: 'JiraCmdbObjectTypeAttribute';
|
|
5740
|
+
name?: Maybe<Scalars['String']>;
|
|
5741
|
+
label?: Maybe<Scalars['Boolean']>;
|
|
5742
|
+
type?: Maybe<JiraCmdbAttributeType>;
|
|
5743
|
+
description?: Maybe<Scalars['String']>;
|
|
5744
|
+
objectType?: Maybe<JiraCmdbObjectType>;
|
|
5745
|
+
defaultType?: Maybe<JiraCmdbDefaultType>;
|
|
5746
|
+
referenceType?: Maybe<JiraCmdbReferenceType>;
|
|
5747
|
+
referenceObjectTypeId?: Maybe<Scalars['String']>;
|
|
5748
|
+
referenceObjectType?: Maybe<JiraCmdbObjectType>;
|
|
5749
|
+
additionalValue?: Maybe<Scalars['String']>;
|
|
5750
|
+
suffix?: Maybe<Scalars['String']>;
|
|
5751
|
+
};
|
|
5752
|
+
export declare type JiraCmdbReferenceType = {
|
|
5753
|
+
__typename?: 'JiraCmdbReferenceType';
|
|
5754
|
+
id?: Maybe<Scalars['String']>;
|
|
5755
|
+
name?: Maybe<Scalars['String']>;
|
|
5756
|
+
description?: Maybe<Scalars['String']>;
|
|
5757
|
+
color?: Maybe<Scalars['String']>;
|
|
5758
|
+
webUrl?: Maybe<Scalars['String']>;
|
|
5759
|
+
objectSchemaId?: Maybe<Scalars['String']>;
|
|
5760
|
+
};
|
|
5761
|
+
export declare type JiraCmdbStatusType = {
|
|
5762
|
+
__typename?: 'JiraCmdbStatusType';
|
|
5763
|
+
id?: Maybe<Scalars['String']>;
|
|
5764
|
+
name?: Maybe<Scalars['String']>;
|
|
5765
|
+
description?: Maybe<Scalars['String']>;
|
|
5766
|
+
category?: Maybe<Scalars['Int']>;
|
|
5767
|
+
objectSchemaId?: Maybe<Scalars['String']>;
|
|
5768
|
+
};
|
|
5459
5769
|
export declare type JiraColor = {
|
|
5460
5770
|
__typename?: 'JiraColor';
|
|
5461
5771
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -5550,8 +5860,8 @@ export declare type JiraConnectMultipleSelectField = Node & JiraIssueField & Jir
|
|
|
5550
5860
|
selectedFieldOptions?: Maybe<Array<Maybe<JiraOption>>>;
|
|
5551
5861
|
selectedOptions?: Maybe<JiraOptionConnection>;
|
|
5552
5862
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
5553
|
-
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5554
5863
|
searchUrl?: Maybe<Scalars['String']>;
|
|
5864
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5555
5865
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5556
5866
|
};
|
|
5557
5867
|
export declare type JiraConnectMultipleSelectFieldSelectedOptionsArgs = {
|
|
@@ -5603,8 +5913,8 @@ export declare type JiraConnectSingleSelectField = Node & JiraIssueField & JiraI
|
|
|
5603
5913
|
description?: Maybe<Scalars['String']>;
|
|
5604
5914
|
fieldOption?: Maybe<JiraOption>;
|
|
5605
5915
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
5606
|
-
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5607
5916
|
searchUrl?: Maybe<Scalars['String']>;
|
|
5917
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5608
5918
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5609
5919
|
};
|
|
5610
5920
|
export declare type JiraConnectSingleSelectFieldFieldOptionsArgs = {
|
|
@@ -5764,6 +6074,14 @@ export declare type JiraFieldNonEditableReason = {
|
|
|
5764
6074
|
__typename?: 'JiraFieldNonEditableReason';
|
|
5765
6075
|
message?: Maybe<Scalars['String']>;
|
|
5766
6076
|
};
|
|
6077
|
+
export declare type JiraFilter = Node & {
|
|
6078
|
+
__typename?: 'JiraFilter';
|
|
6079
|
+
id: Scalars['ID'];
|
|
6080
|
+
filterId: Scalars['String'];
|
|
6081
|
+
jql: Scalars['String'];
|
|
6082
|
+
name: Scalars['String'];
|
|
6083
|
+
};
|
|
6084
|
+
export declare type JiraFilterResult = JiraFilter | QueryError;
|
|
5767
6085
|
export declare type JiraFlag = {
|
|
5768
6086
|
__typename?: 'JiraFlag';
|
|
5769
6087
|
isFlagged?: Maybe<Scalars['Boolean']>;
|
|
@@ -5802,8 +6120,8 @@ export declare type JiraForgeGroupField = Node & JiraIssueField & JiraIssueField
|
|
|
5802
6120
|
description?: Maybe<Scalars['String']>;
|
|
5803
6121
|
selectedGroup?: Maybe<JiraGroup>;
|
|
5804
6122
|
groups?: Maybe<JiraGroupConnection>;
|
|
5805
|
-
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5806
6123
|
searchUrl?: Maybe<Scalars['String']>;
|
|
6124
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5807
6125
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5808
6126
|
};
|
|
5809
6127
|
export declare type JiraForgeGroupFieldGroupsArgs = {
|
|
@@ -5824,8 +6142,8 @@ export declare type JiraForgeGroupsField = Node & JiraIssueField & JiraIssueFiel
|
|
|
5824
6142
|
selectedGroups?: Maybe<Array<Maybe<JiraGroup>>>;
|
|
5825
6143
|
selectedGroupsConnection?: Maybe<JiraGroupConnection>;
|
|
5826
6144
|
groups?: Maybe<JiraGroupConnection>;
|
|
5827
|
-
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5828
6145
|
searchUrl?: Maybe<Scalars['String']>;
|
|
6146
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5829
6147
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5830
6148
|
};
|
|
5831
6149
|
export declare type JiraForgeGroupsFieldSelectedGroupsConnectionArgs = {
|
|
@@ -6021,6 +6339,8 @@ export declare type JiraIssue = Node & {
|
|
|
6021
6339
|
comments?: Maybe<JiraCommentConnection>;
|
|
6022
6340
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
6023
6341
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
6342
|
+
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
6343
|
+
childIssues?: Maybe<JiraChildIssues>;
|
|
6024
6344
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
6025
6345
|
};
|
|
6026
6346
|
export declare type JiraIssueFieldsArgs = {
|
|
@@ -6054,6 +6374,12 @@ export declare type JiraIssueAttachmentsArgs = {
|
|
|
6054
6374
|
last?: Maybe<Scalars['Int']>;
|
|
6055
6375
|
before?: Maybe<Scalars['String']>;
|
|
6056
6376
|
};
|
|
6377
|
+
export declare type JiraIssueFieldSetsArgs = {
|
|
6378
|
+
first?: Maybe<Scalars['Int']>;
|
|
6379
|
+
after?: Maybe<Scalars['String']>;
|
|
6380
|
+
last?: Maybe<Scalars['Int']>;
|
|
6381
|
+
before?: Maybe<Scalars['String']>;
|
|
6382
|
+
};
|
|
6057
6383
|
export declare type JiraIssueBranchDevSummary = {
|
|
6058
6384
|
__typename?: 'JiraIssueBranchDevSummary';
|
|
6059
6385
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -6168,6 +6494,7 @@ export declare type JiraIssueFieldConnection = {
|
|
|
6168
6494
|
pageInfo: PageInfo;
|
|
6169
6495
|
edges?: Maybe<Array<Maybe<JiraIssueFieldEdge>>>;
|
|
6170
6496
|
};
|
|
6497
|
+
export declare type JiraIssueFieldConnectionResult = JiraIssueFieldConnection | QueryError;
|
|
6171
6498
|
export declare type JiraIssueFieldEdge = {
|
|
6172
6499
|
__typename?: 'JiraIssueFieldEdge';
|
|
6173
6500
|
node?: Maybe<JiraIssueField>;
|
|
@@ -6178,6 +6505,29 @@ export declare type JiraIssueFieldGrantTypeValue = Node & {
|
|
|
6178
6505
|
id: Scalars['ID'];
|
|
6179
6506
|
field: JiraIssueField;
|
|
6180
6507
|
};
|
|
6508
|
+
export declare type JiraIssueFieldSet = {
|
|
6509
|
+
__typename?: 'JiraIssueFieldSet';
|
|
6510
|
+
fieldSetId?: Maybe<Scalars['String']>;
|
|
6511
|
+
type?: Maybe<Scalars['String']>;
|
|
6512
|
+
fields?: Maybe<JiraIssueFieldConnection>;
|
|
6513
|
+
};
|
|
6514
|
+
export declare type JiraIssueFieldSetFieldsArgs = {
|
|
6515
|
+
first?: Maybe<Scalars['Int']>;
|
|
6516
|
+
after?: Maybe<Scalars['String']>;
|
|
6517
|
+
last?: Maybe<Scalars['Int']>;
|
|
6518
|
+
before?: Maybe<Scalars['String']>;
|
|
6519
|
+
};
|
|
6520
|
+
export declare type JiraIssueFieldSetConnection = {
|
|
6521
|
+
__typename?: 'JiraIssueFieldSetConnection';
|
|
6522
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
6523
|
+
pageInfo?: Maybe<PageInfo>;
|
|
6524
|
+
edges?: Maybe<Array<Maybe<JiraIssueFieldSetEdge>>>;
|
|
6525
|
+
};
|
|
6526
|
+
export declare type JiraIssueFieldSetEdge = {
|
|
6527
|
+
__typename?: 'JiraIssueFieldSetEdge';
|
|
6528
|
+
node?: Maybe<JiraIssueFieldSet>;
|
|
6529
|
+
cursor: Scalars['String'];
|
|
6530
|
+
};
|
|
6181
6531
|
export declare type JiraIssueItemContainer = {
|
|
6182
6532
|
__typename?: 'JiraIssueItemContainer';
|
|
6183
6533
|
containerType?: Maybe<JiraIssueItemSystemContainerType>;
|
|
@@ -6410,12 +6760,142 @@ export declare type JiraIssueReviewDevSummaryContainer = {
|
|
|
6410
6760
|
overall?: Maybe<JiraIssueReviewDevSummary>;
|
|
6411
6761
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
6412
6762
|
};
|
|
6763
|
+
export declare type JiraIssueSearchByFilter = JiraIssueSearchResult & {
|
|
6764
|
+
__typename?: 'JiraIssueSearchByFilter';
|
|
6765
|
+
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
6766
|
+
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
6767
|
+
filter?: Maybe<JiraFilterResult>;
|
|
6768
|
+
};
|
|
6769
|
+
export declare type JiraIssueSearchByFilterContentArgs = {
|
|
6770
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6771
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6772
|
+
};
|
|
6773
|
+
export declare type JiraIssueSearchByFilterContentByFieldConfigSetIdsArgs = {
|
|
6774
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
6775
|
+
};
|
|
6776
|
+
export declare type JiraIssueSearchByFilterResult = JiraIssueSearchByFilter | QueryError;
|
|
6777
|
+
export declare type JiraIssueSearchByHydration = JiraIssueSearchResult & {
|
|
6778
|
+
__typename?: 'JiraIssueSearchByHydration';
|
|
6779
|
+
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
6780
|
+
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
6781
|
+
};
|
|
6782
|
+
export declare type JiraIssueSearchByHydrationContentArgs = {
|
|
6783
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6784
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6785
|
+
};
|
|
6786
|
+
export declare type JiraIssueSearchByHydrationContentByFieldConfigSetIdsArgs = {
|
|
6787
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
6788
|
+
};
|
|
6789
|
+
export declare type JiraIssueSearchByJql = JiraIssueSearchResult & {
|
|
6790
|
+
__typename?: 'JiraIssueSearchByJql';
|
|
6791
|
+
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
6792
|
+
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
6793
|
+
jql?: Maybe<Scalars['String']>;
|
|
6794
|
+
};
|
|
6795
|
+
export declare type JiraIssueSearchByJqlContentArgs = {
|
|
6796
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6797
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6798
|
+
};
|
|
6799
|
+
export declare type JiraIssueSearchByJqlContentByFieldConfigSetIdsArgs = {
|
|
6800
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
6801
|
+
};
|
|
6802
|
+
export declare type JiraIssueSearchByJqlResult = JiraIssueSearchByJql | QueryError;
|
|
6803
|
+
export declare type JiraIssueSearchContextlessContent = JiraIssueSearchResultContent & {
|
|
6804
|
+
__typename?: 'JiraIssueSearchContextlessContent';
|
|
6805
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
6806
|
+
};
|
|
6807
|
+
export declare type JiraIssueSearchContextlessContentIssuesArgs = {
|
|
6808
|
+
first?: Maybe<Scalars['Int']>;
|
|
6809
|
+
last?: Maybe<Scalars['Int']>;
|
|
6810
|
+
before?: Maybe<Scalars['String']>;
|
|
6811
|
+
after?: Maybe<Scalars['String']>;
|
|
6812
|
+
};
|
|
6813
|
+
export declare type JiraIssueSearchContextualContent = JiraIssueSearchResultContent & {
|
|
6814
|
+
__typename?: 'JiraIssueSearchContextualContent';
|
|
6815
|
+
view?: Maybe<JiraIssueSearchView>;
|
|
6816
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
6817
|
+
};
|
|
6818
|
+
export declare type JiraIssueSearchContextualContentIssuesArgs = {
|
|
6819
|
+
first?: Maybe<Scalars['Int']>;
|
|
6820
|
+
last?: Maybe<Scalars['Int']>;
|
|
6821
|
+
before?: Maybe<Scalars['String']>;
|
|
6822
|
+
after?: Maybe<Scalars['String']>;
|
|
6823
|
+
};
|
|
6824
|
+
export declare type JiraIssueSearchFieldConfigSet = {
|
|
6825
|
+
__typename?: 'JiraIssueSearchFieldConfigSet';
|
|
6826
|
+
fieldConfigSetId?: Maybe<Scalars['String']>;
|
|
6827
|
+
displayName?: Maybe<Scalars['String']>;
|
|
6828
|
+
fieldType?: Maybe<Scalars['String']>;
|
|
6829
|
+
isSortable?: Maybe<Scalars['Boolean']>;
|
|
6830
|
+
isSelected?: Maybe<Scalars['Boolean']>;
|
|
6831
|
+
};
|
|
6832
|
+
export declare type JiraIssueSearchFieldConfigSetConnection = {
|
|
6833
|
+
__typename?: 'JiraIssueSearchFieldConfigSetConnection';
|
|
6834
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
6835
|
+
pageInfo: PageInfo;
|
|
6836
|
+
edges?: Maybe<Array<Maybe<JiraIssueSearchFieldConfigSetEdge>>>;
|
|
6837
|
+
};
|
|
6838
|
+
export declare type JiraIssueSearchFieldConfigSetEdge = {
|
|
6839
|
+
__typename?: 'JiraIssueSearchFieldConfigSetEdge';
|
|
6840
|
+
node?: Maybe<JiraIssueSearchFieldConfigSet>;
|
|
6841
|
+
cursor: Scalars['String'];
|
|
6842
|
+
};
|
|
6843
|
+
export declare enum JiraIssueSearchFieldConfigSetSelectedState {
|
|
6844
|
+
All = "ALL",
|
|
6845
|
+
Selected = "SELECTED",
|
|
6846
|
+
NonSelected = "NON_SELECTED"
|
|
6847
|
+
}
|
|
6848
|
+
export declare type JiraIssueSearchFieldConfigSetsFilter = {
|
|
6849
|
+
searchString?: Maybe<Scalars['String']>;
|
|
6850
|
+
fieldConfigSetSelectedState?: Maybe<JiraIssueSearchFieldConfigSetSelectedState>;
|
|
6851
|
+
};
|
|
6852
|
+
export declare type JiraIssueSearchResult = {
|
|
6853
|
+
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
6854
|
+
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
6855
|
+
};
|
|
6856
|
+
export declare type JiraIssueSearchResultContentArgs = {
|
|
6857
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6858
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6859
|
+
};
|
|
6860
|
+
export declare type JiraIssueSearchResultContentByFieldConfigSetIdsArgs = {
|
|
6861
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
6862
|
+
};
|
|
6863
|
+
export declare type JiraIssueSearchResultContent = {
|
|
6864
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
6865
|
+
};
|
|
6866
|
+
export declare type JiraIssueSearchResultContentIssuesArgs = {
|
|
6867
|
+
first?: Maybe<Scalars['Int']>;
|
|
6868
|
+
last?: Maybe<Scalars['Int']>;
|
|
6869
|
+
before?: Maybe<Scalars['String']>;
|
|
6870
|
+
after?: Maybe<Scalars['String']>;
|
|
6871
|
+
};
|
|
6872
|
+
export declare type JiraIssueSearchView = Node & {
|
|
6873
|
+
__typename?: 'JiraIssueSearchView';
|
|
6874
|
+
id: Scalars['ID'];
|
|
6875
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6876
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6877
|
+
fieldConfigSets?: Maybe<JiraIssueSearchFieldConfigSetConnection>;
|
|
6878
|
+
};
|
|
6879
|
+
export declare type JiraIssueSearchViewFieldConfigSetsArgs = {
|
|
6880
|
+
first?: Maybe<Scalars['Int']>;
|
|
6881
|
+
last?: Maybe<Scalars['Int']>;
|
|
6882
|
+
before?: Maybe<Scalars['String']>;
|
|
6883
|
+
after?: Maybe<Scalars['String']>;
|
|
6884
|
+
filter?: Maybe<JiraIssueSearchFieldConfigSetsFilter>;
|
|
6885
|
+
};
|
|
6886
|
+
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
6887
|
+
__typename?: 'JiraIssueSearchViewPayload';
|
|
6888
|
+
success: Scalars['Boolean'];
|
|
6889
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6890
|
+
view?: Maybe<JiraIssueSearchView>;
|
|
6891
|
+
};
|
|
6413
6892
|
export declare type JiraIssueType = Node & {
|
|
6414
6893
|
__typename?: 'JiraIssueType';
|
|
6415
6894
|
id: Scalars['ID'];
|
|
6416
6895
|
name: Scalars['String'];
|
|
6417
6896
|
description?: Maybe<Scalars['String']>;
|
|
6418
6897
|
avatar?: Maybe<JiraAvatar>;
|
|
6898
|
+
hierarchy?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
6419
6899
|
};
|
|
6420
6900
|
export declare type JiraIssueTypeConnection = {
|
|
6421
6901
|
__typename?: 'JiraIssueTypeConnection';
|
|
@@ -6448,6 +6928,11 @@ export declare type JiraIssueTypeFieldIssueTypesArgs = {
|
|
|
6448
6928
|
before?: Maybe<Scalars['String']>;
|
|
6449
6929
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
6450
6930
|
};
|
|
6931
|
+
export declare type JiraIssueTypeHierarchyLevel = {
|
|
6932
|
+
__typename?: 'JiraIssueTypeHierarchyLevel';
|
|
6933
|
+
level: Scalars['Int'];
|
|
6934
|
+
name: Scalars['String'];
|
|
6935
|
+
};
|
|
6451
6936
|
export declare enum JiraJqlAutocompleteType {
|
|
6452
6937
|
None = "NONE",
|
|
6453
6938
|
Component = "COMPONENT",
|
|
@@ -7044,11 +7529,16 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
7044
7529
|
export declare type JiraMutation = {
|
|
7045
7530
|
__typename?: 'JiraMutation';
|
|
7046
7531
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
7532
|
+
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
7047
7533
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
7048
7534
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
7049
7535
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
7050
7536
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
7051
7537
|
};
|
|
7538
|
+
export declare type JiraMutationUpdateIssueSearchViewFieldConfigSetsArgs = {
|
|
7539
|
+
id: Scalars['ID'];
|
|
7540
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
7541
|
+
};
|
|
7052
7542
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
7053
7543
|
cloudId: Scalars['ID'];
|
|
7054
7544
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
@@ -7096,6 +7586,12 @@ export declare type JiraOAuthAppsAppInput = {
|
|
|
7096
7586
|
deploymentsModule?: Maybe<JiraOAuthAppsDeploymentsModuleInput>;
|
|
7097
7587
|
devInfoModule?: Maybe<JiraOAuthAppsDevInfoModuleInput>;
|
|
7098
7588
|
};
|
|
7589
|
+
export declare type JiraOAuthAppsAppUpdateInput = {
|
|
7590
|
+
buildsModule?: Maybe<JiraOAuthAppsBuildsModuleInput>;
|
|
7591
|
+
featureFlagsModule?: Maybe<JiraOAuthAppsFeatureFlagsModuleInput>;
|
|
7592
|
+
deploymentsModule?: Maybe<JiraOAuthAppsDeploymentsModuleInput>;
|
|
7593
|
+
devInfoModule?: Maybe<JiraOAuthAppsDevInfoModuleInput>;
|
|
7594
|
+
};
|
|
7099
7595
|
export declare type JiraOAuthAppsApps = {
|
|
7100
7596
|
__typename?: 'JiraOAuthAppsApps';
|
|
7101
7597
|
apps?: Maybe<Array<Maybe<JiraOAuthAppsApp>>>;
|
|
@@ -7173,12 +7669,17 @@ export declare type JiraOAuthAppsFeatureFlagsModuleInput = {
|
|
|
7173
7669
|
export declare type JiraOAuthAppsMutation = {
|
|
7174
7670
|
__typename?: 'JiraOAuthAppsMutation';
|
|
7175
7671
|
createJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
7672
|
+
updateJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
7176
7673
|
deleteJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
7177
7674
|
};
|
|
7178
7675
|
export declare type JiraOAuthAppsMutationCreateJiraOAuthAppArgs = {
|
|
7179
7676
|
cloudId: Scalars['String'];
|
|
7180
7677
|
input: JiraOAuthAppsCreateAppInput;
|
|
7181
7678
|
};
|
|
7679
|
+
export declare type JiraOAuthAppsMutationUpdateJiraOAuthAppArgs = {
|
|
7680
|
+
cloudId: Scalars['String'];
|
|
7681
|
+
input: JiraOAuthAppsUpdateAppInput;
|
|
7682
|
+
};
|
|
7182
7683
|
export declare type JiraOAuthAppsMutationDeleteJiraOAuthAppArgs = {
|
|
7183
7684
|
cloudId: Scalars['String'];
|
|
7184
7685
|
input: JiraOAuthAppsDeleteAppInput;
|
|
@@ -7191,8 +7692,8 @@ export declare type JiraOAuthAppsPayload = Payload & {
|
|
|
7191
7692
|
errors?: Maybe<Array<MutationError>>;
|
|
7192
7693
|
};
|
|
7193
7694
|
export declare type JiraOAuthAppsUpdateAppInput = {
|
|
7194
|
-
|
|
7195
|
-
app:
|
|
7695
|
+
clientId: Scalars['ID'];
|
|
7696
|
+
app: JiraOAuthAppsAppUpdateInput;
|
|
7196
7697
|
clientMutationId?: Maybe<Scalars['ID']>;
|
|
7197
7698
|
};
|
|
7198
7699
|
export declare type JiraOAuthAppsUrlTemplate = {
|
|
@@ -7240,6 +7741,7 @@ export declare type JiraParentIssueField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7240
7741
|
name: Scalars['String'];
|
|
7241
7742
|
description?: Maybe<Scalars['String']>;
|
|
7242
7743
|
parentIssue?: Maybe<JiraIssue>;
|
|
7744
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
7243
7745
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7244
7746
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7245
7747
|
};
|
|
@@ -7456,10 +7958,28 @@ export declare type JiraPriorityFieldPrioritiesArgs = {
|
|
|
7456
7958
|
before?: Maybe<Scalars['String']>;
|
|
7457
7959
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
7458
7960
|
};
|
|
7961
|
+
export declare type JiraProformaForms = {
|
|
7962
|
+
__typename?: 'JiraProformaForms';
|
|
7963
|
+
hasProjectForms?: Maybe<Scalars['Boolean']>;
|
|
7964
|
+
hasIssueForms?: Maybe<Scalars['Boolean']>;
|
|
7965
|
+
};
|
|
7966
|
+
export declare type JiraProformaFormsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7967
|
+
__typename?: 'JiraProformaFormsField';
|
|
7968
|
+
id: Scalars['ID'];
|
|
7969
|
+
fieldId: Scalars['String'];
|
|
7970
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
7971
|
+
type: Scalars['String'];
|
|
7972
|
+
name: Scalars['String'];
|
|
7973
|
+
description?: Maybe<Scalars['String']>;
|
|
7974
|
+
proformaForms?: Maybe<JiraProformaForms>;
|
|
7975
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7976
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7977
|
+
};
|
|
7459
7978
|
export declare type JiraProject = Node & {
|
|
7460
7979
|
__typename?: 'JiraProject';
|
|
7461
7980
|
id: Scalars['ID'];
|
|
7462
7981
|
key: Scalars['String'];
|
|
7982
|
+
projectId?: Maybe<Scalars['String']>;
|
|
7463
7983
|
name: Scalars['String'];
|
|
7464
7984
|
cloudId: Scalars['ID'];
|
|
7465
7985
|
description?: Maybe<Scalars['String']>;
|
|
@@ -7467,11 +7987,15 @@ export declare type JiraProject = Node & {
|
|
|
7467
7987
|
category?: Maybe<JiraProjectCategory>;
|
|
7468
7988
|
avatar?: Maybe<JiraAvatar>;
|
|
7469
7989
|
projectUrl?: Maybe<Scalars['String']>;
|
|
7990
|
+
projectType?: Maybe<JiraProjectType>;
|
|
7991
|
+
projectStyle?: Maybe<JiraProjectStyle>;
|
|
7992
|
+
status?: Maybe<JiraProjectStatus>;
|
|
7470
7993
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
7471
7994
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
7472
7995
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
7473
7996
|
servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
|
|
7474
7997
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
7998
|
+
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
7475
7999
|
};
|
|
7476
8000
|
export declare type JiraProjectRepositoryRelationshipsArgs = {
|
|
7477
8001
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7497,6 +8021,34 @@ export declare type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
|
|
|
7497
8021
|
first?: Maybe<Scalars['Int']>;
|
|
7498
8022
|
after?: Maybe<Scalars['String']>;
|
|
7499
8023
|
};
|
|
8024
|
+
export declare type JiraProjectConfluenceSpaceRelationshipsArgs = {
|
|
8025
|
+
first?: Maybe<Scalars['Int']>;
|
|
8026
|
+
after?: Maybe<Scalars['String']>;
|
|
8027
|
+
};
|
|
8028
|
+
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput = {
|
|
8029
|
+
id: Scalars['ID'];
|
|
8030
|
+
};
|
|
8031
|
+
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload = {
|
|
8032
|
+
__typename?: 'JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload';
|
|
8033
|
+
success: Scalars['Boolean'];
|
|
8034
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8035
|
+
};
|
|
8036
|
+
export declare type JiraProjectAndConfluenceSpaceRelationship = {
|
|
8037
|
+
__typename?: 'JiraProjectAndConfluenceSpaceRelationship';
|
|
8038
|
+
jiraProject?: Maybe<JiraProject>;
|
|
8039
|
+
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
8040
|
+
};
|
|
8041
|
+
export declare type JiraProjectAndConfluenceSpaceRelationshipConnection = {
|
|
8042
|
+
__typename?: 'JiraProjectAndConfluenceSpaceRelationshipConnection';
|
|
8043
|
+
edges?: Maybe<Array<Maybe<JiraProjectAndConfluenceSpaceRelationshipEdge>>>;
|
|
8044
|
+
nodes?: Maybe<Array<Maybe<JiraProjectAndConfluenceSpaceRelationship>>>;
|
|
8045
|
+
pageInfo: PageInfo;
|
|
8046
|
+
};
|
|
8047
|
+
export declare type JiraProjectAndConfluenceSpaceRelationshipEdge = {
|
|
8048
|
+
__typename?: 'JiraProjectAndConfluenceSpaceRelationshipEdge';
|
|
8049
|
+
cursor: Scalars['String'];
|
|
8050
|
+
node?: Maybe<JiraProjectAndConfluenceSpaceRelationship>;
|
|
8051
|
+
};
|
|
7500
8052
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
7501
8053
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
7502
8054
|
id: Scalars['ID'];
|
|
@@ -7659,6 +8211,14 @@ export declare type JiraProjectSortInput = {
|
|
|
7659
8211
|
sortBy?: Maybe<JiraProjectSortField>;
|
|
7660
8212
|
order?: Maybe<SortDirection>;
|
|
7661
8213
|
};
|
|
8214
|
+
export declare enum JiraProjectStatus {
|
|
8215
|
+
Archived = "ARCHIVED",
|
|
8216
|
+
Deleted = "DELETED"
|
|
8217
|
+
}
|
|
8218
|
+
export declare enum JiraProjectStyle {
|
|
8219
|
+
TeamManagedProject = "TEAM_MANAGED_PROJECT",
|
|
8220
|
+
CompanyManagedProject = "COMPANY_MANAGED_PROJECT"
|
|
8221
|
+
}
|
|
7662
8222
|
export declare enum JiraProjectType {
|
|
7663
8223
|
ServiceDesk = "SERVICE_DESK",
|
|
7664
8224
|
Business = "BUSINESS",
|
|
@@ -7677,6 +8237,10 @@ export declare type JiraQuery = {
|
|
|
7677
8237
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
7678
8238
|
issueContainersByType: JiraIssueItemContainersResult;
|
|
7679
8239
|
issueContainersByTypeByKey: JiraIssueItemContainersResult;
|
|
8240
|
+
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
8241
|
+
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
8242
|
+
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
8243
|
+
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
7680
8244
|
issueByKey?: Maybe<JiraIssue>;
|
|
7681
8245
|
issueById?: Maybe<JiraIssue>;
|
|
7682
8246
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
@@ -7689,6 +8253,7 @@ export declare type JiraQuery = {
|
|
|
7689
8253
|
getPermissionSchemeGrants?: Maybe<JiraPermissionGrantConnection>;
|
|
7690
8254
|
getPermissionSchemeGrantsHierarchy: Array<JiraPermissionGrants>;
|
|
7691
8255
|
version?: Maybe<JiraVersionResult>;
|
|
8256
|
+
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
7692
8257
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
7693
8258
|
};
|
|
7694
8259
|
export declare type JiraQueryJiraProjectArgs = {
|
|
@@ -7715,6 +8280,19 @@ export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
|
7715
8280
|
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
7716
8281
|
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
7717
8282
|
};
|
|
8283
|
+
export declare type JiraQueryIssueSearchByJqlArgs = {
|
|
8284
|
+
cloudId: Scalars['ID'];
|
|
8285
|
+
jql: Scalars['String'];
|
|
8286
|
+
};
|
|
8287
|
+
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
8288
|
+
id: Scalars['ID'];
|
|
8289
|
+
};
|
|
8290
|
+
export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
8291
|
+
ids: Array<Scalars['ID']>;
|
|
8292
|
+
};
|
|
8293
|
+
export declare type JiraQueryIssueSearchViewArgs = {
|
|
8294
|
+
id: Scalars['ID'];
|
|
8295
|
+
};
|
|
7718
8296
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
7719
8297
|
key: Scalars['String'];
|
|
7720
8298
|
cloudId: Scalars['ID'];
|
|
@@ -7775,6 +8353,14 @@ export declare type JiraQueryGetPermissionSchemeGrantsHierarchyArgs = {
|
|
|
7775
8353
|
export declare type JiraQueryVersionArgs = {
|
|
7776
8354
|
id: Scalars['ID'];
|
|
7777
8355
|
};
|
|
8356
|
+
export declare type JiraQueryVersionsForProjectArgs = {
|
|
8357
|
+
jiraProjectId: Scalars['ID'];
|
|
8358
|
+
first?: Maybe<Scalars['Int']>;
|
|
8359
|
+
after?: Maybe<Scalars['String']>;
|
|
8360
|
+
last?: Maybe<Scalars['Int']>;
|
|
8361
|
+
before?: Maybe<Scalars['String']>;
|
|
8362
|
+
filter?: Maybe<Array<Maybe<JiraVersionStatus>>>;
|
|
8363
|
+
};
|
|
7778
8364
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
7779
8365
|
versionId: Scalars['ID'];
|
|
7780
8366
|
};
|
|
@@ -8154,6 +8740,7 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
8154
8740
|
updated?: Maybe<Scalars['DateTime']>;
|
|
8155
8741
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
8156
8742
|
visibility?: Maybe<JiraServiceManagementCommentVisibility>;
|
|
8743
|
+
authorCanSeeRequest?: Maybe<Scalars['Boolean']>;
|
|
8157
8744
|
};
|
|
8158
8745
|
export declare enum JiraServiceManagementCommentVisibility {
|
|
8159
8746
|
VisibleToHelpseeker = "VISIBLE_TO_HELPSEEKER",
|
|
@@ -8250,6 +8837,21 @@ export declare type JiraServiceManagementLanguage = {
|
|
|
8250
8837
|
languageCode?: Maybe<Scalars['String']>;
|
|
8251
8838
|
displayName?: Maybe<Scalars['String']>;
|
|
8252
8839
|
};
|
|
8840
|
+
export declare enum JiraServiceManagementMajorIncident {
|
|
8841
|
+
MajorIncident = "MAJOR_INCIDENT"
|
|
8842
|
+
}
|
|
8843
|
+
export declare type JiraServiceManagementMajorIncidentField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8844
|
+
__typename?: 'JiraServiceManagementMajorIncidentField';
|
|
8845
|
+
id: Scalars['ID'];
|
|
8846
|
+
fieldId: Scalars['String'];
|
|
8847
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
8848
|
+
type: Scalars['String'];
|
|
8849
|
+
name: Scalars['String'];
|
|
8850
|
+
description?: Maybe<Scalars['String']>;
|
|
8851
|
+
majorIncident?: Maybe<JiraServiceManagementMajorIncident>;
|
|
8852
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
8853
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
8854
|
+
};
|
|
8253
8855
|
export declare type JiraServiceManagementMultipleSelectUserPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8254
8856
|
__typename?: 'JiraServiceManagementMultipleSelectUserPickerField';
|
|
8255
8857
|
id: Scalars['ID'];
|
|
@@ -8656,6 +9258,7 @@ export declare type JiraStatus = Node & {
|
|
|
8656
9258
|
id: Scalars['ID'];
|
|
8657
9259
|
statusId: Scalars['String'];
|
|
8658
9260
|
name?: Maybe<Scalars['String']>;
|
|
9261
|
+
description?: Maybe<Scalars['String']>;
|
|
8659
9262
|
statusCategory?: Maybe<JiraStatusCategory>;
|
|
8660
9263
|
};
|
|
8661
9264
|
export declare type JiraStatusCategory = Node & {
|
|
@@ -8941,6 +9544,21 @@ export declare type JiraWatchesField = Node & JiraIssueField & JiraIssueFieldCon
|
|
|
8941
9544
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
8942
9545
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
8943
9546
|
};
|
|
9547
|
+
export declare type JiraWorkCategory = {
|
|
9548
|
+
__typename?: 'JiraWorkCategory';
|
|
9549
|
+
value?: Maybe<Scalars['String']>;
|
|
9550
|
+
};
|
|
9551
|
+
export declare type JiraWorkCategoryField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
9552
|
+
__typename?: 'JiraWorkCategoryField';
|
|
9553
|
+
id: Scalars['ID'];
|
|
9554
|
+
fieldId: Scalars['String'];
|
|
9555
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
9556
|
+
type: Scalars['String'];
|
|
9557
|
+
name: Scalars['String'];
|
|
9558
|
+
description?: Maybe<Scalars['String']>;
|
|
9559
|
+
workCategory?: Maybe<JiraWorkCategory>;
|
|
9560
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9561
|
+
};
|
|
8944
9562
|
export declare type JiraWorkLogConnection = {
|
|
8945
9563
|
__typename?: 'JiraWorkLogConnection';
|
|
8946
9564
|
indicativeCount?: Maybe<Scalars['Int']>;
|
|
@@ -8973,6 +9591,13 @@ export declare type JswMutation = {
|
|
|
8973
9591
|
export declare type JswMutationDeleteCardArgs = {
|
|
8974
9592
|
input?: Maybe<DeleteCardInput>;
|
|
8975
9593
|
};
|
|
9594
|
+
export declare type JswQuery = {
|
|
9595
|
+
__typename?: 'JswQuery';
|
|
9596
|
+
boardScope?: Maybe<BoardScope>;
|
|
9597
|
+
};
|
|
9598
|
+
export declare type JswQueryBoardScopeArgs = {
|
|
9599
|
+
boardId: Scalars['ID'];
|
|
9600
|
+
};
|
|
8976
9601
|
export declare type LabelUsage = {
|
|
8977
9602
|
__typename?: 'LabelUsage';
|
|
8978
9603
|
label: Scalars['String'];
|
|
@@ -8998,6 +9623,7 @@ export declare type MarketplaceApp = {
|
|
|
8998
9623
|
appId: Scalars['ID'];
|
|
8999
9624
|
appKey: Scalars['String'];
|
|
9000
9625
|
name: Scalars['String'];
|
|
9626
|
+
partnerId: Scalars['ID'];
|
|
9001
9627
|
partner?: Maybe<MarketplacePartner>;
|
|
9002
9628
|
entityStatus: MarketplaceEntityStatus;
|
|
9003
9629
|
createdAt: Scalars['DateTime'];
|
|
@@ -9021,6 +9647,7 @@ export declare type MarketplaceApp = {
|
|
|
9021
9647
|
programs?: Maybe<MarketplaceAppPrograms>;
|
|
9022
9648
|
marketingLabels: Array<Scalars['String']>;
|
|
9023
9649
|
googleAnalyticsId?: Maybe<Scalars['String']>;
|
|
9650
|
+
segmentWriteKey?: Maybe<Scalars['String']>;
|
|
9024
9651
|
categories: Array<MarketplaceAppCategory>;
|
|
9025
9652
|
jsdWidgetKey?: Maybe<Scalars['String']>;
|
|
9026
9653
|
};
|
|
@@ -9062,6 +9689,7 @@ export declare enum MarketplaceAppPermission {
|
|
|
9062
9689
|
export declare type MarketplaceAppPrograms = {
|
|
9063
9690
|
__typename?: 'MarketplaceAppPrograms';
|
|
9064
9691
|
cloudFortified?: Maybe<MarketplaceCloudFortified>;
|
|
9692
|
+
bugBountyParticipant?: Maybe<MarketplaceBugBountyParticipant>;
|
|
9065
9693
|
};
|
|
9066
9694
|
export declare type MarketplaceAppReviewSummary = {
|
|
9067
9695
|
__typename?: 'MarketplaceAppReviewSummary';
|
|
@@ -9130,6 +9758,16 @@ export declare enum MarketplaceBillingCycle {
|
|
|
9130
9758
|
Annual = "ANNUAL",
|
|
9131
9759
|
Monthly = "MONTHLY"
|
|
9132
9760
|
}
|
|
9761
|
+
export declare type MarketplaceBugBountyParticipant = {
|
|
9762
|
+
__typename?: 'MarketplaceBugBountyParticipant';
|
|
9763
|
+
cloud?: Maybe<MarketplaceBugBountyProgramHostingStatus>;
|
|
9764
|
+
server?: Maybe<MarketplaceBugBountyProgramHostingStatus>;
|
|
9765
|
+
dataCenter?: Maybe<MarketplaceBugBountyProgramHostingStatus>;
|
|
9766
|
+
};
|
|
9767
|
+
export declare type MarketplaceBugBountyProgramHostingStatus = {
|
|
9768
|
+
__typename?: 'MarketplaceBugBountyProgramHostingStatus';
|
|
9769
|
+
status?: Maybe<MarketplaceProgramStatus>;
|
|
9770
|
+
};
|
|
9133
9771
|
export declare type MarketplaceCloudAppDeployment = MarketplaceAppDeployment & {
|
|
9134
9772
|
__typename?: 'MarketplaceCloudAppDeployment';
|
|
9135
9773
|
compatibleProducts: Array<CompatibleAtlassianProduct>;
|
|
@@ -9141,6 +9779,7 @@ export declare type MarketplaceCloudAppDeployment = MarketplaceAppDeployment & {
|
|
|
9141
9779
|
export declare type MarketplaceCloudFortified = {
|
|
9142
9780
|
__typename?: 'MarketplaceCloudFortified';
|
|
9143
9781
|
status?: Maybe<MarketplaceCloudFortifiedStatus>;
|
|
9782
|
+
programStatus?: Maybe<MarketplaceProgramStatus>;
|
|
9144
9783
|
};
|
|
9145
9784
|
export declare enum MarketplaceCloudFortifiedStatus {
|
|
9146
9785
|
Approved = "APPROVED",
|
|
@@ -9311,6 +9950,11 @@ export declare enum MarketplacePricingTierType {
|
|
|
9311
9950
|
UserTiered = "USER_TIERED",
|
|
9312
9951
|
RemoteAgentTiered = "REMOTE_AGENT_TIERED"
|
|
9313
9952
|
}
|
|
9953
|
+
export declare enum MarketplaceProgramStatus {
|
|
9954
|
+
Approved = "APPROVED",
|
|
9955
|
+
Rejected = "REJECTED",
|
|
9956
|
+
NotAParticipant = "NOT_A_PARTICIPANT"
|
|
9957
|
+
}
|
|
9314
9958
|
export declare type MarketplaceSupportedAtlassianProduct = {
|
|
9315
9959
|
__typename?: 'MarketplaceSupportedAtlassianProduct';
|
|
9316
9960
|
id: Scalars['ID'];
|
|
@@ -9340,6 +9984,11 @@ export declare enum MembershipRole {
|
|
|
9340
9984
|
Regular = "REGULAR",
|
|
9341
9985
|
Admin = "ADMIN"
|
|
9342
9986
|
}
|
|
9987
|
+
export declare enum MembershipSetting {
|
|
9988
|
+
Open = "OPEN",
|
|
9989
|
+
MemberInvite = "MEMBER_INVITE",
|
|
9990
|
+
AdminInvite = "ADMIN_INVITE"
|
|
9991
|
+
}
|
|
9343
9992
|
export declare enum MembershipState {
|
|
9344
9993
|
FullMember = "FULL_MEMBER",
|
|
9345
9994
|
Invited = "INVITED",
|
|
@@ -9419,6 +10068,7 @@ export declare type Mutation = {
|
|
|
9419
10068
|
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
9420
10069
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
9421
10070
|
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
10071
|
+
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
9422
10072
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
9423
10073
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
9424
10074
|
deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -9487,6 +10137,7 @@ export declare type Mutation = {
|
|
|
9487
10137
|
updatePolarisView?: Maybe<UpdatePolarisViewPayload>;
|
|
9488
10138
|
updatePolarisViewRankV2?: Maybe<UpdatePolarisViewRankV2Payload>;
|
|
9489
10139
|
deletePolarisView?: Maybe<DeletePolarisViewPayload>;
|
|
10140
|
+
updatePolarisViewLastViewedTimestamp?: Maybe<UpdatePolarisViewTimestampPayload>;
|
|
9490
10141
|
createPolarisViewSet?: Maybe<CreatePolarisViewSetPayload>;
|
|
9491
10142
|
updatePolarisViewSet?: Maybe<UpdatePolarisViewSetPayload>;
|
|
9492
10143
|
deletePolarisViewSet?: Maybe<DeletePolarisViewSetPayload>;
|
|
@@ -9512,6 +10163,7 @@ export declare type Mutation = {
|
|
|
9512
10163
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
9513
10164
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
9514
10165
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
10166
|
+
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
9515
10167
|
};
|
|
9516
10168
|
export declare type MutationCreateReleaseNoteArgs = {
|
|
9517
10169
|
changeStatus?: Maybe<Scalars['String']>;
|
|
@@ -9631,6 +10283,9 @@ export declare type MutationRankCardParentArgs = {
|
|
|
9631
10283
|
export declare type MutationSetIssueMediaVisibilityArgs = {
|
|
9632
10284
|
input?: Maybe<SetIssueMediaVisibilityInput>;
|
|
9633
10285
|
};
|
|
10286
|
+
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
10287
|
+
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
10288
|
+
};
|
|
9634
10289
|
export declare type MutationCreateDevOpsServiceAndOpsgenieTeamRelationshipArgs = {
|
|
9635
10290
|
input: CreateDevOpsServiceAndOpsgenieTeamRelationshipInput;
|
|
9636
10291
|
};
|
|
@@ -9839,6 +10494,10 @@ export declare type MutationUpdatePolarisViewRankV2Args = {
|
|
|
9839
10494
|
export declare type MutationDeletePolarisViewArgs = {
|
|
9840
10495
|
id: Scalars['ID'];
|
|
9841
10496
|
};
|
|
10497
|
+
export declare type MutationUpdatePolarisViewLastViewedTimestampArgs = {
|
|
10498
|
+
viewId: Scalars['ID'];
|
|
10499
|
+
timestampInput?: Maybe<Scalars['String']>;
|
|
10500
|
+
};
|
|
9842
10501
|
export declare type MutationCreatePolarisViewSetArgs = {
|
|
9843
10502
|
input: CreatePolarisViewSetInput;
|
|
9844
10503
|
};
|
|
@@ -9909,6 +10568,9 @@ export declare type MutationDeleteAppEnvironmentVariableArgs = {
|
|
|
9909
10568
|
export declare type MutationCreateAppDeploymentArgs = {
|
|
9910
10569
|
input: CreateAppDeploymentInput;
|
|
9911
10570
|
};
|
|
10571
|
+
export declare type MutationDeleteConfluenceSpaceRelationshipsForJiraProjectArgs = {
|
|
10572
|
+
input: JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput;
|
|
10573
|
+
};
|
|
9912
10574
|
export declare type MutationError = {
|
|
9913
10575
|
__typename?: 'MutationError';
|
|
9914
10576
|
message?: Maybe<Scalars['String']>;
|
|
@@ -10117,10 +10779,16 @@ export declare type Payload = {
|
|
|
10117
10779
|
success: Scalars['Boolean'];
|
|
10118
10780
|
errors?: Maybe<Array<MutationError>>;
|
|
10119
10781
|
};
|
|
10782
|
+
export declare type PermissibleEstimationType = {
|
|
10783
|
+
__typename?: 'PermissibleEstimationType';
|
|
10784
|
+
value?: Maybe<Scalars['String']>;
|
|
10785
|
+
name?: Maybe<Scalars['String']>;
|
|
10786
|
+
description?: Maybe<Scalars['String']>;
|
|
10787
|
+
};
|
|
10120
10788
|
export declare type PermissionToConsentByOauthId = {
|
|
10121
10789
|
__typename?: 'PermissionToConsentByOauthId';
|
|
10122
10790
|
isAllowed: Scalars['Boolean'];
|
|
10123
|
-
|
|
10791
|
+
isSiteAdmin: Scalars['Boolean'];
|
|
10124
10792
|
};
|
|
10125
10793
|
export declare type PolarisAnonymousVisitorHash = PolarisAnonymousVisitorViewHash;
|
|
10126
10794
|
export declare type PolarisAnonymousVisitorViewHash = {
|
|
@@ -11065,10 +11733,12 @@ export declare type Query = {
|
|
|
11065
11733
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
11066
11734
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
11067
11735
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
11736
|
+
practicePages: Array<ContentPlatformPracticePage>;
|
|
11068
11737
|
practicePage: ContentPlatformPracticePage;
|
|
11069
11738
|
apps?: Maybe<AppConnection>;
|
|
11070
11739
|
app?: Maybe<App>;
|
|
11071
11740
|
appHostServices?: Maybe<Array<AppHostService>>;
|
|
11741
|
+
jsw?: Maybe<JswQuery>;
|
|
11072
11742
|
boardScope?: Maybe<BoardScope>;
|
|
11073
11743
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
11074
11744
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
@@ -11452,6 +12122,8 @@ export declare type RankColumnOutput = MutationResponse & {
|
|
|
11452
12122
|
export declare enum RateLimitingCurrency {
|
|
11453
12123
|
TestingService = "TESTING_SERVICE",
|
|
11454
12124
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
12125
|
+
TeamsCurrency = "TEAMS_CURRENCY",
|
|
12126
|
+
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
11455
12127
|
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY"
|
|
11456
12128
|
}
|
|
11457
12129
|
export declare type RawStatus = {
|
|
@@ -11542,6 +12214,11 @@ export declare type RoadmapBoardConfiguration = {
|
|
|
11542
12214
|
isBoardJqlFilteringOutEpics?: Maybe<Scalars['Boolean']>;
|
|
11543
12215
|
isSprintsFeatureEnabled?: Maybe<Scalars['Boolean']>;
|
|
11544
12216
|
};
|
|
12217
|
+
export declare type RoadmapComponent = {
|
|
12218
|
+
__typename?: 'RoadmapComponent';
|
|
12219
|
+
id: Scalars['ID'];
|
|
12220
|
+
name: Scalars['String'];
|
|
12221
|
+
};
|
|
11545
12222
|
export declare type RoadmapConfiguration = {
|
|
11546
12223
|
__typename?: 'RoadmapConfiguration';
|
|
11547
12224
|
isCrossProject: Scalars['Boolean'];
|
|
@@ -11608,6 +12285,7 @@ export declare type RoadmapItem = {
|
|
|
11608
12285
|
labels?: Maybe<Array<Scalars['String']>>;
|
|
11609
12286
|
versionIds?: Maybe<Array<Scalars['ID']>>;
|
|
11610
12287
|
sprintIds?: Maybe<Array<Scalars['ID']>>;
|
|
12288
|
+
componentIds?: Maybe<Array<Scalars['ID']>>;
|
|
11611
12289
|
inferredDueDate?: Maybe<Scalars['Date']>;
|
|
11612
12290
|
inferredStartDate?: Maybe<Scalars['Date']>;
|
|
11613
12291
|
};
|
|
@@ -11704,6 +12382,7 @@ export declare type RoadmapProjectConfiguration = {
|
|
|
11704
12382
|
validation?: Maybe<RoadmapProjectValidation>;
|
|
11705
12383
|
defaultItemTypeId?: Maybe<Scalars['String']>;
|
|
11706
12384
|
versions?: Maybe<Array<RoadmapVersion>>;
|
|
12385
|
+
components?: Maybe<Array<RoadmapComponent>>;
|
|
11707
12386
|
};
|
|
11708
12387
|
export declare type RoadmapProjectPermissions = {
|
|
11709
12388
|
__typename?: 'RoadmapProjectPermissions';
|
|
@@ -12046,6 +12725,7 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
12046
12725
|
};
|
|
12047
12726
|
export declare type ShepherdAlert = {
|
|
12048
12727
|
__typename?: 'ShepherdAlert';
|
|
12728
|
+
actor?: Maybe<ShepherdUser>;
|
|
12049
12729
|
cloudId?: Maybe<Scalars['ID']>;
|
|
12050
12730
|
createdOn: Scalars['DateTime'];
|
|
12051
12731
|
id: Scalars['ID'];
|
|
@@ -12054,6 +12734,11 @@ export declare type ShepherdAlert = {
|
|
|
12054
12734
|
title: Scalars['String'];
|
|
12055
12735
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
12056
12736
|
};
|
|
12737
|
+
export declare type ShepherdAlertEdge = {
|
|
12738
|
+
__typename?: 'ShepherdAlertEdge';
|
|
12739
|
+
node?: Maybe<ShepherdAlert>;
|
|
12740
|
+
};
|
|
12741
|
+
export declare type ShepherdAlertResult = QueryError | ShepherdAlert;
|
|
12057
12742
|
export declare enum ShepherdAlertSeverity {
|
|
12058
12743
|
Critical = "CRITICAL",
|
|
12059
12744
|
High = "HIGH",
|
|
@@ -12065,9 +12750,16 @@ export declare enum ShepherdAlertStatus {
|
|
|
12065
12750
|
Triaged = "TRIAGED",
|
|
12066
12751
|
Untriaged = "UNTRIAGED"
|
|
12067
12752
|
}
|
|
12753
|
+
export declare type ShepherdAlertsConnection = {
|
|
12754
|
+
__typename?: 'ShepherdAlertsConnection';
|
|
12755
|
+
edges?: Maybe<Array<Maybe<ShepherdAlertEdge>>>;
|
|
12756
|
+
};
|
|
12757
|
+
export declare type ShepherdAlertsResult = QueryError | ShepherdAlertsConnection;
|
|
12068
12758
|
export declare type ShepherdAppInfo = {
|
|
12069
12759
|
__typename?: 'ShepherdAppInfo';
|
|
12070
12760
|
apiVersion: Scalars['Int'];
|
|
12761
|
+
env: Scalars['String'];
|
|
12762
|
+
loginUrl: Scalars['String'];
|
|
12071
12763
|
};
|
|
12072
12764
|
export declare type ShepherdCreateAlertInput = {
|
|
12073
12765
|
cloudId?: Maybe<Scalars['ID']>;
|
|
@@ -12081,23 +12773,56 @@ export declare type ShepherdCreateAlertPayload = Payload & {
|
|
|
12081
12773
|
node?: Maybe<ShepherdAlert>;
|
|
12082
12774
|
success: Scalars['Boolean'];
|
|
12083
12775
|
};
|
|
12776
|
+
export declare type ShepherdCreateOrganizationInput = {
|
|
12777
|
+
enabled?: Maybe<Scalars['Boolean']>;
|
|
12778
|
+
id: Scalars['ID'];
|
|
12779
|
+
};
|
|
12780
|
+
export declare type ShepherdCreateOrganizationPayload = Payload & {
|
|
12781
|
+
__typename?: 'ShepherdCreateOrganizationPayload';
|
|
12782
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12783
|
+
node?: Maybe<ShepherdOrganization>;
|
|
12784
|
+
success: Scalars['Boolean'];
|
|
12785
|
+
};
|
|
12786
|
+
export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
|
|
12787
|
+
__typename?: 'ShepherdGenericQueryErrorExtension';
|
|
12788
|
+
errorType?: Maybe<Scalars['String']>;
|
|
12789
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
12790
|
+
type?: Maybe<ShepherdQueryErrorType>;
|
|
12791
|
+
};
|
|
12084
12792
|
export declare type ShepherdMutation = {
|
|
12085
12793
|
__typename?: 'ShepherdMutation';
|
|
12086
12794
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
12795
|
+
createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
|
|
12087
12796
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
12797
|
+
updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
|
|
12088
12798
|
};
|
|
12089
12799
|
export declare type ShepherdMutationCreateAlertArgs = {
|
|
12090
12800
|
input: ShepherdCreateAlertInput;
|
|
12091
12801
|
};
|
|
12802
|
+
export declare type ShepherdMutationCreateOrganizationArgs = {
|
|
12803
|
+
input: ShepherdCreateOrganizationInput;
|
|
12804
|
+
};
|
|
12092
12805
|
export declare type ShepherdMutationUpdateAlertArgs = {
|
|
12093
12806
|
id: Scalars['ID'];
|
|
12094
12807
|
input: ShepherdUpdateAlertInput;
|
|
12095
12808
|
};
|
|
12809
|
+
export declare type ShepherdMutationUpdateOrganizationArgs = {
|
|
12810
|
+
id: Scalars['ID'];
|
|
12811
|
+
input: ShepherdUpdateOrganizationInput;
|
|
12812
|
+
};
|
|
12813
|
+
export declare type ShepherdOrganization = {
|
|
12814
|
+
__typename?: 'ShepherdOrganization';
|
|
12815
|
+
createdOn: Scalars['DateTime'];
|
|
12816
|
+
enabled: Scalars['Boolean'];
|
|
12817
|
+
id: Scalars['ID'];
|
|
12818
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
12819
|
+
};
|
|
12096
12820
|
export declare type ShepherdQuery = {
|
|
12097
12821
|
__typename?: 'ShepherdQuery';
|
|
12098
|
-
shepherdAlert?: Maybe<
|
|
12099
|
-
shepherdAlerts?: Maybe<
|
|
12822
|
+
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
12823
|
+
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
12100
12824
|
shepherdAppInfo: ShepherdAppInfo;
|
|
12825
|
+
shepherdOrganization?: Maybe<ShepherdOrganization>;
|
|
12101
12826
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
12102
12827
|
};
|
|
12103
12828
|
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
@@ -12106,6 +12831,13 @@ export declare type ShepherdQueryShepherdAlertArgs = {
|
|
|
12106
12831
|
export declare type ShepherdQueryShepherdAlertsArgs = {
|
|
12107
12832
|
orgId: Scalars['ID'];
|
|
12108
12833
|
};
|
|
12834
|
+
export declare type ShepherdQueryShepherdOrganizationArgs = {
|
|
12835
|
+
id: Scalars['ID'];
|
|
12836
|
+
};
|
|
12837
|
+
export declare enum ShepherdQueryErrorType {
|
|
12838
|
+
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
12839
|
+
Unauthorized = "UNAUTHORIZED"
|
|
12840
|
+
}
|
|
12109
12841
|
export declare type ShepherdUpdateAlertInput = {
|
|
12110
12842
|
status?: Maybe<ShepherdAlertStatus>;
|
|
12111
12843
|
};
|
|
@@ -12115,9 +12847,18 @@ export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
|
12115
12847
|
node?: Maybe<ShepherdAlert>;
|
|
12116
12848
|
success: Scalars['Boolean'];
|
|
12117
12849
|
};
|
|
12850
|
+
export declare type ShepherdUpdateOrganizationInput = {
|
|
12851
|
+
enabled?: Maybe<Scalars['Boolean']>;
|
|
12852
|
+
};
|
|
12853
|
+
export declare type ShepherdUpdateOrganizationPayload = Payload & {
|
|
12854
|
+
__typename?: 'ShepherdUpdateOrganizationPayload';
|
|
12855
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12856
|
+
node?: Maybe<ShepherdOrganization>;
|
|
12857
|
+
success: Scalars['Boolean'];
|
|
12858
|
+
};
|
|
12118
12859
|
export declare type ShepherdUser = {
|
|
12119
12860
|
__typename?: 'ShepherdUser';
|
|
12120
|
-
|
|
12861
|
+
user?: Maybe<User>;
|
|
12121
12862
|
};
|
|
12122
12863
|
export declare type SoftwareBoard = {
|
|
12123
12864
|
__typename?: 'SoftwareBoard';
|
|
@@ -12338,9 +13079,9 @@ export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
|
12338
13079
|
reporter: SupportRequestUser;
|
|
12339
13080
|
participants: Array<SupportRequestUser>;
|
|
12340
13081
|
fields: Array<SupportRequestField>;
|
|
12341
|
-
comments
|
|
13082
|
+
comments?: Maybe<SupportRequestComments>;
|
|
12342
13083
|
statuses: SupportRequestStatuses;
|
|
12343
|
-
transitions
|
|
13084
|
+
transitions?: Maybe<SupportRequestTransitions>;
|
|
12344
13085
|
targetScreen: Scalars['String'];
|
|
12345
13086
|
lastComment: SupportRequestComments;
|
|
12346
13087
|
};
|
|
@@ -12368,6 +13109,7 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
12368
13109
|
__typename?: 'SupportRequestCatalogMutationApi';
|
|
12369
13110
|
addComment?: Maybe<SupportRequestComment>;
|
|
12370
13111
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
13112
|
+
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
12371
13113
|
createNamedContactOperationRequest?: Maybe<SupportRequest>;
|
|
12372
13114
|
};
|
|
12373
13115
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
@@ -12376,6 +13118,9 @@ export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
|
12376
13118
|
export declare type SupportRequestCatalogMutationApiStatusTransitionArgs = {
|
|
12377
13119
|
input?: Maybe<SupportRequestTransitionInput>;
|
|
12378
13120
|
};
|
|
13121
|
+
export declare type SupportRequestCatalogMutationApiRemoveRequestParticipantsArgs = {
|
|
13122
|
+
input?: Maybe<SupportRequestParticipantsInput>;
|
|
13123
|
+
};
|
|
12379
13124
|
export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
|
|
12380
13125
|
emails: Array<Scalars['String']>;
|
|
12381
13126
|
organizationId?: Maybe<Scalars['String']>;
|
|
@@ -12499,6 +13244,19 @@ export declare type SupportRequestPageMigrationRequestsArgs = {
|
|
|
12499
13244
|
offset?: Scalars['Int'];
|
|
12500
13245
|
size?: Scalars['Int'];
|
|
12501
13246
|
};
|
|
13247
|
+
export declare type SupportRequestParticipants = {
|
|
13248
|
+
__typename?: 'SupportRequestParticipants';
|
|
13249
|
+
offset: Scalars['Int'];
|
|
13250
|
+
limit: Scalars['Int'];
|
|
13251
|
+
size: Scalars['Int'];
|
|
13252
|
+
lastPage: Scalars['Boolean'];
|
|
13253
|
+
values: Array<SupportRequestUser>;
|
|
13254
|
+
};
|
|
13255
|
+
export declare type SupportRequestParticipantsInput = {
|
|
13256
|
+
requestKey: Scalars['String'];
|
|
13257
|
+
aaids?: Maybe<Array<Scalars['String']>>;
|
|
13258
|
+
gsacUsernames?: Maybe<Array<Scalars['String']>>;
|
|
13259
|
+
};
|
|
12502
13260
|
export declare enum SupportRequestQueryOwnership {
|
|
12503
13261
|
Reporter = "REPORTER",
|
|
12504
13262
|
Participant = "PARTICIPANT"
|
|
@@ -12529,6 +13287,8 @@ export declare type SupportRequestStatuses = {
|
|
|
12529
13287
|
export declare type SupportRequestTicket = {
|
|
12530
13288
|
__typename?: 'SupportRequestTicket';
|
|
12531
13289
|
issueKey?: Maybe<Scalars['String']>;
|
|
13290
|
+
statusName?: Maybe<Scalars['String']>;
|
|
13291
|
+
categoryKey?: Maybe<Scalars['String']>;
|
|
12532
13292
|
};
|
|
12533
13293
|
export declare type SupportRequestTransition = {
|
|
12534
13294
|
__typename?: 'SupportRequestTransition';
|
|
@@ -12574,11 +13334,15 @@ export declare enum SwimlaneStrategy {
|
|
|
12574
13334
|
Issueparent = "ISSUEPARENT",
|
|
12575
13335
|
Issuechildren = "ISSUECHILDREN"
|
|
12576
13336
|
}
|
|
12577
|
-
export declare type Team = {
|
|
13337
|
+
export declare type Team = Node & {
|
|
12578
13338
|
__typename?: 'Team';
|
|
12579
13339
|
id: Scalars['ID'];
|
|
13340
|
+
organizationId?: Maybe<Scalars['String']>;
|
|
13341
|
+
creator?: Maybe<User>;
|
|
13342
|
+
state?: Maybe<TeamState>;
|
|
12580
13343
|
displayName?: Maybe<Scalars['String']>;
|
|
12581
13344
|
description?: Maybe<Scalars['String']>;
|
|
13345
|
+
membershipSetting?: Maybe<MembershipSetting>;
|
|
12582
13346
|
smallHeaderImageUrl?: Maybe<Scalars['String']>;
|
|
12583
13347
|
largeHeaderImageUrl?: Maybe<Scalars['String']>;
|
|
12584
13348
|
smallAvatarImageUrl?: Maybe<Scalars['String']>;
|
|
@@ -12588,7 +13352,7 @@ export declare type Team = {
|
|
|
12588
13352
|
export declare type TeamMembersArgs = {
|
|
12589
13353
|
after?: Maybe<Scalars['String']>;
|
|
12590
13354
|
first?: Scalars['Int'];
|
|
12591
|
-
state?: MembershipState
|
|
13355
|
+
state?: Array<MembershipState>;
|
|
12592
13356
|
};
|
|
12593
13357
|
export declare type TeamMember = {
|
|
12594
13358
|
__typename?: 'TeamMember';
|
|
@@ -12614,6 +13378,11 @@ export declare type TeamQuery = {
|
|
|
12614
13378
|
export declare type TeamQueryTeamArgs = {
|
|
12615
13379
|
id: Scalars['ID'];
|
|
12616
13380
|
};
|
|
13381
|
+
export declare enum TeamState {
|
|
13382
|
+
Active = "ACTIVE",
|
|
13383
|
+
Disbanded = "DISBANDED",
|
|
13384
|
+
Purged = "PURGED"
|
|
13385
|
+
}
|
|
12617
13386
|
export declare type TenantContext = {
|
|
12618
13387
|
__typename?: 'TenantContext';
|
|
12619
13388
|
cloudId?: Maybe<Scalars['ID']>;
|
|
@@ -12783,26 +13552,20 @@ export declare enum TownsquareProjectStateValue {
|
|
|
12783
13552
|
}
|
|
12784
13553
|
export declare type TownsquareQueryApi = {
|
|
12785
13554
|
__typename?: 'TownsquareQueryApi';
|
|
12786
|
-
projectsByAri?: Maybe<
|
|
12787
|
-
goalsByAri?: Maybe<
|
|
12788
|
-
commentsByAri?: Maybe<
|
|
13555
|
+
projectsByAri?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
13556
|
+
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
13557
|
+
commentsByAri?: Maybe<Array<Maybe<TownsquareComment>>>;
|
|
12789
13558
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
12790
13559
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
12791
13560
|
};
|
|
12792
13561
|
export declare type TownsquareQueryApiProjectsByAriArgs = {
|
|
12793
13562
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
12794
|
-
after?: Maybe<Scalars['String']>;
|
|
12795
|
-
first?: Maybe<Scalars['Int']>;
|
|
12796
13563
|
};
|
|
12797
13564
|
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
12798
13565
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
12799
|
-
after?: Maybe<Scalars['String']>;
|
|
12800
|
-
first?: Maybe<Scalars['Int']>;
|
|
12801
13566
|
};
|
|
12802
13567
|
export declare type TownsquareQueryApiCommentsByAriArgs = {
|
|
12803
13568
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
12804
|
-
after?: Maybe<Scalars['String']>;
|
|
12805
|
-
first?: Maybe<Scalars['Int']>;
|
|
12806
13569
|
};
|
|
12807
13570
|
export declare type TownsquareQueryApiProjectSearchArgs = {
|
|
12808
13571
|
after?: Maybe<Scalars['String']>;
|
|
@@ -13291,6 +14054,11 @@ export declare type UpdatePolarisViewSetPayload = Payload & {
|
|
|
13291
14054
|
errors?: Maybe<Array<MutationError>>;
|
|
13292
14055
|
node?: Maybe<PolarisViewSet>;
|
|
13293
14056
|
};
|
|
14057
|
+
export declare type UpdatePolarisViewTimestampPayload = Payload & {
|
|
14058
|
+
__typename?: 'UpdatePolarisViewTimestampPayload';
|
|
14059
|
+
success: Scalars['Boolean'];
|
|
14060
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14061
|
+
};
|
|
13294
14062
|
export declare type User = {
|
|
13295
14063
|
accountId: Scalars['ID'];
|
|
13296
14064
|
accountStatus: AccountStatus;
|