@forge/cli-shared 6.8.1-next.0 → 6.8.1-next.1

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.8.1-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [0881ee9]
8
+ - @forge/manifest@9.1.0-next.1
9
+
3
10
  ## 6.8.1-next.0
4
11
 
5
12
  ### Patch Changes
@@ -15966,7 +15966,7 @@ export declare type ConfluencePdfExportTask = {
15966
15966
  progressPercent?: Maybe<Scalars['Int']['output']>;
15967
15967
  secondsElapsed?: Maybe<Scalars['Long']['output']>;
15968
15968
  };
15969
- export declare type ConfluencePerson = Person & {
15969
+ export declare type ConfluencePerson = {
15970
15970
  __typename?: 'ConfluencePerson';
15971
15971
  accountId?: Maybe<Scalars['String']['output']>;
15972
15972
  accountType?: Maybe<Scalars['String']['output']>;
@@ -31206,6 +31206,8 @@ export declare type GraphStore = {
31206
31206
  branchInRepoInverse?: Maybe<GraphStoreSimplifiedBranchInRepoInverseConnection>;
31207
31207
  calendarHasLinkedDocument?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentConnection>;
31208
31208
  calendarHasLinkedDocumentInverse?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection>;
31209
+ commitBelongsToPullRequest?: Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestConnection>;
31210
+ commitBelongsToPullRequestInverse?: Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestInverseConnection>;
31209
31211
  commitInRepo?: Maybe<GraphStoreSimplifiedCommitInRepoConnection>;
31210
31212
  commitInRepoInverse?: Maybe<GraphStoreSimplifiedCommitInRepoInverseConnection>;
31211
31213
  componentAssociatedDocument?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentConnection>;
@@ -32136,6 +32138,20 @@ export declare type GraphStoreCalendarHasLinkedDocumentInverseArgs = {
32136
32138
  id: Scalars['ID']['input'];
32137
32139
  sort?: InputMaybe<GraphStoreCalendarHasLinkedDocumentSortInput>;
32138
32140
  };
32141
+ export declare type GraphStoreCommitBelongsToPullRequestArgs = {
32142
+ after?: InputMaybe<Scalars['String']['input']>;
32143
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32144
+ first?: InputMaybe<Scalars['Int']['input']>;
32145
+ id: Scalars['ID']['input'];
32146
+ sort?: InputMaybe<GraphStoreCommitBelongsToPullRequestSortInput>;
32147
+ };
32148
+ export declare type GraphStoreCommitBelongsToPullRequestInverseArgs = {
32149
+ after?: InputMaybe<Scalars['String']['input']>;
32150
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32151
+ first?: InputMaybe<Scalars['Int']['input']>;
32152
+ id: Scalars['ID']['input'];
32153
+ sort?: InputMaybe<GraphStoreCommitBelongsToPullRequestSortInput>;
32154
+ };
32139
32155
  export declare type GraphStoreCommitInRepoArgs = {
32140
32156
  after?: InputMaybe<Scalars['String']['input']>;
32141
32157
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -37273,6 +37289,9 @@ export declare type GraphStoreBranchInRepoSortInput = {
37273
37289
  export declare type GraphStoreCalendarHasLinkedDocumentSortInput = {
37274
37290
  lastModified?: InputMaybe<GraphStoreSortInput>;
37275
37291
  };
37292
+ export declare type GraphStoreCommitBelongsToPullRequestSortInput = {
37293
+ lastModified?: InputMaybe<GraphStoreSortInput>;
37294
+ };
37276
37295
  export declare type GraphStoreCommitInRepoSortInput = {
37277
37296
  lastModified?: InputMaybe<GraphStoreSortInput>;
37278
37297
  };
@@ -43384,6 +43403,34 @@ export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge = {
43384
43403
  };
43385
43404
  export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseUnion = ExternalCalendarEvent;
43386
43405
  export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentUnion = DevOpsDocument | ExternalDocument;
43406
+ export declare type GraphStoreSimplifiedCommitBelongsToPullRequestConnection = HasPageInfo & {
43407
+ __typename?: 'GraphStoreSimplifiedCommitBelongsToPullRequestConnection';
43408
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestEdge>>>;
43409
+ pageInfo: PageInfo;
43410
+ };
43411
+ export declare type GraphStoreSimplifiedCommitBelongsToPullRequestEdge = {
43412
+ __typename?: 'GraphStoreSimplifiedCommitBelongsToPullRequestEdge';
43413
+ createdAt: Scalars['DateTime']['output'];
43414
+ cursor?: Maybe<Scalars['String']['output']>;
43415
+ id: Scalars['ID']['output'];
43416
+ lastUpdated: Scalars['DateTime']['output'];
43417
+ node?: Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestUnion>;
43418
+ };
43419
+ export declare type GraphStoreSimplifiedCommitBelongsToPullRequestInverseConnection = HasPageInfo & {
43420
+ __typename?: 'GraphStoreSimplifiedCommitBelongsToPullRequestInverseConnection';
43421
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestInverseEdge>>>;
43422
+ pageInfo: PageInfo;
43423
+ };
43424
+ export declare type GraphStoreSimplifiedCommitBelongsToPullRequestInverseEdge = {
43425
+ __typename?: 'GraphStoreSimplifiedCommitBelongsToPullRequestInverseEdge';
43426
+ createdAt: Scalars['DateTime']['output'];
43427
+ cursor?: Maybe<Scalars['String']['output']>;
43428
+ id: Scalars['ID']['output'];
43429
+ lastUpdated: Scalars['DateTime']['output'];
43430
+ node?: Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestInverseUnion>;
43431
+ };
43432
+ export declare type GraphStoreSimplifiedCommitBelongsToPullRequestInverseUnion = ExternalCommit;
43433
+ export declare type GraphStoreSimplifiedCommitBelongsToPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
43387
43434
  export declare type GraphStoreSimplifiedCommitInRepoConnection = HasPageInfo & {
43388
43435
  __typename?: 'GraphStoreSimplifiedCommitInRepoConnection';
43389
43436
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCommitInRepoEdge>>>;
@@ -50700,6 +50747,10 @@ export declare enum GrowthUnifiedProfileCompanyType {
50700
50747
  Private = "PRIVATE",
50701
50748
  Public = "PUBLIC"
50702
50749
  }
50750
+ export declare type GrowthUnifiedProfileConfluenceActivityContext = {
50751
+ __typename?: 'GrowthUnifiedProfileConfluenceActivityContext';
50752
+ r28PageDwells?: Maybe<Scalars['Int']['output']>;
50753
+ };
50703
50754
  export declare type GrowthUnifiedProfileConfluenceOnboardingContext = {
50704
50755
  __typename?: 'GrowthUnifiedProfileConfluenceOnboardingContext';
50705
50756
  jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
@@ -50820,11 +50871,13 @@ export declare type GrowthUnifiedProfileLinkedEntities = {
50820
50871
  };
50821
50872
  export declare type GrowthUnifiedProfileMarketingContext = {
50822
50873
  __typename?: 'GrowthUnifiedProfileMarketingContext';
50874
+ domain?: Maybe<Scalars['String']['output']>;
50823
50875
  lastUpdated?: Maybe<Scalars['String']['output']>;
50824
50876
  sessionId?: Maybe<Scalars['String']['output']>;
50825
50877
  utm?: Maybe<GrowthUnifiedProfileMarketingUtm>;
50826
50878
  };
50827
50879
  export declare type GrowthUnifiedProfileMarketingContextInput = {
50880
+ domain?: InputMaybe<Scalars['String']['input']>;
50828
50881
  sessionId?: InputMaybe<Scalars['String']['input']>;
50829
50882
  utm?: InputMaybe<GrowthUnifiedProfileMarketingUtmInput>;
50830
50883
  };
@@ -50918,6 +50971,7 @@ export declare type GrowthUnifiedProfileResult = {
50918
50971
  paidChannelContext?: Maybe<GrowthUnifiedProfilePaidChannelContextByProduct>;
50919
50972
  seoContext?: Maybe<GrowthUnifiedProfileSeoContext>;
50920
50973
  sites?: Maybe<Array<Maybe<GrowthUnifiedProfileSiteDetails>>>;
50974
+ userActivityContext?: Maybe<GrowthUnifiedProfileUserActivityContext>;
50921
50975
  userFootprints?: Maybe<GrowthUnifiedProfileUserFootprints>;
50922
50976
  userProfile?: Maybe<GrowthUnifiedProfileUserProfile>;
50923
50977
  };
@@ -50952,6 +51006,15 @@ export declare enum GrowthUnifiedProfileTeamType {
50952
51006
  SoftwareDevelopment = "SOFTWARE_DEVELOPMENT",
50953
51007
  SoftwareEngineering = "SOFTWARE_ENGINEERING"
50954
51008
  }
51009
+ export declare type GrowthUnifiedProfileUserActivityContext = {
51010
+ __typename?: 'GrowthUnifiedProfileUserActivityContext';
51011
+ sites?: Maybe<Array<Maybe<GrowthUnifiedProfileUserActivitySiteDetails>>>;
51012
+ };
51013
+ export declare type GrowthUnifiedProfileUserActivitySiteDetails = {
51014
+ __typename?: 'GrowthUnifiedProfileUserActivitySiteDetails';
51015
+ cloudId?: Maybe<Scalars['String']['output']>;
51016
+ confluence?: Maybe<GrowthUnifiedProfileConfluenceActivityContext>;
51017
+ };
50955
51018
  export declare type GrowthUnifiedProfileUserFootprints = {
50956
51019
  __typename?: 'GrowthUnifiedProfileUserFootprints';
50957
51020
  hasAtlassianAccount?: Maybe<Scalars['Boolean']['output']>;
@@ -68940,6 +69003,7 @@ export declare type JiraSubscription = {
68940
69003
  onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
68941
69004
  onIssueExported?: Maybe<JiraIssueExportEvent>;
68942
69005
  onIssueUpdatedByProject?: Maybe<JiraIssue>;
69006
+ onIssueUpdatedByProjectNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
68943
69007
  onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
68944
69008
  onJwmFieldMutation?: Maybe<JiraJwmField>;
68945
69009
  onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
@@ -69003,6 +69067,10 @@ export declare type JiraSubscriptionOnIssueUpdatedByProjectArgs = {
69003
69067
  cloudId: Scalars['ID']['input'];
69004
69068
  projectId: Scalars['String']['input'];
69005
69069
  };
69070
+ export declare type JiraSubscriptionOnIssueUpdatedByProjectNoEnrichmentArgs = {
69071
+ cloudId: Scalars['ID']['input'];
69072
+ projectId: Scalars['String']['input'];
69073
+ };
69006
69074
  export declare type JiraSubscriptionOnJirtIssueSubscriptionArgs = {
69007
69075
  atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
69008
69076
  cloudId: Scalars['ID']['input'];
@@ -70079,6 +70147,7 @@ export declare type JiraUserPreferencesMutation = {
70079
70147
  __typename?: 'JiraUserPreferencesMutation';
70080
70148
  dismissDateFieldAssociationMessageByIssueKey?: Maybe<JiraDateFieldAssociationMessageMutationPayload>;
70081
70149
  saveRequestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
70150
+ setIsIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
70082
70151
  setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
70083
70152
  setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
70084
70153
  setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
@@ -70094,6 +70163,9 @@ export declare type JiraUserPreferencesMutationSaveRequestTypeTableViewSettingsA
70094
70163
  projectKey: Scalars['String']['input'];
70095
70164
  viewSettings: Scalars['String']['input'];
70096
70165
  };
70166
+ export declare type JiraUserPreferencesMutationSetIsIssueViewHideDoneChildIssuesFilterEnabledArgs = {
70167
+ isHideDoneEnabled: Scalars['Boolean']['input'];
70168
+ };
70097
70169
  export declare type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
70098
70170
  searchLayout?: InputMaybe<JiraIssueNavigatorSearchLayout>;
70099
70171
  };
@@ -75418,6 +75490,10 @@ export declare type MarketplaceStoreOrgDetails = MarketplaceStoreMultiInstanceDe
75418
75490
  multiInstanceEntitlementId?: Maybe<Scalars['String']['output']>;
75419
75491
  status?: Maybe<Scalars['String']['output']>;
75420
75492
  };
75493
+ export declare type MarketplaceStoreOrgIdResponse = {
75494
+ __typename?: 'MarketplaceStoreOrgIdResponse';
75495
+ orgId: Scalars['String']['output'];
75496
+ };
75421
75497
  export declare type MarketplaceStoreOrgMultiInstanceEntitlement = {
75422
75498
  __typename?: 'MarketplaceStoreOrgMultiInstanceEntitlement';
75423
75499
  cloudId: Scalars['String']['output'];
@@ -75583,6 +75659,7 @@ export declare type MarketplaceStoreQueryApi = {
75583
75659
  multiInstanceEntitlementForApp: MarketplaceStoreMultiInstanceEntitlementForAppResponse;
75584
75660
  multiInstanceEntitlementsForUser: MarketplaceStoreMultiInstanceEntitlementsForUserResponse;
75585
75661
  myReview: MarketplaceStoreCurrentUserReviewResponse;
75662
+ orgId: MarketplaceStoreOrgIdResponse;
75586
75663
  partner: MarketplaceStorePartnerResponse;
75587
75664
  };
75588
75665
  export declare type MarketplaceStoreQueryApiAppReviewsByAppIdArgs = {
@@ -75642,6 +75719,9 @@ export declare type MarketplaceStoreQueryApiMultiInstanceEntitlementsForUserArgs
75642
75719
  export declare type MarketplaceStoreQueryApiMyReviewArgs = {
75643
75720
  appKey: Scalars['String']['input'];
75644
75721
  };
75722
+ export declare type MarketplaceStoreQueryApiOrgIdArgs = {
75723
+ cloudId: Scalars['String']['input'];
75724
+ };
75645
75725
  export declare type MarketplaceStoreQueryApiPartnerArgs = {
75646
75726
  developerId?: InputMaybe<Scalars['ID']['input']>;
75647
75727
  vendorId: Scalars['ID']['input'];
@@ -76935,7 +77015,7 @@ export declare type MercuryProposeChangesInput = {
76935
77015
  createFocusAreas?: InputMaybe<Array<MercuryCreateFocusAreaChangeInput>>;
76936
77016
  moveFunds?: InputMaybe<Array<MercuryMoveFundsChangeInput>>;
76937
77017
  movePositions?: InputMaybe<Array<MercuryMovePositionsChangeInput>>;
76938
- positionAllocations: Array<MercuryPositionAllocationChangeInput>;
77018
+ positionAllocations?: InputMaybe<Array<MercuryPositionAllocationChangeInput>>;
76939
77019
  requestFunds?: InputMaybe<Array<MercuryRequestFundsChangeInput>>;
76940
77020
  requestPositions?: InputMaybe<Array<MercuryRequestPositionsChangeInput>>;
76941
77021
  };
@@ -78459,6 +78539,7 @@ export declare type Mutation = {
78459
78539
  publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
78460
78540
  publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
78461
78541
  publishReleaseNote: ContentPlatformReleaseNote;
78542
+ radar_createCustomField?: Maybe<RadarMutationResponse>;
78462
78543
  radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
78463
78544
  radar_deleteRoleAssignment?: Maybe<RadarMutationResponse>;
78464
78545
  radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
@@ -79886,6 +79967,10 @@ export declare type MutationPublicLinkSpacesActionArgs = {
79886
79967
  export declare type MutationPublishReleaseNoteArgs = {
79887
79968
  id: Scalars['String']['input'];
79888
79969
  };
79970
+ export declare type MutationRadar_CreateCustomFieldArgs = {
79971
+ cloudId: Scalars['ID']['input'];
79972
+ input: RadarCustomFieldInput;
79973
+ };
79889
79974
  export declare type MutationRadar_CreateRoleAssignmentArgs = {
79890
79975
  cloudId: Scalars['ID']['input'];
79891
79976
  input: RadarRoleAssignmentRequest;
@@ -86577,6 +86662,14 @@ export declare type RadarConnection = {
86577
86662
  pageInfo: PageInfo;
86578
86663
  totalCount: Scalars['Int']['output'];
86579
86664
  };
86665
+ export declare type RadarCustomFieldInput = {
86666
+ displayName: Scalars['String']['input'];
86667
+ entity: RadarEntityType;
86668
+ relativeId: Scalars['String']['input'];
86669
+ sensitivityLevel: RadarSensitivityLevel;
86670
+ sourceField: Scalars['String']['input'];
86671
+ type: RadarFieldType;
86672
+ };
86580
86673
  export declare type RadarDateFieldValue = {
86581
86674
  __typename?: 'RadarDateFieldValue';
86582
86675
  isHidden?: Maybe<Scalars['Boolean']['output']>;
@@ -86776,8 +86869,8 @@ export declare type RadarPermissions = {
86776
86869
  principalsByResourceRoles?: Maybe<Array<RadarPrincipalByResourceRole>>;
86777
86870
  };
86778
86871
  export declare type RadarPermissionsInput = {
86779
- canManagersAllocate: Scalars['Boolean']['input'];
86780
- canManagersViewSensitiveFields: Scalars['Boolean']['input'];
86872
+ canManagersAllocate?: InputMaybe<Scalars['Boolean']['input']>;
86873
+ canManagersViewSensitiveFields?: InputMaybe<Scalars['Boolean']['input']>;
86781
86874
  };
86782
86875
  export declare type RadarPosition = Node & RadarEntity & {
86783
86876
  __typename?: 'RadarPosition';
@@ -89845,6 +89938,7 @@ export declare type ShepherdAlert = Node & {
89845
89938
  linkedResources?: Maybe<Array<Maybe<ShepherdLinkedResource>>>;
89846
89939
  orgId?: Maybe<Scalars['ID']['output']>;
89847
89940
  product: ShepherdAtlassianProduct;
89941
+ replacementAlertId?: Maybe<Scalars['ID']['output']>;
89848
89942
  status: ShepherdAlertStatus;
89849
89943
  statusUpdatedOn?: Maybe<Scalars['DateTime']['output']>;
89850
89944
  supportingData?: Maybe<ShepherdAlertSupportingData>;