@forge/cli-shared 2.3.1-next.3 → 2.3.1-next.6
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,27 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.3.1-next.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [1ca8bbc9]
|
|
8
|
+
- @forge/manifest@3.4.0-next.6
|
|
9
|
+
|
|
10
|
+
## 2.3.1-next.5
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [1c6c578]
|
|
15
|
+
- @forge/manifest@3.4.0-next.5
|
|
16
|
+
|
|
17
|
+
## 2.3.1-next.4
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [64dd525]
|
|
22
|
+
- Updated dependencies [10f147f]
|
|
23
|
+
- @forge/manifest@3.4.0-next.4
|
|
24
|
+
|
|
3
25
|
## 2.3.1-next.3
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
|
@@ -796,6 +796,7 @@ export declare type AppUninstallationInput = {
|
|
|
796
796
|
environmentKey: Scalars['String'];
|
|
797
797
|
async?: Maybe<Scalars['Boolean']>;
|
|
798
798
|
licenseOverride?: Maybe<LicenseOverrideState>;
|
|
799
|
+
sourceBillingType?: Maybe<SourceBillingType>;
|
|
799
800
|
};
|
|
800
801
|
export declare type AppUninstallationResponse = Payload & {
|
|
801
802
|
__typename?: 'AppUninstallationResponse';
|
|
@@ -1004,6 +1005,7 @@ export declare type BasicBoardFeatureView = Node & {
|
|
|
1004
1005
|
learnMoreLink?: Maybe<Scalars['String']>;
|
|
1005
1006
|
learnMoreArticleId?: Maybe<Scalars['String']>;
|
|
1006
1007
|
imageUri?: Maybe<Scalars['String']>;
|
|
1008
|
+
dependents?: Maybe<Array<Maybe<BoardFeatureView>>>;
|
|
1007
1009
|
};
|
|
1008
1010
|
export declare enum BitbucketPermission {
|
|
1009
1011
|
Admin = "ADMIN"
|
|
@@ -5183,6 +5185,7 @@ export declare type DevOpsToolNamespaceContainersArgs = {
|
|
|
5183
5185
|
query?: Maybe<Scalars['String']>;
|
|
5184
5186
|
first?: Maybe<Scalars['Int']>;
|
|
5185
5187
|
after?: Maybe<Scalars['String']>;
|
|
5188
|
+
projectAri?: Maybe<Scalars['String']>;
|
|
5186
5189
|
};
|
|
5187
5190
|
export declare type DevOpsToolNamespaceConnection = {
|
|
5188
5191
|
__typename?: 'DevOpsToolNamespaceConnection';
|
|
@@ -5410,6 +5413,7 @@ export declare type Extension = {
|
|
|
5410
5413
|
appOwner?: Maybe<User>;
|
|
5411
5414
|
appVersion?: Maybe<Scalars['String']>;
|
|
5412
5415
|
properties: Scalars['JSON'];
|
|
5416
|
+
migrationKey?: Maybe<Scalars['String']>;
|
|
5413
5417
|
license?: Maybe<AppInstallationLicense>;
|
|
5414
5418
|
egress?: Maybe<Array<AppNetworkEgressPermissionExtension>>;
|
|
5415
5419
|
securityPolicies?: Maybe<Array<AppSecurityPoliciesPermissionExtension>>;
|
|
@@ -6167,6 +6171,15 @@ export declare type JiraAdf = {
|
|
|
6167
6171
|
__typename?: 'JiraADF';
|
|
6168
6172
|
json?: Maybe<Scalars['JSON']>;
|
|
6169
6173
|
};
|
|
6174
|
+
export declare type JiraAddIssuesToFixVersionInput = {
|
|
6175
|
+
issueIds: Array<Scalars['ID']>;
|
|
6176
|
+
versionId: Scalars['ID'];
|
|
6177
|
+
};
|
|
6178
|
+
export declare type JiraAddIssuesToFixVersionPayload = Payload & {
|
|
6179
|
+
__typename?: 'JiraAddIssuesToFixVersionPayload';
|
|
6180
|
+
success: Scalars['Boolean'];
|
|
6181
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6182
|
+
};
|
|
6170
6183
|
export declare type JiraAffectedService = {
|
|
6171
6184
|
__typename?: 'JiraAffectedService';
|
|
6172
6185
|
serviceId?: Maybe<Scalars['String']>;
|
|
@@ -6890,7 +6903,7 @@ export declare type JiraDevOpsBranchDetails = {
|
|
|
6890
6903
|
providerBranchId?: Maybe<Scalars['String']>;
|
|
6891
6904
|
entityUrl?: Maybe<Scalars['URL']>;
|
|
6892
6905
|
name?: Maybe<Scalars['String']>;
|
|
6893
|
-
|
|
6906
|
+
scmRepository?: Maybe<JiraScmRepository>;
|
|
6894
6907
|
};
|
|
6895
6908
|
export declare type JiraDevOpsCommitDetails = {
|
|
6896
6909
|
__typename?: 'JiraDevOpsCommitDetails';
|
|
@@ -8592,6 +8605,7 @@ export declare type JiraMutation = {
|
|
|
8592
8605
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
8593
8606
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
8594
8607
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
8608
|
+
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
8595
8609
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
8596
8610
|
};
|
|
8597
8611
|
export declare type JiraMutationUpdateIssueSearchViewFieldConfigSetsArgs = {
|
|
@@ -8612,6 +8626,9 @@ export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
|
8612
8626
|
export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
|
|
8613
8627
|
input: JiraPermissionSchemeRemoveGrantInput;
|
|
8614
8628
|
};
|
|
8629
|
+
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
8630
|
+
input: JiraAddIssuesToFixVersionInput;
|
|
8631
|
+
};
|
|
8615
8632
|
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
8616
8633
|
input: JiraUpdateVersionWarningConfigInput;
|
|
8617
8634
|
};
|
|
@@ -13619,6 +13636,11 @@ export declare type RoadmapConfiguration = {
|
|
|
13619
13636
|
userConfiguration?: Maybe<RoadmapUserConfiguration>;
|
|
13620
13637
|
boardConfiguration?: Maybe<RoadmapBoardConfiguration>;
|
|
13621
13638
|
};
|
|
13639
|
+
export declare type RoadmapContent = {
|
|
13640
|
+
__typename?: 'RoadmapContent';
|
|
13641
|
+
configuration: RoadmapConfiguration;
|
|
13642
|
+
items: RoadmapItemConnection;
|
|
13643
|
+
};
|
|
13622
13644
|
export declare type RoadmapCreationPreferences = {
|
|
13623
13645
|
__typename?: 'RoadmapCreationPreferences';
|
|
13624
13646
|
projectId?: Maybe<Scalars['Long']>;
|
|
@@ -13635,6 +13657,9 @@ export declare type RoadmapDetails = {
|
|
|
13635
13657
|
roadmapConfiguration?: Maybe<RoadmapConfiguration>;
|
|
13636
13658
|
roadmapItems?: Maybe<RoadmapItemConnection>;
|
|
13637
13659
|
metadata?: Maybe<RoadmapMetadata>;
|
|
13660
|
+
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
13661
|
+
healthcheck?: Maybe<RoadmapHealthCheck>;
|
|
13662
|
+
content?: Maybe<RoadmapContent>;
|
|
13638
13663
|
};
|
|
13639
13664
|
export declare enum RoadmapEpicView {
|
|
13640
13665
|
All = "ALL",
|
|
@@ -13671,6 +13696,24 @@ export declare type RoadmapFilterConfiguration = {
|
|
|
13671
13696
|
__typename?: 'RoadmapFilterConfiguration';
|
|
13672
13697
|
quickFilters?: Maybe<Array<RoadmapQuickFilter>>;
|
|
13673
13698
|
};
|
|
13699
|
+
export declare type RoadmapHealthCheck = {
|
|
13700
|
+
__typename?: 'RoadmapHealthCheck';
|
|
13701
|
+
title: Scalars['String'];
|
|
13702
|
+
explanation: Scalars['String'];
|
|
13703
|
+
learnMore: RoadmapHealthCheckLink;
|
|
13704
|
+
resolution?: Maybe<RoadmapHealthCheckResolution>;
|
|
13705
|
+
};
|
|
13706
|
+
export declare type RoadmapHealthCheckLink = {
|
|
13707
|
+
__typename?: 'RoadmapHealthCheckLink';
|
|
13708
|
+
text: Scalars['String'];
|
|
13709
|
+
url: Scalars['String'];
|
|
13710
|
+
};
|
|
13711
|
+
export declare type RoadmapHealthCheckResolution = {
|
|
13712
|
+
__typename?: 'RoadmapHealthCheckResolution';
|
|
13713
|
+
label: Scalars['String'];
|
|
13714
|
+
actionId: Scalars['ID'];
|
|
13715
|
+
fallbackMessage: Scalars['String'];
|
|
13716
|
+
};
|
|
13674
13717
|
export declare type RoadmapItem = {
|
|
13675
13718
|
__typename?: 'RoadmapItem';
|
|
13676
13719
|
id: Scalars['ID'];
|
|
@@ -16030,4 +16073,8 @@ export declare type _DirectiveArgument = {
|
|
|
16030
16073
|
name: Scalars['String'];
|
|
16031
16074
|
value: Scalars['String'];
|
|
16032
16075
|
};
|
|
16076
|
+
export declare enum SourceBillingType {
|
|
16077
|
+
Hams = "HAMS",
|
|
16078
|
+
Ccp = "CCP"
|
|
16079
|
+
}
|
|
16033
16080
|
//# sourceMappingURL=graphql-types.d.ts.map
|