@forge/cli-shared 5.5.2 → 5.5.3-next.0

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,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 5.5.3-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - f81ee89: Fix a typo in message.
8
+
3
9
  ## 5.5.2
4
10
 
5
11
  ### 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"
@@ -44340,6 +44382,9 @@ export declare type JiraIssueSearchResultContentIssuesArgs = {
44340
44382
  first?: InputMaybe<Scalars['Int']['input']>;
44341
44383
  last?: InputMaybe<Scalars['Int']['input']>;
44342
44384
  };
44385
+ export declare type JiraIssueSearchStaticViewInput = {
44386
+ isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
44387
+ };
44343
44388
  export declare type JiraIssueSearchStatus = {
44344
44389
  __typename?: 'JiraIssueSearchStatus';
44345
44390
  functions?: Maybe<Array<Maybe<JiraJqlFunctionProcessingStatus>>>;
@@ -45300,6 +45345,34 @@ export declare type JiraLinkedIssuesInput = {
45300
45345
  inwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
45301
45346
  outwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
45302
45347
  };
45348
+ export declare type JiraListView = JiraSpreadsheetView & JiraView & Node & {
45349
+ __typename?: 'JiraListView';
45350
+ fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
45351
+ filterId?: Maybe<Scalars['String']['output']>;
45352
+ hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
45353
+ id: Scalars['ID']['output'];
45354
+ issues?: Maybe<JiraIssueConnection>;
45355
+ namespace?: Maybe<Scalars['String']['output']>;
45356
+ settings?: Maybe<JiraSpreadsheetViewSettings>;
45357
+ viewId?: Maybe<Scalars['String']['output']>;
45358
+ };
45359
+ export declare type JiraListViewFieldSetsArgs = {
45360
+ after?: InputMaybe<Scalars['String']['input']>;
45361
+ before?: InputMaybe<Scalars['String']['input']>;
45362
+ filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
45363
+ first?: InputMaybe<Scalars['Int']['input']>;
45364
+ last?: InputMaybe<Scalars['Int']['input']>;
45365
+ };
45366
+ export declare type JiraListViewIssuesArgs = {
45367
+ after?: InputMaybe<Scalars['String']['input']>;
45368
+ before?: InputMaybe<Scalars['String']['input']>;
45369
+ first?: InputMaybe<Scalars['Int']['input']>;
45370
+ issueSearchInput: JiraIssueSearchInput;
45371
+ last?: InputMaybe<Scalars['Int']['input']>;
45372
+ options?: InputMaybe<JiraIssueSearchOptions>;
45373
+ saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
45374
+ viewConfigInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
45375
+ };
45303
45376
  export declare type JiraLongRunningTaskProgress = {
45304
45377
  __typename?: 'JiraLongRunningTaskProgress';
45305
45378
  description?: Maybe<Scalars['String']['output']>;
@@ -46300,7 +46373,9 @@ export declare type JiraMutationUpdateUrlFieldArgs = {
46300
46373
  };
46301
46374
  export declare type JiraMutationUpdateUserFieldSetPreferencesArgs = {
46302
46375
  cloudId: Scalars['ID']['input'];
46376
+ context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
46303
46377
  fieldSetPreferencesInput: JiraFieldSetPreferencesMutationInput;
46378
+ namespace?: InputMaybe<Scalars['String']['input']>;
46304
46379
  };
46305
46380
  export declare type JiraMutationUpdateUserNavigationConfigurationArgs = {
46306
46381
  input: JiraUpdateUserNavigationConfigurationInput;
@@ -48110,6 +48185,7 @@ export declare type JiraQuery = {
48110
48185
  jiraCalendar?: Maybe<JiraCalendar>;
48111
48186
  jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
48112
48187
  jiraFieldConfigs?: Maybe<JiraFieldConfigConnection>;
48188
+ jiraIssueSearchView?: Maybe<JiraView>;
48113
48189
  jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
48114
48190
  jiraProject?: Maybe<JiraProject>;
48115
48191
  jiraProjectByKey?: Maybe<JiraProject>;
@@ -48356,8 +48432,8 @@ export declare type JiraQueryFavouritesArgs = {
48356
48432
  };
48357
48433
  export declare type JiraQueryFieldSetViewQueryByProjectArgs = {
48358
48434
  cloudId: Scalars['ID']['input'];
48359
- issueTypeId?: InputMaybe<Scalars['String']['input']>;
48360
- projectId?: InputMaybe<Scalars['String']['input']>;
48435
+ issueTypeId?: InputMaybe<Scalars['ID']['input']>;
48436
+ projectId?: InputMaybe<Scalars['ID']['input']>;
48361
48437
  };
48362
48438
  export declare type JiraQueryFieldSetsByIdArgs = {
48363
48439
  after?: InputMaybe<Scalars['String']['input']>;
@@ -48632,6 +48708,13 @@ export declare type JiraQueryJiraFieldConfigsArgs = {
48632
48708
  first?: InputMaybe<Scalars['Int']['input']>;
48633
48709
  last?: InputMaybe<Scalars['Int']['input']>;
48634
48710
  };
48711
+ export declare type JiraQueryJiraIssueSearchViewArgs = {
48712
+ cloudId: Scalars['ID']['input'];
48713
+ filterId?: InputMaybe<Scalars['String']['input']>;
48714
+ isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
48715
+ namespace?: InputMaybe<Scalars['String']['input']>;
48716
+ viewId?: InputMaybe<Scalars['String']['input']>;
48717
+ };
48635
48718
  export declare type JiraQueryJiraJourneyConfigurationArgs = {
48636
48719
  cloudId: Scalars['ID']['input'];
48637
48720
  id: Scalars['ID']['input'];
@@ -51211,6 +51294,79 @@ export declare enum JiraSoftwareSimpleNavigationItemEnum {
51211
51294
  JswShortcuts = "JSW_SHORTCUTS",
51212
51295
  JswTimeline = "JSW_TIMELINE"
51213
51296
  }
51297
+ export declare type JiraSpreadsheetGroup = {
51298
+ __typename?: 'JiraSpreadsheetGroup';
51299
+ fieldId?: Maybe<Scalars['String']['output']>;
51300
+ fieldType?: Maybe<Scalars['String']['output']>;
51301
+ id: Scalars['ID']['output'];
51302
+ issueCount?: Maybe<Scalars['Int']['output']>;
51303
+ issues?: Maybe<JiraIssueConnection>;
51304
+ jql?: Maybe<Scalars['String']['output']>;
51305
+ value?: Maybe<JiraSpreadsheetGroupFieldValue>;
51306
+ };
51307
+ export declare type JiraSpreadsheetGroupIssuesArgs = {
51308
+ after?: InputMaybe<Scalars['String']['input']>;
51309
+ before?: InputMaybe<Scalars['String']['input']>;
51310
+ first?: InputMaybe<Scalars['Int']['input']>;
51311
+ last?: InputMaybe<Scalars['Int']['input']>;
51312
+ };
51313
+ export declare type JiraSpreadsheetGroupByConfig = {
51314
+ __typename?: 'JiraSpreadsheetGroupByConfig';
51315
+ availableGroupByFieldOptions?: Maybe<JiraSpreadsheetGroupByFieldOptionConnection>;
51316
+ groupByField?: Maybe<JiraField>;
51317
+ };
51318
+ export declare type JiraSpreadsheetGroupByConfigAvailableGroupByFieldOptionsArgs = {
51319
+ after?: InputMaybe<Scalars['String']['input']>;
51320
+ before?: InputMaybe<Scalars['String']['input']>;
51321
+ first?: InputMaybe<Scalars['Int']['input']>;
51322
+ last?: InputMaybe<Scalars['Int']['input']>;
51323
+ };
51324
+ export declare type JiraSpreadsheetGroupByFieldOptionConnection = {
51325
+ __typename?: 'JiraSpreadsheetGroupByFieldOptionConnection';
51326
+ edges?: Maybe<Array<Maybe<JiraSpreadsheetGroupByFieldOptionEdge>>>;
51327
+ };
51328
+ export declare type JiraSpreadsheetGroupByFieldOptionEdge = {
51329
+ __typename?: 'JiraSpreadsheetGroupByFieldOptionEdge';
51330
+ cursor: Scalars['String']['output'];
51331
+ node?: Maybe<JiraField>;
51332
+ };
51333
+ export declare type JiraSpreadsheetGroupConnection = {
51334
+ __typename?: 'JiraSpreadsheetGroupConnection';
51335
+ edges?: Maybe<Array<Maybe<JiraSpreadsheetGroupEdge>>>;
51336
+ errors?: Maybe<Array<QueryError>>;
51337
+ firstGroup?: Maybe<JiraSpreadsheetGroup>;
51338
+ pageInfo: PageInfo;
51339
+ totalCount?: Maybe<Scalars['Int']['output']>;
51340
+ };
51341
+ export declare type JiraSpreadsheetGroupEdge = {
51342
+ __typename?: 'JiraSpreadsheetGroupEdge';
51343
+ cursor: Scalars['String']['output'];
51344
+ node?: Maybe<JiraSpreadsheetGroup>;
51345
+ };
51346
+ export declare type JiraSpreadsheetGroupFieldValue = JiraGoal | JiraOption | JiraPriority | JiraStatus | JiraStoryPoint;
51347
+ export declare type JiraSpreadsheetView = {
51348
+ fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
51349
+ filterId?: Maybe<Scalars['String']['output']>;
51350
+ hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
51351
+ id: Scalars['ID']['output'];
51352
+ namespace?: Maybe<Scalars['String']['output']>;
51353
+ settings?: Maybe<JiraSpreadsheetViewSettings>;
51354
+ viewId?: Maybe<Scalars['String']['output']>;
51355
+ };
51356
+ export declare type JiraSpreadsheetViewFieldSetsArgs = {
51357
+ after?: InputMaybe<Scalars['String']['input']>;
51358
+ before?: InputMaybe<Scalars['String']['input']>;
51359
+ filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
51360
+ first?: InputMaybe<Scalars['Int']['input']>;
51361
+ last?: InputMaybe<Scalars['Int']['input']>;
51362
+ };
51363
+ export declare type JiraSpreadsheetViewSettings = {
51364
+ __typename?: 'JiraSpreadsheetViewSettings';
51365
+ groupByConfig?: Maybe<JiraSpreadsheetGroupByConfig>;
51366
+ hideDone?: Maybe<Scalars['Boolean']['output']>;
51367
+ isGroupingEnabled?: Maybe<Scalars['Boolean']['output']>;
51368
+ isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
51369
+ };
51214
51370
  export declare type JiraSprint = Node & {
51215
51371
  __typename?: 'JiraSprint';
51216
51372
  boardId?: Maybe<Scalars['Long']['output']>;
@@ -51415,6 +51571,10 @@ export declare type JiraStatusFieldPayload = Payload & {
51415
51571
  field?: Maybe<JiraStatusField>;
51416
51572
  success: Scalars['Boolean']['output'];
51417
51573
  };
51574
+ export declare type JiraStoryPoint = {
51575
+ __typename?: 'JiraStoryPoint';
51576
+ value: Scalars['Float']['output'];
51577
+ };
51418
51578
  export declare type JiraStoryPointEstimateFieldOperationInput = {
51419
51579
  operation: JiraSingleValueFieldOperations;
51420
51580
  storyPoint?: InputMaybe<Scalars['Float']['input']>;
@@ -53009,6 +53169,9 @@ export declare enum JiraVersionWarningConfigState {
53009
53169
  Enabled = "ENABLED",
53010
53170
  NotApplicable = "NOT_APPLICABLE"
53011
53171
  }
53172
+ export declare type JiraView = {
53173
+ id: Scalars['ID']['output'];
53174
+ };
53012
53175
  export declare type JiraViewScopeInput = {
53013
53176
  ids?: InputMaybe<Array<Scalars['ID']['input']>>;
53014
53177
  projectKeys?: InputMaybe<JiraProjectKeysInput>;
@@ -54497,6 +54660,9 @@ export declare type KnowledgeBaseSource = {
54497
54660
  permissions?: Maybe<KnowledgeBaseSourcePermissions>;
54498
54661
  url: Scalars['String']['output'];
54499
54662
  };
54663
+ export declare type KnowledgeBaseSourcePermissionsArgs = {
54664
+ cloudId: Scalars['ID']['input'];
54665
+ };
54500
54666
  export declare type KnowledgeBaseSourceEdge = {
54501
54667
  __typename?: 'KnowledgeBaseSourceEdge';
54502
54668
  cursor?: Maybe<Scalars['String']['output']>;
@@ -56269,6 +56435,17 @@ export declare enum MarketplaceStoreAtlassianProductHostingType {
56269
56435
  Datacenter = "DATACENTER",
56270
56436
  Server = "SERVER"
56271
56437
  }
56438
+ export declare enum MarketplaceStoreBillingSystem {
56439
+ Ccp = "CCP",
56440
+ Hams = "HAMS"
56441
+ }
56442
+ export declare type MarketplaceStoreBillingSystemInput = {
56443
+ cloudId: Scalars['String']['input'];
56444
+ };
56445
+ export declare type MarketplaceStoreBillingSystemResponse = {
56446
+ __typename?: 'MarketplaceStoreBillingSystemResponse';
56447
+ billingSystem: MarketplaceStoreBillingSystem;
56448
+ };
56272
56449
  export declare type MarketplaceStoreCategoryHeroSection = {
56273
56450
  __typename?: 'MarketplaceStoreCategoryHeroSection';
56274
56451
  backgroundColor: Scalars['String']['output'];
@@ -56602,6 +56779,7 @@ export declare type MarketplaceStorePricingTierMonthly = MarketplaceStorePricing
56602
56779
  export declare type MarketplaceStoreQueryApi = {
56603
56780
  __typename?: 'MarketplaceStoreQueryApi';
56604
56781
  appReviews: MarketplaceStoreReviewsResponse;
56782
+ billingSystem: MarketplaceStoreBillingSystemResponse;
56605
56783
  category: MarketplaceStoreCategoryResponse;
56606
56784
  collection: MarketplaceStoreCollectionResponse;
56607
56785
  currentUser: MarketplaceStoreCurrentUserResponse;
@@ -56618,6 +56796,9 @@ export declare type MarketplaceStoreQueryApiAppReviewsArgs = {
56618
56796
  limit?: InputMaybe<Scalars['Int']['input']>;
56619
56797
  offset?: InputMaybe<Scalars['Int']['input']>;
56620
56798
  };
56799
+ export declare type MarketplaceStoreQueryApiBillingSystemArgs = {
56800
+ billingSystemInput: MarketplaceStoreBillingSystemInput;
56801
+ };
56621
56802
  export declare type MarketplaceStoreQueryApiCategoryArgs = {
56622
56803
  slug: Scalars['String']['input'];
56623
56804
  };
@@ -56957,6 +57138,7 @@ export declare type MercuryFocusArea = Node & {
56957
57138
  targetDate?: Maybe<MercuryTargetDate>;
56958
57139
  teamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
56959
57140
  updatedDate: Scalars['String']['output'];
57141
+ url?: Maybe<Scalars['String']['output']>;
56960
57142
  watchers?: Maybe<MercuryUserConnection>;
56961
57143
  watching: Scalars['Boolean']['output'];
56962
57144
  };
@@ -63097,6 +63279,7 @@ export declare type QueryKnowledgeBaseArgs = {
63097
63279
  cloudId: Scalars['ID']['input'];
63098
63280
  };
63099
63281
  export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
63282
+ cloudId: Scalars['ID']['input'];
63100
63283
  spaceAris: Array<Scalars['ID']['input']>;
63101
63284
  };
63102
63285
  export declare type QueryMarketplaceAppArgs = {