@forge/cli-shared 5.0.1 → 5.0.2-next.0-experimental-a92f9f3

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
+ ## 5.0.2-next.0-experimental-a92f9f3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [19b82e5]
8
+ - @forge/manifest@7.4.1-next.0-experimental-a92f9f3
9
+
10
+ ## 5.0.2-next.0
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [19b82e5]
15
+ - @forge/manifest@7.4.1-next.0
16
+
3
17
  ## 5.0.1
4
18
 
5
19
  ### Patch Changes
@@ -11098,6 +11098,42 @@ export declare enum DevOpsPostIncidentReviewStatus {
11098
11098
  InProgress = "IN_PROGRESS",
11099
11099
  Todo = "TODO"
11100
11100
  }
11101
+ export declare type DevOpsProjectDetails = {
11102
+ __typename?: 'DevOpsProjectDetails';
11103
+ iconUrl?: Maybe<Scalars['URL']['output']>;
11104
+ id: Scalars['ID']['output'];
11105
+ key?: Maybe<Scalars['String']['output']>;
11106
+ lastUpdated: Scalars['DateTime']['output'];
11107
+ name: Scalars['String']['output'];
11108
+ owner?: Maybe<DevOpsProjectOwner>;
11109
+ projectTargetDate?: Maybe<DevOpsProjectTargetDate>;
11110
+ providerId: Scalars['String']['output'];
11111
+ status?: Maybe<DevOpsProjectStatus>;
11112
+ url: Scalars['URL']['output'];
11113
+ };
11114
+ export declare type DevOpsProjectOwner = {
11115
+ __typename?: 'DevOpsProjectOwner';
11116
+ atlassianUserId?: Maybe<Scalars['String']['output']>;
11117
+ };
11118
+ export declare enum DevOpsProjectStatus {
11119
+ Cancelled = "CANCELLED",
11120
+ Completed = "COMPLETED",
11121
+ InProgress = "IN_PROGRESS",
11122
+ Paused = "PAUSED",
11123
+ Pending = "PENDING",
11124
+ Unknown = "UNKNOWN"
11125
+ }
11126
+ export declare type DevOpsProjectTargetDate = {
11127
+ __typename?: 'DevOpsProjectTargetDate';
11128
+ targetDate?: Maybe<Scalars['DateTime']['output']>;
11129
+ targetDateType?: Maybe<DevOpsProjectTargetDateType>;
11130
+ };
11131
+ export declare enum DevOpsProjectTargetDateType {
11132
+ Day = "DAY",
11133
+ Month = "MONTH",
11134
+ Quarter = "QUARTER",
11135
+ Unknown = "UNKNOWN"
11136
+ }
11101
11137
  export declare type DevOpsProvider = {
11102
11138
  __typename?: 'DevOpsProvider';
11103
11139
  links?: Maybe<DevOpsProviderLinks>;
@@ -16885,6 +16921,10 @@ export declare type GraphStore = {
16885
16921
  contentReferencedEntityInverseRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
16886
16922
  contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
16887
16923
  fetchAllRelationships: GraphStoreAllRelationshipsConnection;
16924
+ focusAreaAssociatedToProject?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection>;
16925
+ focusAreaAssociatedToProjectBatch?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectConnection>;
16926
+ focusAreaAssociatedToProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseConnection>;
16927
+ focusAreaAssociatedToProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectConnection>;
16888
16928
  incidentAssociatedPostIncidentReview?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection>;
16889
16929
  incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
16890
16930
  incidentAssociatedPostIncidentReviewInverse?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInverseConnection>;
@@ -17349,6 +17389,26 @@ export declare type GraphStoreFetchAllRelationshipsArgs = {
17349
17389
  id: Scalars['ID']['input'];
17350
17390
  ignoredRelationshipTypes?: InputMaybe<Array<Scalars['String']['input']>>;
17351
17391
  };
17392
+ export declare type GraphStoreFocusAreaAssociatedToProjectArgs = {
17393
+ after?: InputMaybe<Scalars['String']['input']>;
17394
+ first?: InputMaybe<Scalars['Int']['input']>;
17395
+ id: Scalars['ID']['input'];
17396
+ };
17397
+ export declare type GraphStoreFocusAreaAssociatedToProjectBatchArgs = {
17398
+ after?: InputMaybe<Scalars['String']['input']>;
17399
+ first?: InputMaybe<Scalars['Int']['input']>;
17400
+ ids: Array<Scalars['ID']['input']>;
17401
+ };
17402
+ export declare type GraphStoreFocusAreaAssociatedToProjectInverseArgs = {
17403
+ after?: InputMaybe<Scalars['String']['input']>;
17404
+ first?: InputMaybe<Scalars['Int']['input']>;
17405
+ id: Scalars['ID']['input'];
17406
+ };
17407
+ export declare type GraphStoreFocusAreaAssociatedToProjectInverseBatchArgs = {
17408
+ after?: InputMaybe<Scalars['String']['input']>;
17409
+ first?: InputMaybe<Scalars['Int']['input']>;
17410
+ ids: Array<Scalars['ID']['input']>;
17411
+ };
17352
17412
  export declare type GraphStoreIncidentAssociatedPostIncidentReviewArgs = {
17353
17413
  after?: InputMaybe<Scalars['String']['input']>;
17354
17414
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -19078,6 +19138,47 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = Node & {
19078
19138
  id: Scalars['ID']['output'];
19079
19139
  };
19080
19140
  export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluencePage | JiraIssue;
19141
+ export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
19142
+ __typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
19143
+ edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
19144
+ nodes: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectNode>>;
19145
+ pageInfo: PageInfo;
19146
+ };
19147
+ export declare type GraphStoreBatchFocusAreaAssociatedToProjectEdge = {
19148
+ __typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectEdge';
19149
+ node: GraphStoreBatchFocusAreaAssociatedToProjectInnerConnection;
19150
+ };
19151
+ export declare type GraphStoreBatchFocusAreaAssociatedToProjectEndNode = Node & {
19152
+ __typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectEndNode';
19153
+ data?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEndUnion>;
19154
+ id: Scalars['ID']['output'];
19155
+ };
19156
+ export declare type GraphStoreBatchFocusAreaAssociatedToProjectEndUnion = DevOpsProjectDetails;
19157
+ export declare type GraphStoreBatchFocusAreaAssociatedToProjectInnerConnection = {
19158
+ __typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectInnerConnection';
19159
+ edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectInnerEdge>>;
19160
+ nodes: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectNode>>;
19161
+ requestedId: Scalars['ID']['output'];
19162
+ };
19163
+ export declare type GraphStoreBatchFocusAreaAssociatedToProjectInnerEdge = {
19164
+ __typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectInnerEdge';
19165
+ cursor?: Maybe<Scalars['String']['output']>;
19166
+ node: GraphStoreBatchFocusAreaAssociatedToProjectNode;
19167
+ };
19168
+ export declare type GraphStoreBatchFocusAreaAssociatedToProjectNode = Node & {
19169
+ __typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectNode';
19170
+ createdAt: Scalars['DateTime']['output'];
19171
+ from: GraphStoreBatchFocusAreaAssociatedToProjectStartNode;
19172
+ id: Scalars['ID']['output'];
19173
+ lastUpdated: Scalars['DateTime']['output'];
19174
+ to: GraphStoreBatchFocusAreaAssociatedToProjectEndNode;
19175
+ };
19176
+ export declare type GraphStoreBatchFocusAreaAssociatedToProjectStartNode = Node & {
19177
+ __typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectStartNode';
19178
+ data?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectStartUnion>;
19179
+ id: Scalars['ID']['output'];
19180
+ };
19181
+ export declare type GraphStoreBatchFocusAreaAssociatedToProjectStartUnion = MercuryFocusArea;
19081
19182
  export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & {
19082
19183
  __typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection';
19083
19184
  edges: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewEdge>>;
@@ -24256,6 +24357,34 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
24256
24357
  };
24257
24358
  export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluencePage | JiraIssue;
24258
24359
  export declare type GraphStoreSimplifiedContentReferencedEntityUnion = ConfluencePage | JiraIssue;
24360
+ export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection = HasPageInfo & {
24361
+ __typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection';
24362
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectEdge>>>;
24363
+ pageInfo: PageInfo;
24364
+ };
24365
+ export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectEdge = {
24366
+ __typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectEdge';
24367
+ createdAt: Scalars['DateTime']['output'];
24368
+ cursor?: Maybe<Scalars['String']['output']>;
24369
+ id: Scalars['ID']['output'];
24370
+ lastUpdated: Scalars['DateTime']['output'];
24371
+ node?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectUnion>;
24372
+ };
24373
+ export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseConnection = HasPageInfo & {
24374
+ __typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseConnection';
24375
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseEdge>>>;
24376
+ pageInfo: PageInfo;
24377
+ };
24378
+ export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseEdge = {
24379
+ __typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseEdge';
24380
+ createdAt: Scalars['DateTime']['output'];
24381
+ cursor?: Maybe<Scalars['String']['output']>;
24382
+ id: Scalars['ID']['output'];
24383
+ lastUpdated: Scalars['DateTime']['output'];
24384
+ node?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseUnion>;
24385
+ };
24386
+ export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseUnion = MercuryFocusArea;
24387
+ export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectUnion = DevOpsProjectDetails;
24259
24388
  export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
24260
24389
  __typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection';
24261
24390
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge>>>;
@@ -37936,6 +38065,7 @@ export declare type JiraQueryRecentItemsArgs = {
37936
38065
  after?: InputMaybe<Scalars['String']['input']>;
37937
38066
  before?: InputMaybe<Scalars['String']['input']>;
37938
38067
  cloudId: Scalars['ID']['input'];
38068
+ currentURL?: InputMaybe<Scalars['URL']['input']>;
37939
38069
  filter?: InputMaybe<JiraRecentItemsFilter>;
37940
38070
  first?: InputMaybe<Scalars['Int']['input']>;
37941
38071
  last?: InputMaybe<Scalars['Int']['input']>;
@@ -43635,6 +43765,7 @@ export declare type MarketplaceConsolePartnerContactPermissions = {
43635
43765
  atlassianAccountId: Scalars['ID']['output'];
43636
43766
  canManageAppDetails: Scalars['Boolean']['output'];
43637
43767
  canManageAppPricing: Scalars['Boolean']['output'];
43768
+ canManageMarketing: Scalars['Boolean']['output'];
43638
43769
  canManagePartnerDetails: Scalars['Boolean']['output'];
43639
43770
  canManagePartnerPaymentDetails: Scalars['Boolean']['output'];
43640
43771
  canManagePartnerSecurity: Scalars['Boolean']['output'];
@@ -52000,6 +52131,7 @@ export declare type ShepherdWorkspaceUpdateInput = {
52000
52131
  };
52001
52132
  export declare type SignupProvisioningStatus = {
52002
52133
  __typename?: 'SignupProvisioningStatus';
52134
+ cloudId?: Maybe<Scalars['String']['output']>;
52003
52135
  orchestrationId: Scalars['String']['output'];
52004
52136
  provisionComplete: Scalars['Boolean']['output'];
52005
52137
  };
@@ -53396,6 +53528,19 @@ export declare type ToolchainContainerWorkspaceDetails = {
53396
53528
  id: Scalars['ID']['output'];
53397
53529
  name: Scalars['String']['output'];
53398
53530
  };
53531
+ export declare enum ToolchainCreateContainerErrorCode {
53532
+ ProviderContainerAlreadyExists = "PROVIDER_CONTAINER_ALREADY_EXISTS",
53533
+ ProviderContainerCreateForbidden = "PROVIDER_CONTAINER_CREATE_FORBIDDEN",
53534
+ ProviderError = "PROVIDER_ERROR",
53535
+ ProviderInputInvalid = "PROVIDER_INPUT_INVALID",
53536
+ ProviderWorkspaceNotFound = "PROVIDER_WORKSPACE_NOT_FOUND"
53537
+ }
53538
+ export declare type ToolchainCreateContainerErrorExtension = MutationErrorExtension & {
53539
+ __typename?: 'ToolchainCreateContainerErrorExtension';
53540
+ errorCode?: Maybe<ToolchainCreateContainerErrorCode>;
53541
+ errorType?: Maybe<Scalars['String']['output']>;
53542
+ statusCode?: Maybe<Scalars['Int']['output']>;
53543
+ };
53399
53544
  export declare type ToolchainCreateContainerInput = {
53400
53545
  cloudId: Scalars['ID']['input'];
53401
53546
  name: Scalars['String']['input'];
@@ -53692,6 +53837,7 @@ export declare type TownsquareMutationApiUnarchiveGoalArgs = {
53692
53837
  export declare type TownsquareProject = Node & {
53693
53838
  __typename?: 'TownsquareProject';
53694
53839
  archived: Scalars['Boolean']['output'];
53840
+ description?: Maybe<TownsquareProjectDescription>;
53695
53841
  dueDate?: Maybe<TownsquareTargetDate>;
53696
53842
  iconData?: Maybe<Scalars['String']['output']>;
53697
53843
  id: Scalars['ID']['output'];
@@ -53709,6 +53855,12 @@ export declare type TownsquareProjectConnection = {
53709
53855
  edges?: Maybe<Array<Maybe<TownsquareProjectEdge>>>;
53710
53856
  pageInfo: PageInfo;
53711
53857
  };
53858
+ export declare type TownsquareProjectDescription = {
53859
+ __typename?: 'TownsquareProjectDescription';
53860
+ measurement?: Maybe<Scalars['String']['output']>;
53861
+ what?: Maybe<Scalars['String']['output']>;
53862
+ why?: Maybe<Scalars['String']['output']>;
53863
+ };
53712
53864
  export declare type TownsquareProjectEdge = {
53713
53865
  __typename?: 'TownsquareProjectEdge';
53714
53866
  cursor: Scalars['String']['output'];