@forge/cli-shared 2.4.1-next.2 → 2.4.1-next.3

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,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 2.4.1-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [90475812]
8
+ - @forge/manifest@3.6.0-next.3
9
+
3
10
  ## 2.4.1-next.2
4
11
 
5
12
  ### Patch Changes
@@ -877,11 +877,26 @@ export declare type AriGraphRelationshipsArgs = {
877
877
  first?: Maybe<Scalars['Int']>;
878
878
  after?: Maybe<Scalars['String']>;
879
879
  };
880
+ export declare type AriGraphCreateRelationshipErrorReference = {
881
+ __typename?: 'AriGraphCreateRelationshipErrorReference';
882
+ from: Scalars['ID'];
883
+ to: Scalars['ID'];
884
+ type: Scalars['ID'];
885
+ };
880
886
  export declare type AriGraphCreateRelationshipInput = {
887
+ relationships: Array<AriGraphCreateRelationshipInputRelationship>;
888
+ };
889
+ export declare type AriGraphCreateRelationshipInputRelationship = {
881
890
  from: Scalars['ID'];
882
891
  to: Scalars['ID'];
883
892
  type: Scalars['ID'];
884
893
  };
894
+ export declare type AriGraphCreateRelationshipMutationErrorExtension = MutationErrorExtension & {
895
+ __typename?: 'AriGraphCreateRelationshipMutationErrorExtension';
896
+ statusCode?: Maybe<Scalars['Int']>;
897
+ errorType?: Maybe<Scalars['String']>;
898
+ reference: AriGraphCreateRelationshipErrorReference;
899
+ };
885
900
  export declare type AriGraphCreateRelationshipPayload = Payload & {
886
901
  __typename?: 'AriGraphCreateRelationshipPayload';
887
902
  success: Scalars['Boolean'];
@@ -5262,7 +5277,9 @@ export declare type DevOpsTool = Node & {
5262
5277
  productKey: Scalars['String'];
5263
5278
  avatar?: Maybe<DevOpsToolAvatar>;
5264
5279
  group: DevOpsToolGroup;
5280
+ category: DevOpsToolCategory;
5265
5281
  supportsContainers: Scalars['Boolean'];
5282
+ recommended: Scalars['Boolean'];
5266
5283
  integration?: Maybe<DevOpsToolIntegration>;
5267
5284
  namespaces?: Maybe<DevOpsToolNamespaceConnection>;
5268
5285
  auth?: Maybe<DevOpsToolAuth>;