@forge/cli-shared 6.3.0-next.11 → 6.3.0-next.12

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
+ ## 6.3.0-next.12
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [c84549a]
8
+ - @forge/manifest@8.0.0-next.10
9
+
3
10
  ## 6.3.0-next.11
4
11
 
5
12
  ### Patch Changes
@@ -25186,6 +25186,7 @@ export declare type GraphStore = {
25186
25186
  atlasProjectContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
25187
25187
  atlasProjectDependsOnAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectConnection>;
25188
25188
  atlasProjectDependsOnAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseConnection>;
25189
+ atlasProjectHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseConnection>;
25189
25190
  atlasProjectHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection>;
25190
25191
  atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
25191
25192
  atlasProjectIsRelatedToAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection>;
@@ -25641,6 +25642,13 @@ export declare type GraphStoreAtlasProjectDependsOnAtlasProjectInverseArgs = {
25641
25642
  id: Scalars['ID']['input'];
25642
25643
  sort?: InputMaybe<GraphStoreAtlasProjectDependsOnAtlasProjectSortInput>;
25643
25644
  };
25645
+ export declare type GraphStoreAtlasProjectHasContributorInverseArgs = {
25646
+ after?: InputMaybe<Scalars['String']['input']>;
25647
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
25648
+ first?: InputMaybe<Scalars['Int']['input']>;
25649
+ id: Scalars['ID']['input'];
25650
+ sort?: InputMaybe<GraphStoreAtlasProjectHasContributorSortInput>;
25651
+ };
25644
25652
  export declare type GraphStoreAtlasProjectHasFollowerInverseArgs = {
25645
25653
  after?: InputMaybe<Scalars['String']['input']>;
25646
25654
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -28030,6 +28038,9 @@ export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
28030
28038
  export declare type GraphStoreAtlasProjectDependsOnAtlasProjectSortInput = {
28031
28039
  lastModified?: InputMaybe<GraphStoreSortInput>;
28032
28040
  };
28041
+ export declare type GraphStoreAtlasProjectHasContributorSortInput = {
28042
+ lastModified?: InputMaybe<GraphStoreSortInput>;
28043
+ };
28033
28044
  export declare type GraphStoreAtlasProjectHasFollowerSortInput = {
28034
28045
  lastModified?: InputMaybe<GraphStoreSortInput>;
28035
28046
  };
@@ -33824,6 +33835,20 @@ export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverse
33824
33835
  };
33825
33836
  export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseUnion = TownsquareProject;
33826
33837
  export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectUnion = TownsquareProject;
33838
+ export declare type GraphStoreSimplifiedAtlasProjectHasContributorInverseConnection = HasPageInfo & {
33839
+ __typename?: 'GraphStoreSimplifiedAtlasProjectHasContributorInverseConnection';
33840
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseEdge>>>;
33841
+ pageInfo: PageInfo;
33842
+ };
33843
+ export declare type GraphStoreSimplifiedAtlasProjectHasContributorInverseEdge = {
33844
+ __typename?: 'GraphStoreSimplifiedAtlasProjectHasContributorInverseEdge';
33845
+ createdAt: Scalars['DateTime']['output'];
33846
+ cursor?: Maybe<Scalars['String']['output']>;
33847
+ id: Scalars['ID']['output'];
33848
+ lastUpdated: Scalars['DateTime']['output'];
33849
+ node?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseUnion>;
33850
+ };
33851
+ export declare type GraphStoreSimplifiedAtlasProjectHasContributorInverseUnion = TownsquareProject;
33827
33852
  export declare type GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection = HasPageInfo & {
33828
33853
  __typename?: 'GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection';
33829
33854
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseEdge>>>;
@@ -40884,6 +40909,9 @@ export declare type JiraBulkCreateIssueLinksPayload = Payload & {
40884
40909
  issueLinkEdges?: Maybe<Array<JiraIssueLinkEdge>>;
40885
40910
  success: Scalars['Boolean']['output'];
40886
40911
  };
40912
+ export declare type JiraBulkDeleteInput = {
40913
+ selectedIssueIds: Array<Scalars['ID']['input']>;
40914
+ };
40887
40915
  export declare type JiraBulkEditField = Node & {
40888
40916
  __typename?: 'JiraBulkEditField';
40889
40917
  bulkEditMultiSelectFieldOptions?: Maybe<Array<Maybe<JiraBulkEditMultiSelectFieldOptions>>>;
@@ -40918,11 +40946,13 @@ export declare enum JiraBulkEditMultiSelectFieldOptions {
40918
40946
  Replace = "REPLACE"
40919
40947
  }
40920
40948
  export declare type JiraBulkOperationInput = {
40949
+ bulkDeleteInput?: InputMaybe<JiraBulkDeleteInput>;
40921
40950
  bulkEditInput?: InputMaybe<JiraBulkEditInput>;
40922
40951
  bulkTransitionsInput?: InputMaybe<Array<JiraBulkTransitionsInput>>;
40923
40952
  sendBulkNotification?: InputMaybe<Scalars['Boolean']['input']>;
40924
40953
  };
40925
40954
  export declare enum JiraBulkOperationType {
40955
+ BulkDelete = "BULK_DELETE",
40926
40956
  BulkEdit = "BULK_EDIT",
40927
40957
  BulkTransition = "BULK_TRANSITION"
40928
40958
  }
@@ -56579,6 +56609,7 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
56579
56609
  hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
56580
56610
  hosting: MarketplaceConsoleHosting;
56581
56611
  isLatestVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
56612
+ latestForgeVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
56582
56613
  latestVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
56583
56614
  pricingParentSoftware?: Maybe<MarketplaceConsolePricingParentSoftware>;
56584
56615
  storesPersonalData?: Maybe<Scalars['Boolean']['output']>;
@@ -56873,6 +56904,10 @@ export declare type MarketplaceConsoleEditionsInput = {
56873
56904
  export declare type MarketplaceConsoleError = {
56874
56905
  message: Scalars['String']['output'];
56875
56906
  };
56907
+ export declare type MarketplaceConsoleExtensibilityFramework = {
56908
+ __typename?: 'MarketplaceConsoleExtensibilityFramework';
56909
+ frameworkId: Scalars['String']['output'];
56910
+ };
56876
56911
  export declare type MarketplaceConsoleExternalFrameworkAttributes = {
56877
56912
  __typename?: 'MarketplaceConsoleExternalFrameworkAttributes';
56878
56913
  authorization: Scalars['Boolean']['output'];
@@ -57111,6 +57146,7 @@ export declare type MarketplaceConsoleMutationVoidResponse = {
57111
57146
  };
57112
57147
  export declare type MarketplaceConsoleParentSoftware = {
57113
57148
  __typename?: 'MarketplaceConsoleParentSoftware';
57149
+ extensibilityFrameworks: Array<MarketplaceConsoleExtensibilityFramework>;
57114
57150
  hostingOptions: Array<MarketplaceConsoleHostingOption>;
57115
57151
  id: Scalars['ID']['output'];
57116
57152
  name: Scalars['String']['output'];
@@ -69640,6 +69676,7 @@ export declare type TownsquareGoalType = Node & {
69640
69676
  __typename?: 'TownsquareGoalType';
69641
69677
  allowedChildTypes?: Maybe<TownsquareGoalTypeConnection>;
69642
69678
  allowedParentTypes?: Maybe<TownsquareGoalTypeConnection>;
69679
+ description?: Maybe<TownsquareGoalTypeDescription>;
69643
69680
  icon?: Maybe<TownsquareGoalTypeIcon>;
69644
69681
  id: Scalars['ID']['output'];
69645
69682
  name?: Maybe<TownsquareGoalTypeName>;
@@ -69660,10 +69697,15 @@ export declare type TownsquareGoalTypeConnection = {
69660
69697
  edges?: Maybe<Array<Maybe<TownsquareGoalTypeEdge>>>;
69661
69698
  pageInfo: PageInfo;
69662
69699
  };
69700
+ export declare type TownsquareGoalTypeCustomDescription = {
69701
+ __typename?: 'TownsquareGoalTypeCustomDescription';
69702
+ value?: Maybe<Scalars['String']['output']>;
69703
+ };
69663
69704
  export declare type TownsquareGoalTypeCustomName = {
69664
69705
  __typename?: 'TownsquareGoalTypeCustomName';
69665
69706
  value?: Maybe<Scalars['String']['output']>;
69666
69707
  };
69708
+ export declare type TownsquareGoalTypeDescription = TownsquareGoalTypeCustomDescription | TownsquareLocalizationField;
69667
69709
  export declare type TownsquareGoalTypeEdge = {
69668
69710
  __typename?: 'TownsquareGoalTypeEdge';
69669
69711
  cursor: Scalars['String']['output'];