@forge/cli-shared 6.8.0-next.17 → 6.8.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 +12 -0
- package/out/graphql/graphql-types.d.ts +16 -12
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +28 -23
- package/out/tunnel/tunnel-options.d.ts +1 -0
- package/out/tunnel/tunnel-options.d.ts.map +1 -1
- package/out/ui/text.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.8.0-next.19
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 61f499c: Fix XPA upgrade wording
|
|
8
|
+
|
|
9
|
+
## 6.8.0-next.18
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- f9c2880: Add support for --no-verify during tunnel
|
|
14
|
+
|
|
3
15
|
## 6.8.0-next.17
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -7830,8 +7830,9 @@ export declare type CompassRelationship = {
|
|
|
7830
7830
|
__typename?: 'CompassRelationship';
|
|
7831
7831
|
changeMetadata?: Maybe<CompassChangeMetadata>;
|
|
7832
7832
|
endNode?: Maybe<CompassComponent>;
|
|
7833
|
+
relationshipType: Scalars['String']['output'];
|
|
7833
7834
|
startNode?: Maybe<CompassComponent>;
|
|
7834
|
-
type
|
|
7835
|
+
type?: Maybe<CompassRelationshipType>;
|
|
7835
7836
|
};
|
|
7836
7837
|
export declare type CompassRelationshipConnection = {
|
|
7837
7838
|
__typename?: 'CompassRelationshipConnection';
|
|
@@ -7852,8 +7853,8 @@ export declare type CompassRelationshipEdge = {
|
|
|
7852
7853
|
export declare type CompassRelationshipQuery = {
|
|
7853
7854
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
7854
7855
|
direction?: CompassRelationshipDirection;
|
|
7855
|
-
filters?: InputMaybe<CompassRelationshipQueryFilters>;
|
|
7856
7856
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7857
|
+
relationshipType?: CompassRelationshipTypeInput;
|
|
7857
7858
|
};
|
|
7858
7859
|
export declare type CompassRelationshipQueryFilters = {
|
|
7859
7860
|
types?: InputMaybe<Array<CompassRelationshipType>>;
|
|
@@ -7861,6 +7862,10 @@ export declare type CompassRelationshipQueryFilters = {
|
|
|
7861
7862
|
export declare enum CompassRelationshipType {
|
|
7862
7863
|
DependsOn = "DEPENDS_ON"
|
|
7863
7864
|
}
|
|
7865
|
+
export declare enum CompassRelationshipTypeInput {
|
|
7866
|
+
ChildOf = "CHILD_OF",
|
|
7867
|
+
DependsOn = "DEPENDS_ON"
|
|
7868
|
+
}
|
|
7864
7869
|
export declare type CompassRemoveTeamLabelsInput = {
|
|
7865
7870
|
cloudId: Scalars['ID']['input'];
|
|
7866
7871
|
labels: Array<Scalars['String']['input']>;
|
|
@@ -19489,8 +19494,8 @@ export declare type CreateCompassLinkInput = {
|
|
|
19489
19494
|
};
|
|
19490
19495
|
export declare type CreateCompassRelationshipInput = {
|
|
19491
19496
|
endNodeId: Scalars['ID']['input'];
|
|
19497
|
+
relationshipType?: CompassRelationshipTypeInput;
|
|
19492
19498
|
startNodeId: Scalars['ID']['input'];
|
|
19493
|
-
type: CompassRelationshipType;
|
|
19494
19499
|
};
|
|
19495
19500
|
export declare type CreateCompassRelationshipPayload = Payload & {
|
|
19496
19501
|
__typename?: 'CreateCompassRelationshipPayload';
|
|
@@ -21462,8 +21467,8 @@ export declare type DeleteCompassComponentTypePayload = Payload & {
|
|
|
21462
21467
|
};
|
|
21463
21468
|
export declare type DeleteCompassRelationshipInput = {
|
|
21464
21469
|
endNodeId: Scalars['ID']['input'];
|
|
21470
|
+
relationshipType?: CompassRelationshipTypeInput;
|
|
21465
21471
|
startNodeId: Scalars['ID']['input'];
|
|
21466
|
-
type: CompassRelationshipType;
|
|
21467
21472
|
};
|
|
21468
21473
|
export declare type DeleteCompassRelationshipPayload = Payload & {
|
|
21469
21474
|
__typename?: 'DeleteCompassRelationshipPayload';
|
|
@@ -22079,6 +22084,7 @@ export declare type DevAiFlowSession = {
|
|
|
22079
22084
|
createdBy?: Maybe<Scalars['String']['output']>;
|
|
22080
22085
|
id: Scalars['ID']['output'];
|
|
22081
22086
|
issueARI?: Maybe<Scalars['ID']['output']>;
|
|
22087
|
+
issueJSON?: Maybe<Scalars['String']['output']>;
|
|
22082
22088
|
jiraHost?: Maybe<Scalars['String']['output']>;
|
|
22083
22089
|
pipelines?: Maybe<Array<Maybe<DevAiFlowPipeline>>>;
|
|
22084
22090
|
repoUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -25558,11 +25564,6 @@ export declare type ExternalPosition = Node & {
|
|
|
25558
25564
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
25559
25565
|
url?: Maybe<Scalars['String']['output']>;
|
|
25560
25566
|
};
|
|
25561
|
-
export declare type ExternalProject = {
|
|
25562
|
-
__typename?: 'ExternalProject';
|
|
25563
|
-
id?: Maybe<Scalars['String']['output']>;
|
|
25564
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
25565
|
-
};
|
|
25566
25567
|
export declare type ExternalProvider = {
|
|
25567
25568
|
__typename?: 'ExternalProvider';
|
|
25568
25569
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -25821,7 +25822,6 @@ export declare type ExternalWorkItem = Node & {
|
|
|
25821
25822
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
25822
25823
|
parent?: Maybe<ExternalEntity>;
|
|
25823
25824
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
25824
|
-
project?: Maybe<ExternalProject>;
|
|
25825
25825
|
provider?: Maybe<ExternalProvider>;
|
|
25826
25826
|
status?: Maybe<Scalars['String']['output']>;
|
|
25827
25827
|
subtype?: Maybe<ExternalWorkItemSubtype>;
|
|
@@ -36224,8 +36224,8 @@ export declare type GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput = {
|
|
|
36224
36224
|
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
36225
36225
|
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
36226
36226
|
};
|
|
36227
|
-
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36228
|
-
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36227
|
+
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36228
|
+
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36229
36229
|
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
36230
36230
|
__typename?: 'GraphStoreAtlasHomeQueryConnection';
|
|
36231
36231
|
nodes: Array<GraphStoreAtlasHomeQueryNode>;
|
|
@@ -69256,6 +69256,7 @@ export declare type JiraUpdateShortcutInput = {
|
|
|
69256
69256
|
};
|
|
69257
69257
|
export declare type JiraUpdateSidebarMenuDisplaySettingInput = {
|
|
69258
69258
|
cloudId: Scalars['ID']['input'];
|
|
69259
|
+
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
69259
69260
|
displayMode?: InputMaybe<JiraSidebarMenuDisplayMode>;
|
|
69260
69261
|
favouriteLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
69261
69262
|
recentLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -78723,6 +78724,7 @@ export declare type MutationDevai_FlowCreateArgs = {
|
|
|
78723
78724
|
createdBy: Scalars['String']['input'];
|
|
78724
78725
|
issueARI?: InputMaybe<Scalars['ID']['input']>;
|
|
78725
78726
|
jiraHost: Scalars['String']['input'];
|
|
78727
|
+
jiraIssueJSON?: InputMaybe<Scalars['String']['input']>;
|
|
78726
78728
|
repoUrl: Scalars['URL']['input'];
|
|
78727
78729
|
};
|
|
78728
78730
|
export declare type MutationDevai_FlowSessionCompleteArgs = {
|
|
@@ -87954,7 +87956,9 @@ export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & Se
|
|
|
87954
87956
|
};
|
|
87955
87957
|
export declare type SearchResultGraphDocument = SearchL2FeatureProvider & SearchResult & {
|
|
87956
87958
|
__typename?: 'SearchResultGraphDocument';
|
|
87959
|
+
allContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
87957
87960
|
bodyText?: Maybe<Scalars['String']['output']>;
|
|
87961
|
+
containerName?: Maybe<Scalars['String']['output']>;
|
|
87958
87962
|
description: Scalars['String']['output'];
|
|
87959
87963
|
entity?: Maybe<SearchResultEntity>;
|
|
87960
87964
|
excerpt?: Maybe<Scalars['String']['output']>;
|