@forge/cli-shared 6.8.0-next.17 → 6.8.0-next.18
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
|
@@ -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']>;
|
|
@@ -78723,6 +78729,7 @@ export declare type MutationDevai_FlowCreateArgs = {
|
|
|
78723
78729
|
createdBy: Scalars['String']['input'];
|
|
78724
78730
|
issueARI?: InputMaybe<Scalars['ID']['input']>;
|
|
78725
78731
|
jiraHost: Scalars['String']['input'];
|
|
78732
|
+
jiraIssueJSON?: InputMaybe<Scalars['String']['input']>;
|
|
78726
78733
|
repoUrl: Scalars['URL']['input'];
|
|
78727
78734
|
};
|
|
78728
78735
|
export declare type MutationDevai_FlowSessionCompleteArgs = {
|
|
@@ -87954,7 +87961,9 @@ export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & Se
|
|
|
87954
87961
|
};
|
|
87955
87962
|
export declare type SearchResultGraphDocument = SearchL2FeatureProvider & SearchResult & {
|
|
87956
87963
|
__typename?: 'SearchResultGraphDocument';
|
|
87964
|
+
allContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
87957
87965
|
bodyText?: Maybe<Scalars['String']['output']>;
|
|
87966
|
+
containerName?: Maybe<Scalars['String']['output']>;
|
|
87958
87967
|
description: Scalars['String']['output'];
|
|
87959
87968
|
entity?: Maybe<SearchResultEntity>;
|
|
87960
87969
|
excerpt?: Maybe<Scalars['String']['output']>;
|