@forge/cli-shared 6.2.1-next.5 → 6.2.1-next.7

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,19 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.2.1-next.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [da32dcc]
8
+ - @forge/manifest@8.0.0-next.6
9
+
10
+ ## 6.2.1-next.6
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [0e1b960]
15
+ - @forge/manifest@8.0.0-next.5
16
+
3
17
  ## 6.2.1-next.5
4
18
 
5
19
  ### Patch Changes
@@ -14535,6 +14535,7 @@ export declare type ContentPlatformContentQueryInput = {
14535
14535
  first?: InputMaybe<Scalars['Int']['input']>;
14536
14536
  sortBy?: InputMaybe<ContentPlatformSortClause>;
14537
14537
  where?: InputMaybe<ContentPlatformContentClause>;
14538
+ withFallback?: InputMaybe<Scalars['String']['input']>;
14538
14539
  withLocales?: InputMaybe<Array<Scalars['String']['input']>>;
14539
14540
  withProductFeatureFlags?: InputMaybe<Scalars['JSON']['input']>;
14540
14541
  };
@@ -14918,6 +14919,7 @@ export declare type ContentPlatformIpmMultiStep = {
14918
14919
  secondaryButton?: Maybe<ContentPlatformIpmComponentRemindMeLater>;
14919
14920
  steps: Array<ContentPlatformIpmSingleStep>;
14920
14921
  title: Scalars['String']['output'];
14922
+ trigger?: Maybe<ContentPlatformIpmTrigger>;
14921
14923
  updatedAt?: Maybe<Scalars['String']['output']>;
14922
14924
  variant: Scalars['String']['output'];
14923
14925
  };
@@ -14951,6 +14953,14 @@ export declare type ContentPlatformIpmSingleStep = {
14951
14953
  title: Scalars['String']['output'];
14952
14954
  updatedAt?: Maybe<Scalars['String']['output']>;
14953
14955
  };
14956
+ export declare type ContentPlatformIpmTrigger = {
14957
+ __typename?: 'ContentPlatformIpmTrigger';
14958
+ createdAt?: Maybe<Scalars['String']['output']>;
14959
+ id: Scalars['String']['output'];
14960
+ triggeringElementId: Scalars['String']['output'];
14961
+ triggeringEvent?: Maybe<Scalars['String']['output']>;
14962
+ updatedAt?: Maybe<Scalars['String']['output']>;
14963
+ };
14954
14964
  export declare type ContentPlatformMarketplaceApp = {
14955
14965
  __typename?: 'ContentPlatformMarketplaceApp';
14956
14966
  createdAt?: Maybe<Scalars['String']['output']>;
@@ -25107,6 +25117,7 @@ export declare type GraphStore = {
25107
25117
  appInstallationAssociatedToOperationsWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection>;
25108
25118
  appInstallationAssociatedToSecurityWorkspaceInverseRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
25109
25119
  appInstallationAssociatedToSecurityWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
25120
+ atlasGoalHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection>;
25110
25121
  atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
25111
25122
  atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
25112
25123
  atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
@@ -25510,6 +25521,13 @@ export declare type GraphStoreAppInstallationAssociatedToSecurityWorkspaceRelati
25510
25521
  first?: InputMaybe<Scalars['Int']['input']>;
25511
25522
  id: Scalars['ID']['input'];
25512
25523
  };
25524
+ export declare type GraphStoreAtlasGoalHasFollowerInverseArgs = {
25525
+ after?: InputMaybe<Scalars['String']['input']>;
25526
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
25527
+ first?: InputMaybe<Scalars['Int']['input']>;
25528
+ id: Scalars['ID']['input'];
25529
+ sort?: InputMaybe<GraphStoreAtlasGoalHasFollowerSortInput>;
25530
+ };
25513
25531
  export declare type GraphStoreAtlasGoalHasSubAtlasGoalArgs = {
25514
25532
  after?: InputMaybe<Scalars['String']['input']>;
25515
25533
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -27932,6 +27950,9 @@ export declare type GraphStoreAtiFilterInput = {
27932
27950
  is?: InputMaybe<Array<Scalars['String']['input']>>;
27933
27951
  isNot?: InputMaybe<Array<Scalars['String']['input']>>;
27934
27952
  };
27953
+ export declare type GraphStoreAtlasGoalHasFollowerSortInput = {
27954
+ lastModified?: InputMaybe<GraphStoreSortInput>;
27955
+ };
27935
27956
  export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
27936
27957
  lastModified?: InputMaybe<GraphStoreSortInput>;
27937
27958
  };
@@ -33620,6 +33641,20 @@ export declare type GraphStoreShipit57IssueRecursiveLinksToPageSortInput = {
33620
33641
  export declare type GraphStoreShipit57PullRequestLinksToPageSortInput = {
33621
33642
  lastModified?: InputMaybe<GraphStoreSortInput>;
33622
33643
  };
33644
+ export declare type GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection = HasPageInfo & {
33645
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection';
33646
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseEdge>>>;
33647
+ pageInfo: PageInfo;
33648
+ };
33649
+ export declare type GraphStoreSimplifiedAtlasGoalHasFollowerInverseEdge = {
33650
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasFollowerInverseEdge';
33651
+ createdAt: Scalars['DateTime']['output'];
33652
+ cursor?: Maybe<Scalars['String']['output']>;
33653
+ id: Scalars['ID']['output'];
33654
+ lastUpdated: Scalars['DateTime']['output'];
33655
+ node?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseUnion>;
33656
+ };
33657
+ export declare type GraphStoreSimplifiedAtlasGoalHasFollowerInverseUnion = TownsquareGoal;
33623
33658
  export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection = HasPageInfo & {
33624
33659
  __typename?: 'GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection';
33625
33660
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalEdge>>>;
@@ -42469,7 +42504,7 @@ export declare enum JiraDeploymentsFeaturePrecondition {
42469
42504
  DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
42470
42505
  NotAvailable = "NOT_AVAILABLE"
42471
42506
  }
42472
- export declare type JiraDetailedView = JiraView & Node & {
42507
+ export declare type JiraDetailedView = JiraIssueSearchViewType & JiraView & Node & {
42473
42508
  __typename?: 'JiraDetailedView';
42474
42509
  id: Scalars['ID']['output'];
42475
42510
  issues?: Maybe<JiraIssueConnection>;
@@ -43829,7 +43864,7 @@ export declare type JiraGroupGrantTypeValue = Node & {
43829
43864
  export declare type JiraGroupInput = {
43830
43865
  groupName: Scalars['ID']['input'];
43831
43866
  };
43832
- export declare type JiraGroupedListView = JiraSpreadsheetView & JiraView & Node & {
43867
+ export declare type JiraGroupedListView = JiraIssueSearchViewType & JiraSpreadsheetView & JiraView & Node & {
43833
43868
  __typename?: 'JiraGroupedListView';
43834
43869
  fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
43835
43870
  filterId?: Maybe<Scalars['String']['output']>;
@@ -45165,6 +45200,8 @@ export declare type JiraIssueSearchViewFieldSetsProjectContext = {
45165
45200
  project?: InputMaybe<Scalars['ID']['input']>;
45166
45201
  };
45167
45202
  export declare type JiraIssueSearchViewInput = {
45203
+ context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
45204
+ filterId?: InputMaybe<Scalars['String']['input']>;
45168
45205
  namespace?: InputMaybe<Scalars['String']['input']>;
45169
45206
  viewId?: InputMaybe<Scalars['String']['input']>;
45170
45207
  };
@@ -45175,6 +45212,9 @@ export declare type JiraIssueSearchViewPayload = Payload & {
45175
45212
  view?: Maybe<JiraIssueSearchView>;
45176
45213
  };
45177
45214
  export declare type JiraIssueSearchViewResult = JiraIssueSearchView | QueryError;
45215
+ export declare type JiraIssueSearchViewType = {
45216
+ id: Scalars['ID']['output'];
45217
+ };
45178
45218
  export declare type JiraIssueTransitionComment = {
45179
45219
  __typename?: 'JiraIssueTransitionComment';
45180
45220
  adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
@@ -46127,7 +46167,7 @@ export declare type JiraLinkedIssuesInput = {
46127
46167
  inwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
46128
46168
  outwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
46129
46169
  };
46130
- export declare type JiraListView = JiraSpreadsheetView & JiraView & Node & {
46170
+ export declare type JiraListView = JiraIssueSearchViewType & JiraSpreadsheetView & JiraView & Node & {
46131
46171
  __typename?: 'JiraListView';
46132
46172
  fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
46133
46173
  filterId?: Maybe<Scalars['String']['output']>;
@@ -63853,6 +63893,7 @@ export declare type QueryContentFacetArgs = {
63853
63893
  first?: Scalars['Int']['input'];
63854
63894
  forContentType: Scalars['String']['input'];
63855
63895
  forFields: Array<Scalars['String']['input']>;
63896
+ withFallback?: Scalars['String']['input'];
63856
63897
  withLocales?: Array<Scalars['String']['input']>;
63857
63898
  };
63858
63899
  export declare type QueryCustomerServiceArgs = {