@forge/cli-shared 3.19.1-next.3 → 3.19.1-next.5
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,24 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.19.1-next.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e534bed5: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- ignore-walk
|
|
10
|
+
|
|
11
|
+
## 3.19.1-next.4
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 9d50860c: Bumping dependencies via Renovate:
|
|
16
|
+
|
|
17
|
+
- @types/node
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [9d50860c]
|
|
20
|
+
- @forge/manifest@4.20.2-next.1
|
|
21
|
+
|
|
3
22
|
## 3.19.1-next.3
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -1643,7 +1643,7 @@ export type AriGraphRelationshipNode = {
|
|
|
1643
1643
|
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
1644
1644
|
id: Scalars['ID']['output'];
|
|
1645
1645
|
};
|
|
1646
|
-
export type AriGraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDocument | DevOpsFeatureFlag | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | JiraIssue | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
1646
|
+
export type AriGraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | JiraIssue | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
1647
1647
|
export type AriGraphRelationshipsErrorReference = {
|
|
1648
1648
|
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
1649
1649
|
from?: Maybe<Scalars['ID']['output']>;
|
|
@@ -7877,6 +7877,7 @@ export type DevOpsDesign = Node & {
|
|
|
7877
7877
|
inspectUrl?: Maybe<Scalars['URL']['output']>;
|
|
7878
7878
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
7879
7879
|
liveEmbedUrl?: Maybe<Scalars['URL']['output']>;
|
|
7880
|
+
providerId?: Maybe<Scalars['String']['output']>;
|
|
7880
7881
|
status?: Maybe<DevOpsDesignStatus>;
|
|
7881
7882
|
type?: Maybe<DevOpsDesignType>;
|
|
7882
7883
|
url?: Maybe<Scalars['URL']['output']>;
|
|
@@ -11478,6 +11479,7 @@ export type HasTotal = {
|
|
|
11478
11479
|
};
|
|
11479
11480
|
export type HelpCenter = Node & {
|
|
11480
11481
|
__typename?: 'HelpCenter';
|
|
11482
|
+
conversation?: Maybe<HelpCenterConversation>;
|
|
11481
11483
|
helpCenterBranding?: Maybe<HelpCenterBranding>;
|
|
11482
11484
|
helpDesks: HelpCenterHelpDeskItemConnection;
|
|
11483
11485
|
homePageLayout?: Maybe<HelpCenterHomePageLayout>;
|
|
@@ -11517,6 +11519,10 @@ export type HelpCenterBulkUpdateTopicInput = {
|
|
|
11517
11519
|
helpCenterUpdateTopicInputItem: Array<HelpCenterUpdateTopicInput>;
|
|
11518
11520
|
};
|
|
11519
11521
|
export type HelpCenterConversation = {
|
|
11522
|
+
__typename?: 'HelpCenterConversation';
|
|
11523
|
+
fallbackMessage?: Maybe<Scalars['String']['output']>;
|
|
11524
|
+
};
|
|
11525
|
+
export type HelpCenterConversationInput = {
|
|
11520
11526
|
fallbackMessage?: InputMaybe<Scalars['String']['input']>;
|
|
11521
11527
|
};
|
|
11522
11528
|
export type HelpCenterCreateTopicInput = {
|
|
@@ -11731,7 +11737,7 @@ export declare enum HelpCenterType {
|
|
|
11731
11737
|
Unified = "UNIFIED"
|
|
11732
11738
|
}
|
|
11733
11739
|
export type HelpCenterUpdateInput = {
|
|
11734
|
-
conversation?: InputMaybe<
|
|
11740
|
+
conversation?: InputMaybe<HelpCenterConversationInput>;
|
|
11735
11741
|
helpCenterAri: Scalars['String']['input'];
|
|
11736
11742
|
helpCenterBranding?: InputMaybe<HelpCenterBrandingInput>;
|
|
11737
11743
|
name?: InputMaybe<HelpCenterNameInput>;
|