@forge/cli-shared 2.1.6-next.4 → 2.1.6-next.8
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
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.1.6-next.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [d3afe01]
|
|
8
|
+
- @forge/manifest@2.6.0-next.7
|
|
9
|
+
|
|
10
|
+
## 2.1.6-next.7
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [cdd8645]
|
|
15
|
+
- Updated dependencies [b97660c]
|
|
16
|
+
- @forge/manifest@2.6.0-next.6
|
|
17
|
+
|
|
18
|
+
## 2.1.6-next.6
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [0a39c43]
|
|
23
|
+
- @forge/manifest@2.6.0-next.5
|
|
24
|
+
|
|
25
|
+
## 2.1.6-next.5
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies [91ea057]
|
|
30
|
+
- @forge/manifest@2.5.1-next.4
|
|
31
|
+
|
|
3
32
|
## 2.1.6-next.4
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
|
@@ -2001,6 +2001,7 @@ export declare type CompassMetricDefinition = {
|
|
|
2001
2001
|
name?: Maybe<Scalars['String']>;
|
|
2002
2002
|
description?: Maybe<Scalars['String']>;
|
|
2003
2003
|
format?: Maybe<CompassMetricDefinitionFormat>;
|
|
2004
|
+
type: CompassMetricDefinitionType;
|
|
2004
2005
|
metricSources?: Maybe<CompassMetricSourcesQueryResult>;
|
|
2005
2006
|
};
|
|
2006
2007
|
export declare type CompassMetricDefinitionMetricSourcesArgs = {
|
|
@@ -2023,6 +2024,10 @@ export declare type CompassMetricDefinitionFormatSuffixInput = {
|
|
|
2023
2024
|
suffix: Scalars['String'];
|
|
2024
2025
|
};
|
|
2025
2026
|
export declare type CompassMetricDefinitionResult = CompassMetricDefinition | QueryError;
|
|
2027
|
+
export declare enum CompassMetricDefinitionType {
|
|
2028
|
+
BuiltIn = "BUILT_IN",
|
|
2029
|
+
Custom = "CUSTOM"
|
|
2030
|
+
}
|
|
2026
2031
|
export declare type CompassMetricDefinitionsConnection = {
|
|
2027
2032
|
__typename?: 'CompassMetricDefinitionsConnection';
|
|
2028
2033
|
edges?: Maybe<Array<CompassMetricDefinitionEdge>>;
|
|
@@ -2457,6 +2462,7 @@ export declare type ConfluenceBlogPostLinks = {
|
|
|
2457
2462
|
};
|
|
2458
2463
|
export declare type ConfluenceComment = {
|
|
2459
2464
|
__typename?: 'ConfluenceComment';
|
|
2465
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
2460
2466
|
commentId?: Maybe<Scalars['ID']>;
|
|
2461
2467
|
container?: Maybe<ConfluenceAbstractPage>;
|
|
2462
2468
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -2468,6 +2474,16 @@ export declare type ConfluenceCommentLinks = {
|
|
|
2468
2474
|
base?: Maybe<Scalars['String']>;
|
|
2469
2475
|
webUi?: Maybe<Scalars['String']>;
|
|
2470
2476
|
};
|
|
2477
|
+
export declare type ConfluenceContentBody = {
|
|
2478
|
+
__typename?: 'ConfluenceContentBody';
|
|
2479
|
+
adf?: Maybe<Scalars['String']>;
|
|
2480
|
+
editor?: Maybe<Scalars['String']>;
|
|
2481
|
+
editor2?: Maybe<Scalars['String']>;
|
|
2482
|
+
exportView?: Maybe<Scalars['String']>;
|
|
2483
|
+
storage?: Maybe<Scalars['String']>;
|
|
2484
|
+
styledView?: Maybe<Scalars['String']>;
|
|
2485
|
+
view?: Maybe<Scalars['String']>;
|
|
2486
|
+
};
|
|
2471
2487
|
export declare enum ConfluenceContentStatus {
|
|
2472
2488
|
Any = "ANY",
|
|
2473
2489
|
Archived = "ARCHIVED",
|
|
@@ -2483,6 +2499,48 @@ export declare enum ConfluenceContentType {
|
|
|
2483
2499
|
Comment = "COMMENT",
|
|
2484
2500
|
Page = "PAGE"
|
|
2485
2501
|
}
|
|
2502
|
+
export declare type ConfluenceCreateSpaceInput = {
|
|
2503
|
+
key: Scalars['String'];
|
|
2504
|
+
name: Scalars['String'];
|
|
2505
|
+
type?: Maybe<ConfluenceSpaceType>;
|
|
2506
|
+
};
|
|
2507
|
+
export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
2508
|
+
__typename?: 'ConfluenceCreateSpacePayload';
|
|
2509
|
+
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
2510
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2511
|
+
success: Scalars['Boolean'];
|
|
2512
|
+
};
|
|
2513
|
+
export declare type ConfluenceInlineTask = {
|
|
2514
|
+
__typename?: 'ConfluenceInlineTask';
|
|
2515
|
+
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
2516
|
+
body?: Maybe<ConfluenceContentBody>;
|
|
2517
|
+
completedBy?: Maybe<ConfluenceUserInfo>;
|
|
2518
|
+
container?: Maybe<ConfluenceInlineTaskContainer>;
|
|
2519
|
+
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
2520
|
+
createdOn?: Maybe<Scalars['String']>;
|
|
2521
|
+
dueOn?: Maybe<Scalars['String']>;
|
|
2522
|
+
globalId?: Maybe<Scalars['ID']>;
|
|
2523
|
+
id?: Maybe<Scalars['ID']>;
|
|
2524
|
+
status?: Maybe<ConfluenceInlineTaskStatus>;
|
|
2525
|
+
taskId?: Maybe<Scalars['ID']>;
|
|
2526
|
+
updatedOn?: Maybe<Scalars['String']>;
|
|
2527
|
+
};
|
|
2528
|
+
export declare type ConfluenceInlineTaskContainer = ConfluenceBlogPost | ConfluencePage;
|
|
2529
|
+
export declare enum ConfluenceInlineTaskStatus {
|
|
2530
|
+
Complete = "COMPLETE",
|
|
2531
|
+
Incomplete = "INCOMPLETE"
|
|
2532
|
+
}
|
|
2533
|
+
export declare type ConfluenceMutationApi = {
|
|
2534
|
+
__typename?: 'ConfluenceMutationApi';
|
|
2535
|
+
createConfluenceSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
2536
|
+
updateConfluenceSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
2537
|
+
};
|
|
2538
|
+
export declare type ConfluenceMutationApiCreateConfluenceSpaceArgs = {
|
|
2539
|
+
input: ConfluenceCreateSpaceInput;
|
|
2540
|
+
};
|
|
2541
|
+
export declare type ConfluenceMutationApiUpdateConfluenceSpaceArgs = {
|
|
2542
|
+
input: ConfluenceUpdateSpaceInput;
|
|
2543
|
+
};
|
|
2486
2544
|
export declare type ConfluencePage = ConfluenceAbstractPage & {
|
|
2487
2545
|
__typename?: 'ConfluencePage';
|
|
2488
2546
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -2502,6 +2560,7 @@ export declare type ConfluenceQueryApi = {
|
|
|
2502
2560
|
__typename?: 'ConfluenceQueryApi';
|
|
2503
2561
|
confluenceComment?: Maybe<ConfluenceComment>;
|
|
2504
2562
|
confluenceComments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
2563
|
+
confluenceInlineTask?: Maybe<ConfluenceInlineTask>;
|
|
2505
2564
|
confluencePage?: Maybe<ConfluenceAbstractPage>;
|
|
2506
2565
|
confluencePageWithFilters?: Maybe<ConfluenceAbstractPage>;
|
|
2507
2566
|
confluencePages?: Maybe<Array<Maybe<ConfluenceAbstractPage>>>;
|
|
@@ -2515,6 +2574,9 @@ export declare type ConfluenceQueryApiConfluenceCommentArgs = {
|
|
|
2515
2574
|
export declare type ConfluenceQueryApiConfluenceCommentsArgs = {
|
|
2516
2575
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
2517
2576
|
};
|
|
2577
|
+
export declare type ConfluenceQueryApiConfluenceInlineTaskArgs = {
|
|
2578
|
+
id: Scalars['ID'];
|
|
2579
|
+
};
|
|
2518
2580
|
export declare type ConfluenceQueryApiConfluencePageArgs = {
|
|
2519
2581
|
id: Scalars['ID'];
|
|
2520
2582
|
};
|
|
@@ -2566,6 +2628,21 @@ export declare enum ConfluenceSpaceType {
|
|
|
2566
2628
|
Global = "GLOBAL",
|
|
2567
2629
|
Personal = "PERSONAL"
|
|
2568
2630
|
}
|
|
2631
|
+
export declare type ConfluenceUpdateSpaceInput = {
|
|
2632
|
+
id: Scalars['ID'];
|
|
2633
|
+
name?: Maybe<Scalars['String']>;
|
|
2634
|
+
};
|
|
2635
|
+
export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
2636
|
+
__typename?: 'ConfluenceUpdateSpacePayload';
|
|
2637
|
+
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
2638
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2639
|
+
success: Scalars['Boolean'];
|
|
2640
|
+
};
|
|
2641
|
+
export declare type ConfluenceUserInfo = {
|
|
2642
|
+
__typename?: 'ConfluenceUserInfo';
|
|
2643
|
+
user?: Maybe<User>;
|
|
2644
|
+
personalSpace?: Maybe<ConfluenceSpace>;
|
|
2645
|
+
};
|
|
2569
2646
|
export declare type ConnectAppScope = {
|
|
2570
2647
|
__typename?: 'ConnectAppScope';
|
|
2571
2648
|
scopeId: Scalars['ID'];
|
|
@@ -3934,6 +4011,7 @@ export declare type DevOpsToolAvailable = DevOpsTool & Node & {
|
|
|
3934
4011
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
3935
4012
|
};
|
|
3936
4013
|
export declare type DevOpsToolAvailableNamespacesArgs = {
|
|
4014
|
+
query?: Maybe<Scalars['String']>;
|
|
3937
4015
|
first?: Maybe<Scalars['Int']>;
|
|
3938
4016
|
after?: Maybe<Scalars['String']>;
|
|
3939
4017
|
};
|
|
@@ -3992,6 +4070,7 @@ export declare type DevOpsToolNamespace = Node & {
|
|
|
3992
4070
|
containers?: Maybe<DevOpsToolContainerConnection>;
|
|
3993
4071
|
};
|
|
3994
4072
|
export declare type DevOpsToolNamespaceContainersArgs = {
|
|
4073
|
+
query?: Maybe<Scalars['String']>;
|
|
3995
4074
|
first?: Maybe<Scalars['Int']>;
|
|
3996
4075
|
after?: Maybe<Scalars['String']>;
|
|
3997
4076
|
};
|
|
@@ -5296,6 +5375,7 @@ export declare type JiraDevOpsIssuePanel = {
|
|
|
5296
5375
|
panelState?: Maybe<JiraDevOpsIssuePanelState>;
|
|
5297
5376
|
devOpsIssuePanelBanner?: Maybe<JiraDevOpsIssuePanelBannerType>;
|
|
5298
5377
|
devSummaryResult?: Maybe<JiraIssueDevSummaryResult>;
|
|
5378
|
+
hasBranchCapabilities?: Maybe<Scalars['Boolean']>;
|
|
5299
5379
|
};
|
|
5300
5380
|
export declare enum JiraDevOpsIssuePanelBannerType {
|
|
5301
5381
|
IssueKeyOnboarding = "ISSUE_KEY_ONBOARDING"
|
|
@@ -7672,7 +7752,7 @@ export declare type JiraServiceManagementActiveApproval = Node & {
|
|
|
7672
7752
|
canAnswerApproval?: Maybe<Scalars['Boolean']>;
|
|
7673
7753
|
decisions?: Maybe<JiraServiceManagementDecisionConnection>;
|
|
7674
7754
|
createdDate?: Maybe<Scalars['DateTime']>;
|
|
7675
|
-
|
|
7755
|
+
configuration?: Maybe<JiraServiceManagementApprovalConfiguration>;
|
|
7676
7756
|
status?: Maybe<JiraServiceManagementApprovalStatus>;
|
|
7677
7757
|
approverPrincipals?: Maybe<JiraServiceManagementApproverPrincipalConnection>;
|
|
7678
7758
|
pendingApprovalCount?: Maybe<Scalars['Int']>;
|
|
@@ -8997,6 +9077,7 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
8997
9077
|
export declare type Mutation = {
|
|
8998
9078
|
__typename?: 'Mutation';
|
|
8999
9079
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
9080
|
+
confluence?: Maybe<ConfluenceMutationApi>;
|
|
9000
9081
|
shepherd?: Maybe<ShepherdMutation>;
|
|
9001
9082
|
createApp?: Maybe<CreateAppResponse>;
|
|
9002
9083
|
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
@@ -11174,6 +11255,14 @@ export declare type RoadmapItemType = {
|
|
|
11174
11255
|
avatarId?: Maybe<Scalars['ID']>;
|
|
11175
11256
|
requiredFieldIds?: Maybe<Array<Scalars['ID']>>;
|
|
11176
11257
|
};
|
|
11258
|
+
export declare enum RoadmapLevelOneView {
|
|
11259
|
+
Complete12M = "COMPLETE12M",
|
|
11260
|
+
Complete9M = "COMPLETE9M",
|
|
11261
|
+
Complete6M = "COMPLETE6M",
|
|
11262
|
+
Complete3M = "COMPLETE3M",
|
|
11263
|
+
Complete1M = "COMPLETE1M",
|
|
11264
|
+
Incomplete = "INCOMPLETE"
|
|
11265
|
+
}
|
|
11177
11266
|
export declare type RoadmapMetadata = {
|
|
11178
11267
|
__typename?: 'RoadmapMetadata';
|
|
11179
11268
|
hasExceededEpicLimit: Scalars['Boolean'];
|
|
@@ -11274,6 +11363,7 @@ export declare type RoadmapUserConfiguration = {
|
|
|
11274
11363
|
listWidth: Scalars['Long'];
|
|
11275
11364
|
timelineMode: RoadmapTimelineMode;
|
|
11276
11365
|
epicView: RoadmapEpicView;
|
|
11366
|
+
levelOneView: RoadmapLevelOneView;
|
|
11277
11367
|
};
|
|
11278
11368
|
export declare type RoadmapVersion = {
|
|
11279
11369
|
__typename?: 'RoadmapVersion';
|
|
@@ -11916,6 +12006,7 @@ export declare type SupportRequestComment = {
|
|
|
11916
12006
|
author: SupportRequestUser;
|
|
11917
12007
|
message: Scalars['String'];
|
|
11918
12008
|
createdDate: SupportRequestDisplayableDateTime;
|
|
12009
|
+
mentionedUsers: Array<SupportRequestUser>;
|
|
11919
12010
|
};
|
|
11920
12011
|
export declare type SupportRequestComments = {
|
|
11921
12012
|
__typename?: 'SupportRequestComments';
|
|
@@ -12112,6 +12203,7 @@ export declare type TenantContext = {
|
|
|
12112
12203
|
__typename?: 'TenantContext';
|
|
12113
12204
|
cloudId?: Maybe<Scalars['ID']>;
|
|
12114
12205
|
hostName?: Maybe<Scalars['String']>;
|
|
12206
|
+
cloudUrl?: Maybe<Scalars['URL']>;
|
|
12115
12207
|
orgId?: Maybe<Scalars['ID']>;
|
|
12116
12208
|
};
|
|
12117
12209
|
export declare type Testing = {
|