@forge/cli-shared 2.1.6-next.9 → 2.2.0-next.16
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 +60 -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 +293 -38
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +63 -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';
|
|
@@ -2213,7 +2214,6 @@ export declare type CompassScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
|
2213
2214
|
};
|
|
2214
2215
|
export declare type CompassScorecardCriteriaScore = {
|
|
2215
2216
|
__typename?: 'CompassScorecardCriteriaScore';
|
|
2216
|
-
scorecardCriteria: CompassScorecardCriteria;
|
|
2217
2217
|
score: Scalars['Int'];
|
|
2218
2218
|
maxScore: Scalars['Int'];
|
|
2219
2219
|
};
|
|
@@ -2235,7 +2235,6 @@ export declare type CompassScorecardScore = {
|
|
|
2235
2235
|
__typename?: 'CompassScorecardScore';
|
|
2236
2236
|
totalScore: Scalars['Int'];
|
|
2237
2237
|
maxTotalScore: Scalars['Int'];
|
|
2238
|
-
scorecard: CompassScorecard;
|
|
2239
2238
|
criteriaScores?: Maybe<Array<CompassScorecardCriteriaScore>>;
|
|
2240
2239
|
};
|
|
2241
2240
|
export declare type CompassScorecardScoreQuery = {
|
|
@@ -2448,6 +2447,7 @@ export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
|
2448
2447
|
};
|
|
2449
2448
|
export declare type ConfluenceAbstractPage = {
|
|
2450
2449
|
id?: Maybe<Scalars['ID']>;
|
|
2450
|
+
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2451
2451
|
space?: Maybe<ConfluenceSpace>;
|
|
2452
2452
|
status?: Maybe<ConfluenceContentStatus>;
|
|
2453
2453
|
title?: Maybe<Scalars['String']>;
|
|
@@ -2458,6 +2458,7 @@ export declare type ConfluenceBlogPost = ConfluenceAbstractPage & {
|
|
|
2458
2458
|
blogPostId: Scalars['ID'];
|
|
2459
2459
|
id?: Maybe<Scalars['ID']>;
|
|
2460
2460
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
2461
|
+
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2461
2462
|
space?: Maybe<ConfluenceSpace>;
|
|
2462
2463
|
status?: Maybe<ConfluenceContentStatus>;
|
|
2463
2464
|
title?: Maybe<Scalars['String']>;
|
|
@@ -2492,8 +2493,12 @@ export declare type ConfluenceContentBody = {
|
|
|
2492
2493
|
styledView?: Maybe<Scalars['String']>;
|
|
2493
2494
|
view?: Maybe<Scalars['String']>;
|
|
2494
2495
|
};
|
|
2496
|
+
export declare type ConfluenceContentMetadata = {
|
|
2497
|
+
__typename?: 'ConfluenceContentMetadata';
|
|
2498
|
+
titleEmojiDraft?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2499
|
+
titleEmojiPublished?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2500
|
+
};
|
|
2495
2501
|
export declare enum ConfluenceContentStatus {
|
|
2496
|
-
Any = "ANY",
|
|
2497
2502
|
Archived = "ARCHIVED",
|
|
2498
2503
|
Current = "CURRENT",
|
|
2499
2504
|
Deleted = "DELETED",
|
|
@@ -2501,6 +2506,12 @@ export declare enum ConfluenceContentStatus {
|
|
|
2501
2506
|
Historical = "HISTORICAL",
|
|
2502
2507
|
Trashed = "TRASHED"
|
|
2503
2508
|
}
|
|
2509
|
+
export declare type ConfluenceContentTitleEmoji = {
|
|
2510
|
+
__typename?: 'ConfluenceContentTitleEmoji';
|
|
2511
|
+
id?: Maybe<Scalars['String']>;
|
|
2512
|
+
key?: Maybe<Scalars['String']>;
|
|
2513
|
+
value?: Maybe<Scalars['String']>;
|
|
2514
|
+
};
|
|
2504
2515
|
export declare enum ConfluenceContentType {
|
|
2505
2516
|
Attachment = "ATTACHMENT",
|
|
2506
2517
|
BlogPost = "BLOG_POST",
|
|
@@ -2538,21 +2549,59 @@ export declare enum ConfluenceInlineTaskStatus {
|
|
|
2538
2549
|
Complete = "COMPLETE",
|
|
2539
2550
|
Incomplete = "INCOMPLETE"
|
|
2540
2551
|
}
|
|
2552
|
+
export declare type ConfluenceLabel = {
|
|
2553
|
+
__typename?: 'ConfluenceLabel';
|
|
2554
|
+
id?: Maybe<Scalars['ID']>;
|
|
2555
|
+
label?: Maybe<Scalars['String']>;
|
|
2556
|
+
prefix?: Maybe<Scalars['String']>;
|
|
2557
|
+
};
|
|
2541
2558
|
export declare type ConfluenceMutationApi = {
|
|
2542
2559
|
__typename?: 'ConfluenceMutationApi';
|
|
2543
|
-
|
|
2544
|
-
|
|
2560
|
+
confluenceCreateSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
2561
|
+
confluenceUpdateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
2545
2562
|
};
|
|
2546
|
-
export declare type
|
|
2563
|
+
export declare type ConfluenceMutationApiConfluenceCreateSpaceArgs = {
|
|
2547
2564
|
input: ConfluenceCreateSpaceInput;
|
|
2548
2565
|
};
|
|
2549
|
-
export declare type
|
|
2566
|
+
export declare type ConfluenceMutationApiConfluenceUpdateSpaceArgs = {
|
|
2550
2567
|
input: ConfluenceUpdateSpaceInput;
|
|
2551
2568
|
};
|
|
2569
|
+
export declare type ConfluenceOperationCheck = {
|
|
2570
|
+
__typename?: 'ConfluenceOperationCheck';
|
|
2571
|
+
operation?: Maybe<ConfluenceOperationName>;
|
|
2572
|
+
target?: Maybe<ConfluenceOperationTarget>;
|
|
2573
|
+
};
|
|
2574
|
+
export declare enum ConfluenceOperationName {
|
|
2575
|
+
Administer = "ADMINISTER",
|
|
2576
|
+
Archive = "ARCHIVE",
|
|
2577
|
+
Copy = "COPY",
|
|
2578
|
+
Create = "CREATE",
|
|
2579
|
+
CreateSpace = "CREATE_SPACE",
|
|
2580
|
+
Delete = "DELETE",
|
|
2581
|
+
Export = "EXPORT",
|
|
2582
|
+
Move = "MOVE",
|
|
2583
|
+
Purge = "PURGE",
|
|
2584
|
+
PurgeVersion = "PURGE_VERSION",
|
|
2585
|
+
Read = "READ",
|
|
2586
|
+
Restore = "RESTORE",
|
|
2587
|
+
RestrictContent = "RESTRICT_CONTENT",
|
|
2588
|
+
Update = "UPDATE",
|
|
2589
|
+
Use = "USE"
|
|
2590
|
+
}
|
|
2591
|
+
export declare enum ConfluenceOperationTarget {
|
|
2592
|
+
Application = "APPLICATION",
|
|
2593
|
+
Attachment = "ATTACHMENT",
|
|
2594
|
+
BlogPost = "BLOG_POST",
|
|
2595
|
+
Comment = "COMMENT",
|
|
2596
|
+
Page = "PAGE",
|
|
2597
|
+
Space = "SPACE",
|
|
2598
|
+
UserProfile = "USER_PROFILE"
|
|
2599
|
+
}
|
|
2552
2600
|
export declare type ConfluencePage = ConfluenceAbstractPage & {
|
|
2553
2601
|
__typename?: 'ConfluencePage';
|
|
2554
2602
|
id?: Maybe<Scalars['ID']>;
|
|
2555
2603
|
links?: Maybe<ConfluencePageLinks>;
|
|
2604
|
+
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2556
2605
|
pageId: Scalars['ID'];
|
|
2557
2606
|
space?: Maybe<ConfluenceSpace>;
|
|
2558
2607
|
status?: Maybe<ConfluenceContentStatus>;
|
|
@@ -2607,15 +2656,30 @@ export declare type ConfluenceQueryApiConfluenceSpacesArgs = {
|
|
|
2607
2656
|
};
|
|
2608
2657
|
export declare type ConfluenceSpace = {
|
|
2609
2658
|
__typename?: 'ConfluenceSpace';
|
|
2659
|
+
description?: Maybe<ConfluenceSpaceDescription>;
|
|
2660
|
+
history?: Maybe<ConfluenceSpaceHistory>;
|
|
2661
|
+
homepage?: Maybe<ConfluenceAbstractPage>;
|
|
2610
2662
|
icon?: Maybe<ConfluenceSpaceIcon>;
|
|
2611
2663
|
id?: Maybe<Scalars['ID']>;
|
|
2612
2664
|
key?: Maybe<Scalars['String']>;
|
|
2613
2665
|
links?: Maybe<ConfluenceSpaceLinks>;
|
|
2666
|
+
metadata?: Maybe<ConfluenceSpaceMetadata>;
|
|
2614
2667
|
name?: Maybe<Scalars['String']>;
|
|
2668
|
+
operations?: Maybe<Array<Maybe<ConfluenceOperationCheck>>>;
|
|
2615
2669
|
spaceId?: Maybe<Scalars['ID']>;
|
|
2616
2670
|
status?: Maybe<ConfluenceSpaceStatus>;
|
|
2617
2671
|
type?: Maybe<ConfluenceSpaceType>;
|
|
2618
2672
|
};
|
|
2673
|
+
export declare type ConfluenceSpaceDescription = {
|
|
2674
|
+
__typename?: 'ConfluenceSpaceDescription';
|
|
2675
|
+
plain?: Maybe<Scalars['String']>;
|
|
2676
|
+
view?: Maybe<Scalars['String']>;
|
|
2677
|
+
};
|
|
2678
|
+
export declare type ConfluenceSpaceHistory = {
|
|
2679
|
+
__typename?: 'ConfluenceSpaceHistory';
|
|
2680
|
+
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
2681
|
+
createdDate?: Maybe<Scalars['String']>;
|
|
2682
|
+
};
|
|
2619
2683
|
export declare type ConfluenceSpaceIcon = {
|
|
2620
2684
|
__typename?: 'ConfluenceSpaceIcon';
|
|
2621
2685
|
height?: Maybe<Scalars['Int']>;
|
|
@@ -2628,6 +2692,15 @@ export declare type ConfluenceSpaceLinks = {
|
|
|
2628
2692
|
base?: Maybe<Scalars['String']>;
|
|
2629
2693
|
webUi?: Maybe<Scalars['String']>;
|
|
2630
2694
|
};
|
|
2695
|
+
export declare type ConfluenceSpaceMetadata = {
|
|
2696
|
+
__typename?: 'ConfluenceSpaceMetadata';
|
|
2697
|
+
labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
2698
|
+
recentCommenters?: Maybe<Array<Maybe<ConfluenceUserInfo>>>;
|
|
2699
|
+
recentWatchers?: Maybe<Array<Maybe<ConfluenceUserInfo>>>;
|
|
2700
|
+
totalCommenters?: Maybe<Scalars['Int']>;
|
|
2701
|
+
totalCurrentPages?: Maybe<Scalars['Int']>;
|
|
2702
|
+
totalWatchers?: Maybe<Scalars['Int']>;
|
|
2703
|
+
};
|
|
2631
2704
|
export declare enum ConfluenceSpaceStatus {
|
|
2632
2705
|
Archived = "ARCHIVED",
|
|
2633
2706
|
Current = "CURRENT"
|
|
@@ -3467,6 +3540,7 @@ export declare type CustomFiltersValidationError = {
|
|
|
3467
3540
|
__typename?: 'CustomFiltersValidationError';
|
|
3468
3541
|
fieldName: Scalars['String'];
|
|
3469
3542
|
errorMessage: Scalars['String'];
|
|
3543
|
+
errorKey: Scalars['String'];
|
|
3470
3544
|
};
|
|
3471
3545
|
export declare type CustomUiTunnelDefinition = {
|
|
3472
3546
|
__typename?: 'CustomUITunnelDefinition';
|
|
@@ -4316,6 +4390,13 @@ export declare type DevOpsToolConnection = {
|
|
|
4316
4390
|
nodes?: Maybe<Array<Maybe<DevOpsTool>>>;
|
|
4317
4391
|
pageInfo: PageInfo;
|
|
4318
4392
|
};
|
|
4393
|
+
export declare enum DevOpsToolConnectionState {
|
|
4394
|
+
Initial = "INITIAL",
|
|
4395
|
+
Unconnected = "UNCONNECTED",
|
|
4396
|
+
Incomplete = "INCOMPLETE",
|
|
4397
|
+
Connected = "CONNECTED",
|
|
4398
|
+
Seen = "SEEN"
|
|
4399
|
+
}
|
|
4319
4400
|
export declare type DevOpsToolContainer = Node & {
|
|
4320
4401
|
__typename?: 'DevOpsToolContainer';
|
|
4321
4402
|
id: Scalars['ID'];
|
|
@@ -4371,6 +4452,12 @@ export declare type DevOpsToolNamespaceEdge = {
|
|
|
4371
4452
|
cursor: Scalars['String'];
|
|
4372
4453
|
node?: Maybe<DevOpsToolNamespace>;
|
|
4373
4454
|
};
|
|
4455
|
+
export declare type DevOpsToolNavbarConnectionState = {
|
|
4456
|
+
__typename?: 'DevOpsToolNavbarConnectionState';
|
|
4457
|
+
codeTab: DevOpsToolConnectionState;
|
|
4458
|
+
oncallTab: DevOpsToolConnectionState;
|
|
4459
|
+
pagesTab: DevOpsToolConnectionState;
|
|
4460
|
+
};
|
|
4374
4461
|
export declare type DevOpsToolSupportedContainerType = {
|
|
4375
4462
|
__typename?: 'DevOpsToolSupportedContainerType';
|
|
4376
4463
|
category: DevOpsToolCategory;
|
|
@@ -4390,6 +4477,7 @@ export declare type DevOpsTools = {
|
|
|
4390
4477
|
tool?: Maybe<DevOpsTool>;
|
|
4391
4478
|
namespace?: Maybe<DevOpsToolNamespace>;
|
|
4392
4479
|
container?: Maybe<DevOpsToolContainer>;
|
|
4480
|
+
navbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
4393
4481
|
};
|
|
4394
4482
|
export declare type DevOpsToolsToolsArgs = {
|
|
4395
4483
|
cloudId: Scalars['ID'];
|
|
@@ -4405,6 +4493,10 @@ export declare type DevOpsToolsNamespaceArgs = {
|
|
|
4405
4493
|
export declare type DevOpsToolsContainerArgs = {
|
|
4406
4494
|
id: Scalars['ID'];
|
|
4407
4495
|
};
|
|
4496
|
+
export declare type DevOpsToolsNavbarConnectionStateArgs = {
|
|
4497
|
+
cloudId: Scalars['ID'];
|
|
4498
|
+
projectId: Scalars['ID'];
|
|
4499
|
+
};
|
|
4408
4500
|
export declare type DevStatus = {
|
|
4409
4501
|
__typename?: 'DevStatus';
|
|
4410
4502
|
activity: DevStatusActivity;
|
|
@@ -4630,23 +4722,6 @@ export declare type ForgeMetricsLabelGroup = {
|
|
|
4630
4722
|
key: Scalars['String'];
|
|
4631
4723
|
value: Scalars['String'];
|
|
4632
4724
|
};
|
|
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
4725
|
export declare type ForgeMetricsQuery = {
|
|
4651
4726
|
__typename?: 'ForgeMetricsQuery';
|
|
4652
4727
|
appId: Scalars['ID'];
|
|
@@ -4654,7 +4729,6 @@ export declare type ForgeMetricsQuery = {
|
|
|
4654
4729
|
successRateValue: ForgeMetricsSuccessRateValueResult;
|
|
4655
4730
|
invocations: ForgeMetricsInvocationsResult;
|
|
4656
4731
|
errors: ForgeMetricsErrorsResult;
|
|
4657
|
-
latency: ForgeMetricsLatencyResult;
|
|
4658
4732
|
};
|
|
4659
4733
|
export declare type ForgeMetricsQuerySuccessRateArgs = {
|
|
4660
4734
|
query: ForgeMetricsQueryInput;
|
|
@@ -4668,9 +4742,6 @@ export declare type ForgeMetricsQueryInvocationsArgs = {
|
|
|
4668
4742
|
export declare type ForgeMetricsQueryErrorsArgs = {
|
|
4669
4743
|
query: ForgeMetricsQueryInput;
|
|
4670
4744
|
};
|
|
4671
|
-
export declare type ForgeMetricsQueryLatencyArgs = {
|
|
4672
|
-
query: ForgeMetricsQueryInput;
|
|
4673
|
-
};
|
|
4674
4745
|
export declare type ForgeMetricsQueryFilters = {
|
|
4675
4746
|
environment?: Maybe<Scalars['ID']>;
|
|
4676
4747
|
interval: ForgeMetricsIntervalInput;
|
|
@@ -7096,6 +7167,12 @@ export declare type JiraOAuthAppsAppInput = {
|
|
|
7096
7167
|
deploymentsModule?: Maybe<JiraOAuthAppsDeploymentsModuleInput>;
|
|
7097
7168
|
devInfoModule?: Maybe<JiraOAuthAppsDevInfoModuleInput>;
|
|
7098
7169
|
};
|
|
7170
|
+
export declare type JiraOAuthAppsAppUpdateInput = {
|
|
7171
|
+
buildsModule?: Maybe<JiraOAuthAppsBuildsModuleInput>;
|
|
7172
|
+
featureFlagsModule?: Maybe<JiraOAuthAppsFeatureFlagsModuleInput>;
|
|
7173
|
+
deploymentsModule?: Maybe<JiraOAuthAppsDeploymentsModuleInput>;
|
|
7174
|
+
devInfoModule?: Maybe<JiraOAuthAppsDevInfoModuleInput>;
|
|
7175
|
+
};
|
|
7099
7176
|
export declare type JiraOAuthAppsApps = {
|
|
7100
7177
|
__typename?: 'JiraOAuthAppsApps';
|
|
7101
7178
|
apps?: Maybe<Array<Maybe<JiraOAuthAppsApp>>>;
|
|
@@ -7173,12 +7250,17 @@ export declare type JiraOAuthAppsFeatureFlagsModuleInput = {
|
|
|
7173
7250
|
export declare type JiraOAuthAppsMutation = {
|
|
7174
7251
|
__typename?: 'JiraOAuthAppsMutation';
|
|
7175
7252
|
createJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
7253
|
+
updateJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
7176
7254
|
deleteJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
7177
7255
|
};
|
|
7178
7256
|
export declare type JiraOAuthAppsMutationCreateJiraOAuthAppArgs = {
|
|
7179
7257
|
cloudId: Scalars['String'];
|
|
7180
7258
|
input: JiraOAuthAppsCreateAppInput;
|
|
7181
7259
|
};
|
|
7260
|
+
export declare type JiraOAuthAppsMutationUpdateJiraOAuthAppArgs = {
|
|
7261
|
+
cloudId: Scalars['String'];
|
|
7262
|
+
input: JiraOAuthAppsUpdateAppInput;
|
|
7263
|
+
};
|
|
7182
7264
|
export declare type JiraOAuthAppsMutationDeleteJiraOAuthAppArgs = {
|
|
7183
7265
|
cloudId: Scalars['String'];
|
|
7184
7266
|
input: JiraOAuthAppsDeleteAppInput;
|
|
@@ -7191,8 +7273,8 @@ export declare type JiraOAuthAppsPayload = Payload & {
|
|
|
7191
7273
|
errors?: Maybe<Array<MutationError>>;
|
|
7192
7274
|
};
|
|
7193
7275
|
export declare type JiraOAuthAppsUpdateAppInput = {
|
|
7194
|
-
|
|
7195
|
-
app:
|
|
7276
|
+
clientId: Scalars['ID'];
|
|
7277
|
+
app: JiraOAuthAppsAppUpdateInput;
|
|
7196
7278
|
clientMutationId?: Maybe<Scalars['ID']>;
|
|
7197
7279
|
};
|
|
7198
7280
|
export declare type JiraOAuthAppsUrlTemplate = {
|
|
@@ -7472,6 +7554,7 @@ export declare type JiraProject = Node & {
|
|
|
7472
7554
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
7473
7555
|
servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
|
|
7474
7556
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
7557
|
+
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
7475
7558
|
};
|
|
7476
7559
|
export declare type JiraProjectRepositoryRelationshipsArgs = {
|
|
7477
7560
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7497,6 +7580,34 @@ export declare type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
|
|
|
7497
7580
|
first?: Maybe<Scalars['Int']>;
|
|
7498
7581
|
after?: Maybe<Scalars['String']>;
|
|
7499
7582
|
};
|
|
7583
|
+
export declare type JiraProjectConfluenceSpaceRelationshipsArgs = {
|
|
7584
|
+
first?: Maybe<Scalars['Int']>;
|
|
7585
|
+
after?: Maybe<Scalars['String']>;
|
|
7586
|
+
};
|
|
7587
|
+
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput = {
|
|
7588
|
+
id: Scalars['ID'];
|
|
7589
|
+
};
|
|
7590
|
+
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload = {
|
|
7591
|
+
__typename?: 'JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload';
|
|
7592
|
+
success: Scalars['Boolean'];
|
|
7593
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7594
|
+
};
|
|
7595
|
+
export declare type JiraProjectAndConfluenceSpaceRelationship = {
|
|
7596
|
+
__typename?: 'JiraProjectAndConfluenceSpaceRelationship';
|
|
7597
|
+
jiraProject?: Maybe<JiraProject>;
|
|
7598
|
+
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
7599
|
+
};
|
|
7600
|
+
export declare type JiraProjectAndConfluenceSpaceRelationshipConnection = {
|
|
7601
|
+
__typename?: 'JiraProjectAndConfluenceSpaceRelationshipConnection';
|
|
7602
|
+
edges?: Maybe<Array<Maybe<JiraProjectAndConfluenceSpaceRelationshipEdge>>>;
|
|
7603
|
+
nodes?: Maybe<Array<Maybe<JiraProjectAndConfluenceSpaceRelationship>>>;
|
|
7604
|
+
pageInfo: PageInfo;
|
|
7605
|
+
};
|
|
7606
|
+
export declare type JiraProjectAndConfluenceSpaceRelationshipEdge = {
|
|
7607
|
+
__typename?: 'JiraProjectAndConfluenceSpaceRelationshipEdge';
|
|
7608
|
+
cursor: Scalars['String'];
|
|
7609
|
+
node?: Maybe<JiraProjectAndConfluenceSpaceRelationship>;
|
|
7610
|
+
};
|
|
7500
7611
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
7501
7612
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
7502
7613
|
id: Scalars['ID'];
|
|
@@ -8973,6 +9084,13 @@ export declare type JswMutation = {
|
|
|
8973
9084
|
export declare type JswMutationDeleteCardArgs = {
|
|
8974
9085
|
input?: Maybe<DeleteCardInput>;
|
|
8975
9086
|
};
|
|
9087
|
+
export declare type JswQuery = {
|
|
9088
|
+
__typename?: 'JswQuery';
|
|
9089
|
+
boardScope?: Maybe<BoardScope>;
|
|
9090
|
+
};
|
|
9091
|
+
export declare type JswQueryBoardScopeArgs = {
|
|
9092
|
+
boardId: Scalars['ID'];
|
|
9093
|
+
};
|
|
8976
9094
|
export declare type LabelUsage = {
|
|
8977
9095
|
__typename?: 'LabelUsage';
|
|
8978
9096
|
label: Scalars['String'];
|
|
@@ -8998,6 +9116,7 @@ export declare type MarketplaceApp = {
|
|
|
8998
9116
|
appId: Scalars['ID'];
|
|
8999
9117
|
appKey: Scalars['String'];
|
|
9000
9118
|
name: Scalars['String'];
|
|
9119
|
+
partnerId: Scalars['ID'];
|
|
9001
9120
|
partner?: Maybe<MarketplacePartner>;
|
|
9002
9121
|
entityStatus: MarketplaceEntityStatus;
|
|
9003
9122
|
createdAt: Scalars['DateTime'];
|
|
@@ -9021,6 +9140,7 @@ export declare type MarketplaceApp = {
|
|
|
9021
9140
|
programs?: Maybe<MarketplaceAppPrograms>;
|
|
9022
9141
|
marketingLabels: Array<Scalars['String']>;
|
|
9023
9142
|
googleAnalyticsId?: Maybe<Scalars['String']>;
|
|
9143
|
+
segmentWriteKey?: Maybe<Scalars['String']>;
|
|
9024
9144
|
categories: Array<MarketplaceAppCategory>;
|
|
9025
9145
|
jsdWidgetKey?: Maybe<Scalars['String']>;
|
|
9026
9146
|
};
|
|
@@ -9062,6 +9182,7 @@ export declare enum MarketplaceAppPermission {
|
|
|
9062
9182
|
export declare type MarketplaceAppPrograms = {
|
|
9063
9183
|
__typename?: 'MarketplaceAppPrograms';
|
|
9064
9184
|
cloudFortified?: Maybe<MarketplaceCloudFortified>;
|
|
9185
|
+
bugBountyParticipant?: Maybe<MarketplaceBugBountyParticipant>;
|
|
9065
9186
|
};
|
|
9066
9187
|
export declare type MarketplaceAppReviewSummary = {
|
|
9067
9188
|
__typename?: 'MarketplaceAppReviewSummary';
|
|
@@ -9130,6 +9251,16 @@ export declare enum MarketplaceBillingCycle {
|
|
|
9130
9251
|
Annual = "ANNUAL",
|
|
9131
9252
|
Monthly = "MONTHLY"
|
|
9132
9253
|
}
|
|
9254
|
+
export declare type MarketplaceBugBountyParticipant = {
|
|
9255
|
+
__typename?: 'MarketplaceBugBountyParticipant';
|
|
9256
|
+
cloud?: Maybe<MarketplaceBugBountyProgramHostingStatus>;
|
|
9257
|
+
server?: Maybe<MarketplaceBugBountyProgramHostingStatus>;
|
|
9258
|
+
dataCenter?: Maybe<MarketplaceBugBountyProgramHostingStatus>;
|
|
9259
|
+
};
|
|
9260
|
+
export declare type MarketplaceBugBountyProgramHostingStatus = {
|
|
9261
|
+
__typename?: 'MarketplaceBugBountyProgramHostingStatus';
|
|
9262
|
+
status?: Maybe<MarketplaceProgramStatus>;
|
|
9263
|
+
};
|
|
9133
9264
|
export declare type MarketplaceCloudAppDeployment = MarketplaceAppDeployment & {
|
|
9134
9265
|
__typename?: 'MarketplaceCloudAppDeployment';
|
|
9135
9266
|
compatibleProducts: Array<CompatibleAtlassianProduct>;
|
|
@@ -9141,6 +9272,7 @@ export declare type MarketplaceCloudAppDeployment = MarketplaceAppDeployment & {
|
|
|
9141
9272
|
export declare type MarketplaceCloudFortified = {
|
|
9142
9273
|
__typename?: 'MarketplaceCloudFortified';
|
|
9143
9274
|
status?: Maybe<MarketplaceCloudFortifiedStatus>;
|
|
9275
|
+
programStatus?: Maybe<MarketplaceProgramStatus>;
|
|
9144
9276
|
};
|
|
9145
9277
|
export declare enum MarketplaceCloudFortifiedStatus {
|
|
9146
9278
|
Approved = "APPROVED",
|
|
@@ -9311,6 +9443,11 @@ export declare enum MarketplacePricingTierType {
|
|
|
9311
9443
|
UserTiered = "USER_TIERED",
|
|
9312
9444
|
RemoteAgentTiered = "REMOTE_AGENT_TIERED"
|
|
9313
9445
|
}
|
|
9446
|
+
export declare enum MarketplaceProgramStatus {
|
|
9447
|
+
Approved = "APPROVED",
|
|
9448
|
+
Rejected = "REJECTED",
|
|
9449
|
+
NotAParticipant = "NOT_A_PARTICIPANT"
|
|
9450
|
+
}
|
|
9314
9451
|
export declare type MarketplaceSupportedAtlassianProduct = {
|
|
9315
9452
|
__typename?: 'MarketplaceSupportedAtlassianProduct';
|
|
9316
9453
|
id: Scalars['ID'];
|
|
@@ -9340,6 +9477,11 @@ export declare enum MembershipRole {
|
|
|
9340
9477
|
Regular = "REGULAR",
|
|
9341
9478
|
Admin = "ADMIN"
|
|
9342
9479
|
}
|
|
9480
|
+
export declare enum MembershipSetting {
|
|
9481
|
+
Open = "OPEN",
|
|
9482
|
+
MemberInvite = "MEMBER_INVITE",
|
|
9483
|
+
AdminInvite = "ADMIN_INVITE"
|
|
9484
|
+
}
|
|
9343
9485
|
export declare enum MembershipState {
|
|
9344
9486
|
FullMember = "FULL_MEMBER",
|
|
9345
9487
|
Invited = "INVITED",
|
|
@@ -9512,6 +9654,7 @@ export declare type Mutation = {
|
|
|
9512
9654
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
9513
9655
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
9514
9656
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
9657
|
+
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
9515
9658
|
};
|
|
9516
9659
|
export declare type MutationCreateReleaseNoteArgs = {
|
|
9517
9660
|
changeStatus?: Maybe<Scalars['String']>;
|
|
@@ -9909,6 +10052,9 @@ export declare type MutationDeleteAppEnvironmentVariableArgs = {
|
|
|
9909
10052
|
export declare type MutationCreateAppDeploymentArgs = {
|
|
9910
10053
|
input: CreateAppDeploymentInput;
|
|
9911
10054
|
};
|
|
10055
|
+
export declare type MutationDeleteConfluenceSpaceRelationshipsForJiraProjectArgs = {
|
|
10056
|
+
input: JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput;
|
|
10057
|
+
};
|
|
9912
10058
|
export declare type MutationError = {
|
|
9913
10059
|
__typename?: 'MutationError';
|
|
9914
10060
|
message?: Maybe<Scalars['String']>;
|
|
@@ -10120,7 +10266,7 @@ export declare type Payload = {
|
|
|
10120
10266
|
export declare type PermissionToConsentByOauthId = {
|
|
10121
10267
|
__typename?: 'PermissionToConsentByOauthId';
|
|
10122
10268
|
isAllowed: Scalars['Boolean'];
|
|
10123
|
-
|
|
10269
|
+
isSiteAdmin: Scalars['Boolean'];
|
|
10124
10270
|
};
|
|
10125
10271
|
export declare type PolarisAnonymousVisitorHash = PolarisAnonymousVisitorViewHash;
|
|
10126
10272
|
export declare type PolarisAnonymousVisitorViewHash = {
|
|
@@ -11069,6 +11215,7 @@ export declare type Query = {
|
|
|
11069
11215
|
apps?: Maybe<AppConnection>;
|
|
11070
11216
|
app?: Maybe<App>;
|
|
11071
11217
|
appHostServices?: Maybe<Array<AppHostService>>;
|
|
11218
|
+
jsw?: Maybe<JswQuery>;
|
|
11072
11219
|
boardScope?: Maybe<BoardScope>;
|
|
11073
11220
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
11074
11221
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
@@ -11452,6 +11599,8 @@ export declare type RankColumnOutput = MutationResponse & {
|
|
|
11452
11599
|
export declare enum RateLimitingCurrency {
|
|
11453
11600
|
TestingService = "TESTING_SERVICE",
|
|
11454
11601
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
11602
|
+
TeamsCurrency = "TEAMS_CURRENCY",
|
|
11603
|
+
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
11455
11604
|
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY"
|
|
11456
11605
|
}
|
|
11457
11606
|
export declare type RawStatus = {
|
|
@@ -11542,6 +11691,11 @@ export declare type RoadmapBoardConfiguration = {
|
|
|
11542
11691
|
isBoardJqlFilteringOutEpics?: Maybe<Scalars['Boolean']>;
|
|
11543
11692
|
isSprintsFeatureEnabled?: Maybe<Scalars['Boolean']>;
|
|
11544
11693
|
};
|
|
11694
|
+
export declare type RoadmapComponent = {
|
|
11695
|
+
__typename?: 'RoadmapComponent';
|
|
11696
|
+
id: Scalars['ID'];
|
|
11697
|
+
name: Scalars['String'];
|
|
11698
|
+
};
|
|
11545
11699
|
export declare type RoadmapConfiguration = {
|
|
11546
11700
|
__typename?: 'RoadmapConfiguration';
|
|
11547
11701
|
isCrossProject: Scalars['Boolean'];
|
|
@@ -11608,6 +11762,7 @@ export declare type RoadmapItem = {
|
|
|
11608
11762
|
labels?: Maybe<Array<Scalars['String']>>;
|
|
11609
11763
|
versionIds?: Maybe<Array<Scalars['ID']>>;
|
|
11610
11764
|
sprintIds?: Maybe<Array<Scalars['ID']>>;
|
|
11765
|
+
componentIds?: Maybe<Array<Scalars['ID']>>;
|
|
11611
11766
|
inferredDueDate?: Maybe<Scalars['Date']>;
|
|
11612
11767
|
inferredStartDate?: Maybe<Scalars['Date']>;
|
|
11613
11768
|
};
|
|
@@ -11704,6 +11859,7 @@ export declare type RoadmapProjectConfiguration = {
|
|
|
11704
11859
|
validation?: Maybe<RoadmapProjectValidation>;
|
|
11705
11860
|
defaultItemTypeId?: Maybe<Scalars['String']>;
|
|
11706
11861
|
versions?: Maybe<Array<RoadmapVersion>>;
|
|
11862
|
+
components?: Maybe<Array<RoadmapComponent>>;
|
|
11707
11863
|
};
|
|
11708
11864
|
export declare type RoadmapProjectPermissions = {
|
|
11709
11865
|
__typename?: 'RoadmapProjectPermissions';
|
|
@@ -12046,6 +12202,7 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
12046
12202
|
};
|
|
12047
12203
|
export declare type ShepherdAlert = {
|
|
12048
12204
|
__typename?: 'ShepherdAlert';
|
|
12205
|
+
actor?: Maybe<ShepherdUser>;
|
|
12049
12206
|
cloudId?: Maybe<Scalars['ID']>;
|
|
12050
12207
|
createdOn: Scalars['DateTime'];
|
|
12051
12208
|
id: Scalars['ID'];
|
|
@@ -12054,6 +12211,11 @@ export declare type ShepherdAlert = {
|
|
|
12054
12211
|
title: Scalars['String'];
|
|
12055
12212
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
12056
12213
|
};
|
|
12214
|
+
export declare type ShepherdAlertEdge = {
|
|
12215
|
+
__typename?: 'ShepherdAlertEdge';
|
|
12216
|
+
node?: Maybe<ShepherdAlert>;
|
|
12217
|
+
};
|
|
12218
|
+
export declare type ShepherdAlertResult = ShepherdAlert | ShepherdQueryError;
|
|
12057
12219
|
export declare enum ShepherdAlertSeverity {
|
|
12058
12220
|
Critical = "CRITICAL",
|
|
12059
12221
|
High = "HIGH",
|
|
@@ -12065,9 +12227,16 @@ export declare enum ShepherdAlertStatus {
|
|
|
12065
12227
|
Triaged = "TRIAGED",
|
|
12066
12228
|
Untriaged = "UNTRIAGED"
|
|
12067
12229
|
}
|
|
12230
|
+
export declare type ShepherdAlertsConnection = {
|
|
12231
|
+
__typename?: 'ShepherdAlertsConnection';
|
|
12232
|
+
edges?: Maybe<Array<Maybe<ShepherdAlertEdge>>>;
|
|
12233
|
+
};
|
|
12234
|
+
export declare type ShepherdAlertsResult = ShepherdAlertsConnection | ShepherdQueryError;
|
|
12068
12235
|
export declare type ShepherdAppInfo = {
|
|
12069
12236
|
__typename?: 'ShepherdAppInfo';
|
|
12070
12237
|
apiVersion: Scalars['Int'];
|
|
12238
|
+
env: Scalars['String'];
|
|
12239
|
+
loginUrl: Scalars['String'];
|
|
12071
12240
|
};
|
|
12072
12241
|
export declare type ShepherdCreateAlertInput = {
|
|
12073
12242
|
cloudId?: Maybe<Scalars['ID']>;
|
|
@@ -12081,23 +12250,59 @@ export declare type ShepherdCreateAlertPayload = Payload & {
|
|
|
12081
12250
|
node?: Maybe<ShepherdAlert>;
|
|
12082
12251
|
success: Scalars['Boolean'];
|
|
12083
12252
|
};
|
|
12253
|
+
export declare type ShepherdCreateOrganizationInput = {
|
|
12254
|
+
enabled?: Maybe<Scalars['Boolean']>;
|
|
12255
|
+
id: Scalars['ID'];
|
|
12256
|
+
};
|
|
12257
|
+
export declare type ShepherdCreateOrganizationPayload = Payload & {
|
|
12258
|
+
__typename?: 'ShepherdCreateOrganizationPayload';
|
|
12259
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12260
|
+
node?: Maybe<ShepherdOrganization>;
|
|
12261
|
+
success: Scalars['Boolean'];
|
|
12262
|
+
};
|
|
12263
|
+
export declare enum ShepherdErrorType {
|
|
12264
|
+
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
12265
|
+
Unauthorized = "UNAUTHORIZED"
|
|
12266
|
+
}
|
|
12267
|
+
export declare type ShepherdGenericQueryErrorExtension = ShepherdQueryErrorExtension & {
|
|
12268
|
+
__typename?: 'ShepherdGenericQueryErrorExtension';
|
|
12269
|
+
errorType?: Maybe<ShepherdErrorType>;
|
|
12270
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
12271
|
+
};
|
|
12084
12272
|
export declare type ShepherdMutation = {
|
|
12085
12273
|
__typename?: 'ShepherdMutation';
|
|
12086
12274
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
12275
|
+
createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
|
|
12087
12276
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
12277
|
+
updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
|
|
12088
12278
|
};
|
|
12089
12279
|
export declare type ShepherdMutationCreateAlertArgs = {
|
|
12090
12280
|
input: ShepherdCreateAlertInput;
|
|
12091
12281
|
};
|
|
12282
|
+
export declare type ShepherdMutationCreateOrganizationArgs = {
|
|
12283
|
+
input: ShepherdCreateOrganizationInput;
|
|
12284
|
+
};
|
|
12092
12285
|
export declare type ShepherdMutationUpdateAlertArgs = {
|
|
12093
12286
|
id: Scalars['ID'];
|
|
12094
12287
|
input: ShepherdUpdateAlertInput;
|
|
12095
12288
|
};
|
|
12289
|
+
export declare type ShepherdMutationUpdateOrganizationArgs = {
|
|
12290
|
+
id: Scalars['ID'];
|
|
12291
|
+
input: ShepherdUpdateOrganizationInput;
|
|
12292
|
+
};
|
|
12293
|
+
export declare type ShepherdOrganization = {
|
|
12294
|
+
__typename?: 'ShepherdOrganization';
|
|
12295
|
+
createdOn: Scalars['DateTime'];
|
|
12296
|
+
enabled: Scalars['Boolean'];
|
|
12297
|
+
id: Scalars['ID'];
|
|
12298
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
12299
|
+
};
|
|
12096
12300
|
export declare type ShepherdQuery = {
|
|
12097
12301
|
__typename?: 'ShepherdQuery';
|
|
12098
|
-
shepherdAlert?: Maybe<
|
|
12099
|
-
shepherdAlerts?: Maybe<
|
|
12302
|
+
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
12303
|
+
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
12100
12304
|
shepherdAppInfo: ShepherdAppInfo;
|
|
12305
|
+
shepherdOrganization?: Maybe<ShepherdOrganization>;
|
|
12101
12306
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
12102
12307
|
};
|
|
12103
12308
|
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
@@ -12106,6 +12311,19 @@ export declare type ShepherdQueryShepherdAlertArgs = {
|
|
|
12106
12311
|
export declare type ShepherdQueryShepherdAlertsArgs = {
|
|
12107
12312
|
orgId: Scalars['ID'];
|
|
12108
12313
|
};
|
|
12314
|
+
export declare type ShepherdQueryShepherdOrganizationArgs = {
|
|
12315
|
+
id: Scalars['ID'];
|
|
12316
|
+
};
|
|
12317
|
+
export declare type ShepherdQueryError = {
|
|
12318
|
+
__typename?: 'ShepherdQueryError';
|
|
12319
|
+
extensions?: Maybe<Array<ShepherdQueryErrorExtension>>;
|
|
12320
|
+
identifier?: Maybe<Scalars['ID']>;
|
|
12321
|
+
message?: Maybe<Scalars['String']>;
|
|
12322
|
+
};
|
|
12323
|
+
export declare type ShepherdQueryErrorExtension = {
|
|
12324
|
+
errorType?: Maybe<ShepherdErrorType>;
|
|
12325
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
12326
|
+
};
|
|
12109
12327
|
export declare type ShepherdUpdateAlertInput = {
|
|
12110
12328
|
status?: Maybe<ShepherdAlertStatus>;
|
|
12111
12329
|
};
|
|
@@ -12115,9 +12333,18 @@ export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
|
12115
12333
|
node?: Maybe<ShepherdAlert>;
|
|
12116
12334
|
success: Scalars['Boolean'];
|
|
12117
12335
|
};
|
|
12336
|
+
export declare type ShepherdUpdateOrganizationInput = {
|
|
12337
|
+
enabled?: Maybe<Scalars['Boolean']>;
|
|
12338
|
+
};
|
|
12339
|
+
export declare type ShepherdUpdateOrganizationPayload = Payload & {
|
|
12340
|
+
__typename?: 'ShepherdUpdateOrganizationPayload';
|
|
12341
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12342
|
+
node?: Maybe<ShepherdOrganization>;
|
|
12343
|
+
success: Scalars['Boolean'];
|
|
12344
|
+
};
|
|
12118
12345
|
export declare type ShepherdUser = {
|
|
12119
12346
|
__typename?: 'ShepherdUser';
|
|
12120
|
-
|
|
12347
|
+
user?: Maybe<User>;
|
|
12121
12348
|
};
|
|
12122
12349
|
export declare type SoftwareBoard = {
|
|
12123
12350
|
__typename?: 'SoftwareBoard';
|
|
@@ -12338,9 +12565,9 @@ export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
|
12338
12565
|
reporter: SupportRequestUser;
|
|
12339
12566
|
participants: Array<SupportRequestUser>;
|
|
12340
12567
|
fields: Array<SupportRequestField>;
|
|
12341
|
-
comments
|
|
12568
|
+
comments?: Maybe<SupportRequestComments>;
|
|
12342
12569
|
statuses: SupportRequestStatuses;
|
|
12343
|
-
transitions
|
|
12570
|
+
transitions?: Maybe<SupportRequestTransitions>;
|
|
12344
12571
|
targetScreen: Scalars['String'];
|
|
12345
12572
|
lastComment: SupportRequestComments;
|
|
12346
12573
|
};
|
|
@@ -12368,6 +12595,7 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
12368
12595
|
__typename?: 'SupportRequestCatalogMutationApi';
|
|
12369
12596
|
addComment?: Maybe<SupportRequestComment>;
|
|
12370
12597
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
12598
|
+
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
12371
12599
|
createNamedContactOperationRequest?: Maybe<SupportRequest>;
|
|
12372
12600
|
};
|
|
12373
12601
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
@@ -12376,6 +12604,9 @@ export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
|
12376
12604
|
export declare type SupportRequestCatalogMutationApiStatusTransitionArgs = {
|
|
12377
12605
|
input?: Maybe<SupportRequestTransitionInput>;
|
|
12378
12606
|
};
|
|
12607
|
+
export declare type SupportRequestCatalogMutationApiRemoveRequestParticipantsArgs = {
|
|
12608
|
+
input?: Maybe<SupportRequestParticipantsInput>;
|
|
12609
|
+
};
|
|
12379
12610
|
export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
|
|
12380
12611
|
emails: Array<Scalars['String']>;
|
|
12381
12612
|
organizationId?: Maybe<Scalars['String']>;
|
|
@@ -12499,6 +12730,19 @@ export declare type SupportRequestPageMigrationRequestsArgs = {
|
|
|
12499
12730
|
offset?: Scalars['Int'];
|
|
12500
12731
|
size?: Scalars['Int'];
|
|
12501
12732
|
};
|
|
12733
|
+
export declare type SupportRequestParticipants = {
|
|
12734
|
+
__typename?: 'SupportRequestParticipants';
|
|
12735
|
+
offset: Scalars['Int'];
|
|
12736
|
+
limit: Scalars['Int'];
|
|
12737
|
+
size: Scalars['Int'];
|
|
12738
|
+
lastPage: Scalars['Boolean'];
|
|
12739
|
+
values: Array<SupportRequestUser>;
|
|
12740
|
+
};
|
|
12741
|
+
export declare type SupportRequestParticipantsInput = {
|
|
12742
|
+
requestKey: Scalars['String'];
|
|
12743
|
+
aaids?: Maybe<Array<Scalars['String']>>;
|
|
12744
|
+
gsacUsernames?: Maybe<Array<Scalars['String']>>;
|
|
12745
|
+
};
|
|
12502
12746
|
export declare enum SupportRequestQueryOwnership {
|
|
12503
12747
|
Reporter = "REPORTER",
|
|
12504
12748
|
Participant = "PARTICIPANT"
|
|
@@ -12529,6 +12773,8 @@ export declare type SupportRequestStatuses = {
|
|
|
12529
12773
|
export declare type SupportRequestTicket = {
|
|
12530
12774
|
__typename?: 'SupportRequestTicket';
|
|
12531
12775
|
issueKey?: Maybe<Scalars['String']>;
|
|
12776
|
+
statusName?: Maybe<Scalars['String']>;
|
|
12777
|
+
categoryKey?: Maybe<Scalars['String']>;
|
|
12532
12778
|
};
|
|
12533
12779
|
export declare type SupportRequestTransition = {
|
|
12534
12780
|
__typename?: 'SupportRequestTransition';
|
|
@@ -12577,8 +12823,12 @@ export declare enum SwimlaneStrategy {
|
|
|
12577
12823
|
export declare type Team = {
|
|
12578
12824
|
__typename?: 'Team';
|
|
12579
12825
|
id: Scalars['ID'];
|
|
12826
|
+
organizationId?: Maybe<Scalars['String']>;
|
|
12827
|
+
creator?: Maybe<User>;
|
|
12828
|
+
state?: Maybe<TeamState>;
|
|
12580
12829
|
displayName?: Maybe<Scalars['String']>;
|
|
12581
12830
|
description?: Maybe<Scalars['String']>;
|
|
12831
|
+
membershipSetting?: Maybe<MembershipSetting>;
|
|
12582
12832
|
smallHeaderImageUrl?: Maybe<Scalars['String']>;
|
|
12583
12833
|
largeHeaderImageUrl?: Maybe<Scalars['String']>;
|
|
12584
12834
|
smallAvatarImageUrl?: Maybe<Scalars['String']>;
|
|
@@ -12588,7 +12838,7 @@ export declare type Team = {
|
|
|
12588
12838
|
export declare type TeamMembersArgs = {
|
|
12589
12839
|
after?: Maybe<Scalars['String']>;
|
|
12590
12840
|
first?: Scalars['Int'];
|
|
12591
|
-
state?: MembershipState
|
|
12841
|
+
state?: Array<MembershipState>;
|
|
12592
12842
|
};
|
|
12593
12843
|
export declare type TeamMember = {
|
|
12594
12844
|
__typename?: 'TeamMember';
|
|
@@ -12614,6 +12864,11 @@ export declare type TeamQuery = {
|
|
|
12614
12864
|
export declare type TeamQueryTeamArgs = {
|
|
12615
12865
|
id: Scalars['ID'];
|
|
12616
12866
|
};
|
|
12867
|
+
export declare enum TeamState {
|
|
12868
|
+
Active = "ACTIVE",
|
|
12869
|
+
Disbanded = "DISBANDED",
|
|
12870
|
+
Purged = "PURGED"
|
|
12871
|
+
}
|
|
12617
12872
|
export declare type TenantContext = {
|
|
12618
12873
|
__typename?: 'TenantContext';
|
|
12619
12874
|
cloudId?: Maybe<Scalars['ID']>;
|