@forge/cli-shared 5.5.2 → 5.5.3-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,18 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 5.5.3-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [32601f4]
8
+ - @forge/manifest@7.8.1-next.0
9
+
10
+ ## 5.5.3-next.0
11
+
12
+ ### Patch Changes
13
+
14
+ - f81ee89: Fix a typo in message.
15
+
3
16
  ## 5.5.2
4
17
 
5
18
  ### Patch Changes
@@ -41797,6 +41797,20 @@ export declare enum JiraDeploymentsFeaturePrecondition {
41797
41797
  DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
41798
41798
  NotAvailable = "NOT_AVAILABLE"
41799
41799
  }
41800
+ export declare type JiraDetailedView = JiraView & Node & {
41801
+ __typename?: 'JiraDetailedView';
41802
+ id: Scalars['ID']['output'];
41803
+ issues?: Maybe<JiraIssueConnection>;
41804
+ };
41805
+ export declare type JiraDetailedViewIssuesArgs = {
41806
+ after?: InputMaybe<Scalars['String']['input']>;
41807
+ before?: InputMaybe<Scalars['String']['input']>;
41808
+ first?: InputMaybe<Scalars['Int']['input']>;
41809
+ issueSearchInput: JiraIssueSearchInput;
41810
+ last?: InputMaybe<Scalars['Int']['input']>;
41811
+ options?: InputMaybe<JiraIssueSearchOptions>;
41812
+ saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
41813
+ };
41800
41814
  export declare type JiraDevInfoConfigError = {
41801
41815
  __typename?: 'JiraDevInfoConfigError';
41802
41816
  dataProviderId?: Maybe<Scalars['String']['output']>;
@@ -43125,6 +43139,34 @@ export declare type JiraGroupGrantTypeValue = Node & {
43125
43139
  export declare type JiraGroupInput = {
43126
43140
  groupName: Scalars['ID']['input'];
43127
43141
  };
43142
+ export declare type JiraGroupedListView = JiraSpreadsheetView & JiraView & Node & {
43143
+ __typename?: 'JiraGroupedListView';
43144
+ fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
43145
+ filterId?: Maybe<Scalars['String']['output']>;
43146
+ groups?: Maybe<JiraSpreadsheetGroupConnection>;
43147
+ hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
43148
+ id: Scalars['ID']['output'];
43149
+ namespace?: Maybe<Scalars['String']['output']>;
43150
+ settings?: Maybe<JiraSpreadsheetViewSettings>;
43151
+ viewId?: Maybe<Scalars['String']['output']>;
43152
+ };
43153
+ export declare type JiraGroupedListViewFieldSetsArgs = {
43154
+ after?: InputMaybe<Scalars['String']['input']>;
43155
+ before?: InputMaybe<Scalars['String']['input']>;
43156
+ filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
43157
+ first?: InputMaybe<Scalars['Int']['input']>;
43158
+ last?: InputMaybe<Scalars['Int']['input']>;
43159
+ };
43160
+ export declare type JiraGroupedListViewGroupsArgs = {
43161
+ after?: InputMaybe<Scalars['String']['input']>;
43162
+ before?: InputMaybe<Scalars['String']['input']>;
43163
+ first?: InputMaybe<Scalars['Int']['input']>;
43164
+ groupBy?: InputMaybe<Scalars['String']['input']>;
43165
+ issueSearchInput: JiraIssueSearchInput;
43166
+ last?: InputMaybe<Scalars['Int']['input']>;
43167
+ options?: InputMaybe<JiraIssueSearchOptions>;
43168
+ saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
43169
+ };
43128
43170
  export declare enum JiraGroupsContext {
43129
43171
  Group = "GROUP",
43130
43172
  User = "USER"
@@ -43347,6 +43389,7 @@ export declare type JiraIssueFieldSetsByIdArgs = {
43347
43389
  export declare type JiraIssueFieldSetsForIssueSearchViewArgs = {
43348
43390
  after?: InputMaybe<Scalars['String']['input']>;
43349
43391
  before?: InputMaybe<Scalars['String']['input']>;
43392
+ context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
43350
43393
  filterId?: InputMaybe<Scalars['String']['input']>;
43351
43394
  first?: InputMaybe<Scalars['Int']['input']>;
43352
43395
  last?: InputMaybe<Scalars['Int']['input']>;
@@ -44340,6 +44383,9 @@ export declare type JiraIssueSearchResultContentIssuesArgs = {
44340
44383
  first?: InputMaybe<Scalars['Int']['input']>;
44341
44384
  last?: InputMaybe<Scalars['Int']['input']>;
44342
44385
  };
44386
+ export declare type JiraIssueSearchStaticViewInput = {
44387
+ isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
44388
+ };
44343
44389
  export declare type JiraIssueSearchStatus = {
44344
44390
  __typename?: 'JiraIssueSearchStatus';
44345
44391
  functions?: Maybe<Array<Maybe<JiraJqlFunctionProcessingStatus>>>;
@@ -45300,6 +45346,34 @@ export declare type JiraLinkedIssuesInput = {
45300
45346
  inwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
45301
45347
  outwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
45302
45348
  };
45349
+ export declare type JiraListView = JiraSpreadsheetView & JiraView & Node & {
45350
+ __typename?: 'JiraListView';
45351
+ fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
45352
+ filterId?: Maybe<Scalars['String']['output']>;
45353
+ hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
45354
+ id: Scalars['ID']['output'];
45355
+ issues?: Maybe<JiraIssueConnection>;
45356
+ namespace?: Maybe<Scalars['String']['output']>;
45357
+ settings?: Maybe<JiraSpreadsheetViewSettings>;
45358
+ viewId?: Maybe<Scalars['String']['output']>;
45359
+ };
45360
+ export declare type JiraListViewFieldSetsArgs = {
45361
+ after?: InputMaybe<Scalars['String']['input']>;
45362
+ before?: InputMaybe<Scalars['String']['input']>;
45363
+ filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
45364
+ first?: InputMaybe<Scalars['Int']['input']>;
45365
+ last?: InputMaybe<Scalars['Int']['input']>;
45366
+ };
45367
+ export declare type JiraListViewIssuesArgs = {
45368
+ after?: InputMaybe<Scalars['String']['input']>;
45369
+ before?: InputMaybe<Scalars['String']['input']>;
45370
+ first?: InputMaybe<Scalars['Int']['input']>;
45371
+ issueSearchInput: JiraIssueSearchInput;
45372
+ last?: InputMaybe<Scalars['Int']['input']>;
45373
+ options?: InputMaybe<JiraIssueSearchOptions>;
45374
+ saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
45375
+ viewConfigInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
45376
+ };
45303
45377
  export declare type JiraLongRunningTaskProgress = {
45304
45378
  __typename?: 'JiraLongRunningTaskProgress';
45305
45379
  description?: Maybe<Scalars['String']['output']>;
@@ -46300,7 +46374,9 @@ export declare type JiraMutationUpdateUrlFieldArgs = {
46300
46374
  };
46301
46375
  export declare type JiraMutationUpdateUserFieldSetPreferencesArgs = {
46302
46376
  cloudId: Scalars['ID']['input'];
46377
+ context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
46303
46378
  fieldSetPreferencesInput: JiraFieldSetPreferencesMutationInput;
46379
+ namespace?: InputMaybe<Scalars['String']['input']>;
46304
46380
  };
46305
46381
  export declare type JiraMutationUpdateUserNavigationConfigurationArgs = {
46306
46382
  input: JiraUpdateUserNavigationConfigurationInput;
@@ -48110,6 +48186,7 @@ export declare type JiraQuery = {
48110
48186
  jiraCalendar?: Maybe<JiraCalendar>;
48111
48187
  jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
48112
48188
  jiraFieldConfigs?: Maybe<JiraFieldConfigConnection>;
48189
+ jiraIssueSearchView?: Maybe<JiraView>;
48113
48190
  jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
48114
48191
  jiraProject?: Maybe<JiraProject>;
48115
48192
  jiraProjectByKey?: Maybe<JiraProject>;
@@ -48356,8 +48433,8 @@ export declare type JiraQueryFavouritesArgs = {
48356
48433
  };
48357
48434
  export declare type JiraQueryFieldSetViewQueryByProjectArgs = {
48358
48435
  cloudId: Scalars['ID']['input'];
48359
- issueTypeId?: InputMaybe<Scalars['String']['input']>;
48360
- projectId?: InputMaybe<Scalars['String']['input']>;
48436
+ issueTypeId?: InputMaybe<Scalars['ID']['input']>;
48437
+ projectId?: InputMaybe<Scalars['ID']['input']>;
48361
48438
  };
48362
48439
  export declare type JiraQueryFieldSetsByIdArgs = {
48363
48440
  after?: InputMaybe<Scalars['String']['input']>;
@@ -48632,6 +48709,13 @@ export declare type JiraQueryJiraFieldConfigsArgs = {
48632
48709
  first?: InputMaybe<Scalars['Int']['input']>;
48633
48710
  last?: InputMaybe<Scalars['Int']['input']>;
48634
48711
  };
48712
+ export declare type JiraQueryJiraIssueSearchViewArgs = {
48713
+ cloudId: Scalars['ID']['input'];
48714
+ filterId?: InputMaybe<Scalars['String']['input']>;
48715
+ isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
48716
+ namespace?: InputMaybe<Scalars['String']['input']>;
48717
+ viewId?: InputMaybe<Scalars['String']['input']>;
48718
+ };
48635
48719
  export declare type JiraQueryJiraJourneyConfigurationArgs = {
48636
48720
  cloudId: Scalars['ID']['input'];
48637
48721
  id: Scalars['ID']['input'];
@@ -51211,6 +51295,79 @@ export declare enum JiraSoftwareSimpleNavigationItemEnum {
51211
51295
  JswShortcuts = "JSW_SHORTCUTS",
51212
51296
  JswTimeline = "JSW_TIMELINE"
51213
51297
  }
51298
+ export declare type JiraSpreadsheetGroup = {
51299
+ __typename?: 'JiraSpreadsheetGroup';
51300
+ fieldId?: Maybe<Scalars['String']['output']>;
51301
+ fieldType?: Maybe<Scalars['String']['output']>;
51302
+ id: Scalars['ID']['output'];
51303
+ issueCount?: Maybe<Scalars['Int']['output']>;
51304
+ issues?: Maybe<JiraIssueConnection>;
51305
+ jql?: Maybe<Scalars['String']['output']>;
51306
+ value?: Maybe<JiraSpreadsheetGroupFieldValue>;
51307
+ };
51308
+ export declare type JiraSpreadsheetGroupIssuesArgs = {
51309
+ after?: InputMaybe<Scalars['String']['input']>;
51310
+ before?: InputMaybe<Scalars['String']['input']>;
51311
+ first?: InputMaybe<Scalars['Int']['input']>;
51312
+ last?: InputMaybe<Scalars['Int']['input']>;
51313
+ };
51314
+ export declare type JiraSpreadsheetGroupByConfig = {
51315
+ __typename?: 'JiraSpreadsheetGroupByConfig';
51316
+ availableGroupByFieldOptions?: Maybe<JiraSpreadsheetGroupByFieldOptionConnection>;
51317
+ groupByField?: Maybe<JiraField>;
51318
+ };
51319
+ export declare type JiraSpreadsheetGroupByConfigAvailableGroupByFieldOptionsArgs = {
51320
+ after?: InputMaybe<Scalars['String']['input']>;
51321
+ before?: InputMaybe<Scalars['String']['input']>;
51322
+ first?: InputMaybe<Scalars['Int']['input']>;
51323
+ last?: InputMaybe<Scalars['Int']['input']>;
51324
+ };
51325
+ export declare type JiraSpreadsheetGroupByFieldOptionConnection = {
51326
+ __typename?: 'JiraSpreadsheetGroupByFieldOptionConnection';
51327
+ edges?: Maybe<Array<Maybe<JiraSpreadsheetGroupByFieldOptionEdge>>>;
51328
+ };
51329
+ export declare type JiraSpreadsheetGroupByFieldOptionEdge = {
51330
+ __typename?: 'JiraSpreadsheetGroupByFieldOptionEdge';
51331
+ cursor: Scalars['String']['output'];
51332
+ node?: Maybe<JiraField>;
51333
+ };
51334
+ export declare type JiraSpreadsheetGroupConnection = {
51335
+ __typename?: 'JiraSpreadsheetGroupConnection';
51336
+ edges?: Maybe<Array<Maybe<JiraSpreadsheetGroupEdge>>>;
51337
+ errors?: Maybe<Array<QueryError>>;
51338
+ firstGroup?: Maybe<JiraSpreadsheetGroup>;
51339
+ pageInfo: PageInfo;
51340
+ totalCount?: Maybe<Scalars['Int']['output']>;
51341
+ };
51342
+ export declare type JiraSpreadsheetGroupEdge = {
51343
+ __typename?: 'JiraSpreadsheetGroupEdge';
51344
+ cursor: Scalars['String']['output'];
51345
+ node?: Maybe<JiraSpreadsheetGroup>;
51346
+ };
51347
+ export declare type JiraSpreadsheetGroupFieldValue = JiraGoal | JiraOption | JiraPriority | JiraStatus | JiraStoryPoint;
51348
+ export declare type JiraSpreadsheetView = {
51349
+ fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
51350
+ filterId?: Maybe<Scalars['String']['output']>;
51351
+ hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
51352
+ id: Scalars['ID']['output'];
51353
+ namespace?: Maybe<Scalars['String']['output']>;
51354
+ settings?: Maybe<JiraSpreadsheetViewSettings>;
51355
+ viewId?: Maybe<Scalars['String']['output']>;
51356
+ };
51357
+ export declare type JiraSpreadsheetViewFieldSetsArgs = {
51358
+ after?: InputMaybe<Scalars['String']['input']>;
51359
+ before?: InputMaybe<Scalars['String']['input']>;
51360
+ filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
51361
+ first?: InputMaybe<Scalars['Int']['input']>;
51362
+ last?: InputMaybe<Scalars['Int']['input']>;
51363
+ };
51364
+ export declare type JiraSpreadsheetViewSettings = {
51365
+ __typename?: 'JiraSpreadsheetViewSettings';
51366
+ groupByConfig?: Maybe<JiraSpreadsheetGroupByConfig>;
51367
+ hideDone?: Maybe<Scalars['Boolean']['output']>;
51368
+ isGroupingEnabled?: Maybe<Scalars['Boolean']['output']>;
51369
+ isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
51370
+ };
51214
51371
  export declare type JiraSprint = Node & {
51215
51372
  __typename?: 'JiraSprint';
51216
51373
  boardId?: Maybe<Scalars['Long']['output']>;
@@ -51415,6 +51572,10 @@ export declare type JiraStatusFieldPayload = Payload & {
51415
51572
  field?: Maybe<JiraStatusField>;
51416
51573
  success: Scalars['Boolean']['output'];
51417
51574
  };
51575
+ export declare type JiraStoryPoint = {
51576
+ __typename?: 'JiraStoryPoint';
51577
+ value: Scalars['Float']['output'];
51578
+ };
51418
51579
  export declare type JiraStoryPointEstimateFieldOperationInput = {
51419
51580
  operation: JiraSingleValueFieldOperations;
51420
51581
  storyPoint?: InputMaybe<Scalars['Float']['input']>;
@@ -53009,6 +53170,9 @@ export declare enum JiraVersionWarningConfigState {
53009
53170
  Enabled = "ENABLED",
53010
53171
  NotApplicable = "NOT_APPLICABLE"
53011
53172
  }
53173
+ export declare type JiraView = {
53174
+ id: Scalars['ID']['output'];
53175
+ };
53012
53176
  export declare type JiraViewScopeInput = {
53013
53177
  ids?: InputMaybe<Array<Scalars['ID']['input']>>;
53014
53178
  projectKeys?: InputMaybe<JiraProjectKeysInput>;
@@ -54497,12 +54661,15 @@ export declare type KnowledgeBaseSource = {
54497
54661
  permissions?: Maybe<KnowledgeBaseSourcePermissions>;
54498
54662
  url: Scalars['String']['output'];
54499
54663
  };
54664
+ export declare type KnowledgeBaseSourcePermissionsArgs = {
54665
+ cloudId: Scalars['ID']['input'];
54666
+ };
54500
54667
  export declare type KnowledgeBaseSourceEdge = {
54501
54668
  __typename?: 'KnowledgeBaseSourceEdge';
54502
54669
  cursor?: Maybe<Scalars['String']['output']>;
54503
54670
  node: KnowledgeBaseSource;
54504
54671
  };
54505
- export declare type KnowledgeBaseSourcePermissions = KnowledgeBaseSpacePermissionResponse | QueryError;
54672
+ export declare type KnowledgeBaseSourcePermissions = KnowledgeBaseSpacePermissionQueryError | KnowledgeBaseSpacePermissionResponse;
54506
54673
  export declare type KnowledgeBaseSources = {
54507
54674
  __typename?: 'KnowledgeBaseSources';
54508
54675
  edge: Array<Maybe<KnowledgeBaseSourceEdge>>;
@@ -54525,7 +54692,13 @@ export declare type KnowledgeBaseSpacePermissionMutationResponse = {
54525
54692
  permission?: Maybe<KnowledgeBaseSpacePermission>;
54526
54693
  success: Scalars['Boolean']['output'];
54527
54694
  };
54528
- export declare type KnowledgeBaseSpacePermissionQueryResponse = KnowledgeBaseSpacePermissionResponse | QueryError;
54695
+ export declare type KnowledgeBaseSpacePermissionQueryError = {
54696
+ __typename?: 'KnowledgeBaseSpacePermissionQueryError';
54697
+ extensions?: Maybe<Array<QueryErrorExtension>>;
54698
+ message: Scalars['String']['output'];
54699
+ spaceAri: Scalars['ID']['output'];
54700
+ };
54701
+ export declare type KnowledgeBaseSpacePermissionQueryResponse = KnowledgeBaseSpacePermissionQueryError | KnowledgeBaseSpacePermissionResponse;
54529
54702
  export declare type KnowledgeBaseSpacePermissionResponse = {
54530
54703
  __typename?: 'KnowledgeBaseSpacePermissionResponse';
54531
54704
  permission: KnowledgeBaseSpacePermission;
@@ -56269,6 +56442,17 @@ export declare enum MarketplaceStoreAtlassianProductHostingType {
56269
56442
  Datacenter = "DATACENTER",
56270
56443
  Server = "SERVER"
56271
56444
  }
56445
+ export declare enum MarketplaceStoreBillingSystem {
56446
+ Ccp = "CCP",
56447
+ Hams = "HAMS"
56448
+ }
56449
+ export declare type MarketplaceStoreBillingSystemInput = {
56450
+ cloudId: Scalars['String']['input'];
56451
+ };
56452
+ export declare type MarketplaceStoreBillingSystemResponse = {
56453
+ __typename?: 'MarketplaceStoreBillingSystemResponse';
56454
+ billingSystem: MarketplaceStoreBillingSystem;
56455
+ };
56272
56456
  export declare type MarketplaceStoreCategoryHeroSection = {
56273
56457
  __typename?: 'MarketplaceStoreCategoryHeroSection';
56274
56458
  backgroundColor: Scalars['String']['output'];
@@ -56602,6 +56786,7 @@ export declare type MarketplaceStorePricingTierMonthly = MarketplaceStorePricing
56602
56786
  export declare type MarketplaceStoreQueryApi = {
56603
56787
  __typename?: 'MarketplaceStoreQueryApi';
56604
56788
  appReviews: MarketplaceStoreReviewsResponse;
56789
+ billingSystem: MarketplaceStoreBillingSystemResponse;
56605
56790
  category: MarketplaceStoreCategoryResponse;
56606
56791
  collection: MarketplaceStoreCollectionResponse;
56607
56792
  currentUser: MarketplaceStoreCurrentUserResponse;
@@ -56618,6 +56803,9 @@ export declare type MarketplaceStoreQueryApiAppReviewsArgs = {
56618
56803
  limit?: InputMaybe<Scalars['Int']['input']>;
56619
56804
  offset?: InputMaybe<Scalars['Int']['input']>;
56620
56805
  };
56806
+ export declare type MarketplaceStoreQueryApiBillingSystemArgs = {
56807
+ billingSystemInput: MarketplaceStoreBillingSystemInput;
56808
+ };
56621
56809
  export declare type MarketplaceStoreQueryApiCategoryArgs = {
56622
56810
  slug: Scalars['String']['input'];
56623
56811
  };
@@ -56957,6 +57145,7 @@ export declare type MercuryFocusArea = Node & {
56957
57145
  targetDate?: Maybe<MercuryTargetDate>;
56958
57146
  teamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
56959
57147
  updatedDate: Scalars['String']['output'];
57148
+ url?: Maybe<Scalars['String']['output']>;
56960
57149
  watchers?: Maybe<MercuryUserConnection>;
56961
57150
  watching: Scalars['Boolean']['output'];
56962
57151
  };
@@ -63097,6 +63286,7 @@ export declare type QueryKnowledgeBaseArgs = {
63097
63286
  cloudId: Scalars['ID']['input'];
63098
63287
  };
63099
63288
  export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
63289
+ cloudId: Scalars['ID']['input'];
63100
63290
  spaceAris: Array<Scalars['ID']['input']>;
63101
63291
  };
63102
63292
  export declare type QueryMarketplaceAppArgs = {