@forge/cli-shared 6.0.2-next.0 → 6.0.2-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,13 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.0.2-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [84b20e6]
8
+ - Updated dependencies [cdbb366]
9
+ - @forge/manifest@7.10.0-next.1
10
+
3
11
  ## 6.0.2-next.0
4
12
 
5
13
  ### Patch Changes
@@ -5220,6 +5220,7 @@ export declare type CompassFilteredComponentsCount = {
5220
5220
  };
5221
5221
  export declare type CompassFilteredComponentsCountQuery = {
5222
5222
  componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
5223
+ componentCustomFieldFilters?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
5223
5224
  fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
5224
5225
  labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
5225
5226
  lifecycleFilter?: InputMaybe<CompassLifecycleFilterInput>;
@@ -41801,6 +41802,21 @@ export declare type JiraCustomRemoteIssueLink = {
41801
41802
  summary?: Maybe<Scalars['String']['output']>;
41802
41803
  title?: Maybe<Scalars['String']['output']>;
41803
41804
  };
41805
+ export declare type JiraCustomerServiceOrganizationField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
41806
+ __typename?: 'JiraCustomerServiceOrganizationField';
41807
+ aliasFieldId?: Maybe<Scalars['ID']['output']>;
41808
+ description?: Maybe<Scalars['String']['output']>;
41809
+ fieldConfig?: Maybe<JiraFieldConfig>;
41810
+ fieldId: Scalars['String']['output'];
41811
+ id: Scalars['ID']['output'];
41812
+ isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
41813
+ issue?: Maybe<JiraIssue>;
41814
+ name: Scalars['String']['output'];
41815
+ searchUrl?: Maybe<Scalars['String']['output']>;
41816
+ selectedOrganization?: Maybe<JiraServiceManagementOrganization>;
41817
+ type: Scalars['String']['output'];
41818
+ userFieldConfig?: Maybe<JiraUserFieldConfig>;
41819
+ };
41804
41820
  export declare type JiraDashboard = Node & {
41805
41821
  __typename?: 'JiraDashboard';
41806
41822
  dashboardId?: Maybe<Scalars['Long']['output']>;
@@ -44124,6 +44140,7 @@ export declare type JiraIssueFieldsInput = {
44124
44140
  security?: InputMaybe<JiraSecurityLevelInput>;
44125
44141
  singleGroupPickerFields?: InputMaybe<Array<JiraSingleGroupPickerFieldInput>>;
44126
44142
  singleLineTextFields?: InputMaybe<Array<JiraSingleLineTextFieldInput>>;
44143
+ singleOrganizationField?: InputMaybe<JiraSingleOrganizationFieldInput>;
44127
44144
  singleSelectClearableUserPickerFields?: InputMaybe<Array<JiraUserFieldInput>>;
44128
44145
  singleSelectFields?: InputMaybe<Array<JiraSingleSelectFieldInput>>;
44129
44146
  singleSelectUserPickerFields?: InputMaybe<Array<JiraSingleSelectUserPickerFieldInput>>;
@@ -46070,6 +46087,9 @@ export declare type JiraMutation = {
46070
46087
  grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
46071
46088
  initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
46072
46089
  jiraFilterMutation?: Maybe<JiraFilterMutation>;
46090
+ jiraServiceManagementCreateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
46091
+ jiraServiceManagementDeleteRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryDefaultPayload>;
46092
+ jiraServiceManagementUpdateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
46073
46093
  jwmCreateCustomBackground?: Maybe<JiraWorkManagementCreateCustomBackgroundPayload>;
46074
46094
  jwmCreateSavedView?: Maybe<JiraWorkManagementCreateSavedViewPayload>;
46075
46095
  jwmDeleteAttachment?: Maybe<JiraWorkManagementDeleteAttachmentPayload>;
@@ -46343,6 +46363,18 @@ export declare type JiraMutationInitializeProjectNotificationPreferencesArgs = {
46343
46363
  cloudId: Scalars['ID']['input'];
46344
46364
  input: JiraInitializeProjectNotificationPreferencesInput;
46345
46365
  };
46366
+ export declare type JiraMutationJiraServiceManagementCreateRequestTypeCategoryArgs = {
46367
+ cloudId: Scalars['ID']['input'];
46368
+ input: JiraServiceManagementCreateRequestTypeCategoryInput;
46369
+ };
46370
+ export declare type JiraMutationJiraServiceManagementDeleteRequestTypeCategoryArgs = {
46371
+ cloudId: Scalars['ID']['input'];
46372
+ requestTypeCategoryId: Scalars['ID']['input'];
46373
+ };
46374
+ export declare type JiraMutationJiraServiceManagementUpdateRequestTypeCategoryArgs = {
46375
+ cloudId: Scalars['ID']['input'];
46376
+ input: JiraServiceManagementUpdateRequestTypeCategoryInput;
46377
+ };
46346
46378
  export declare type JiraMutationJwmCreateCustomBackgroundArgs = {
46347
46379
  input: JiraWorkManagementCreateCustomBackgroundInput;
46348
46380
  };
@@ -48535,6 +48567,7 @@ export declare type JiraQuery = {
48535
48567
  jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
48536
48568
  jiraProjectsByJql?: Maybe<JiraProjectConnection>;
48537
48569
  jiraProjectsMappedToHelpCenter?: Maybe<JiraProjectConnection>;
48570
+ jiraServiceManagementRequestTypeCategoriesByProject?: Maybe<JiraServiceManagementRequestTypeCategoryConnection>;
48538
48571
  jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
48539
48572
  jqlBuilder?: Maybe<JiraJqlBuilder>;
48540
48573
  jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
@@ -49078,6 +49111,12 @@ export declare type JiraQueryJiraProjectsMappedToHelpCenterArgs = {
49078
49111
  first?: InputMaybe<Scalars['Int']['input']>;
49079
49112
  last?: InputMaybe<Scalars['Int']['input']>;
49080
49113
  };
49114
+ export declare type JiraQueryJiraServiceManagementRequestTypeCategoriesByProjectArgs = {
49115
+ after?: InputMaybe<Scalars['String']['input']>;
49116
+ cloudId: Scalars['ID']['input'];
49117
+ first?: InputMaybe<Scalars['Int']['input']>;
49118
+ projectId: Scalars['ID']['input'];
49119
+ };
49081
49120
  export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
49082
49121
  cloudId: Scalars['ID']['input'];
49083
49122
  };
@@ -50494,6 +50533,13 @@ export declare type JiraServiceManagementCreateAndAssociateWorkflowFromTemplateP
50494
50533
  success: Scalars['Boolean']['output'];
50495
50534
  workflowAndIssueSummary?: Maybe<JiraServiceManagementWorkflowAndIssueSummary>;
50496
50535
  };
50536
+ export declare type JiraServiceManagementCreateRequestTypeCategoryInput = {
50537
+ name: Scalars['String']['input'];
50538
+ owner?: InputMaybe<Scalars['String']['input']>;
50539
+ projectId?: InputMaybe<Scalars['Long']['input']>;
50540
+ restriction?: InputMaybe<JiraServiceManagementRequestTypeCategoryRestriction>;
50541
+ status?: InputMaybe<JiraServiceManagementRequestTypeCategoryStatus>;
50542
+ };
50497
50543
  export declare type JiraServiceManagementCreateRequestTypeFromTemplateInput = {
50498
50544
  clientMutationId: Scalars['String']['input'];
50499
50545
  description?: InputMaybe<Scalars['String']['input']>;
@@ -50952,6 +50998,53 @@ export declare type JiraServiceManagementRequestType = Node & {
50952
50998
  practices?: Maybe<Array<Maybe<JiraServiceManagementRequestTypePractice>>>;
50953
50999
  requestTypeId: Scalars['String']['output'];
50954
51000
  };
51001
+ export declare type JiraServiceManagementRequestTypeCategory = {
51002
+ __typename?: 'JiraServiceManagementRequestTypeCategory';
51003
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
51004
+ id: Scalars['ID']['output'];
51005
+ name?: Maybe<Scalars['String']['output']>;
51006
+ owner?: Maybe<Scalars['String']['output']>;
51007
+ projectId?: Maybe<Scalars['Long']['output']>;
51008
+ requestTypes?: Maybe<JiraServiceManagementRequestTypeCategoryConnection>;
51009
+ restriction?: Maybe<JiraServiceManagementRequestTypeCategoryRestriction>;
51010
+ status?: Maybe<JiraServiceManagementRequestTypeCategoryStatus>;
51011
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
51012
+ };
51013
+ export declare type JiraServiceManagementRequestTypeCategoryRequestTypesArgs = {
51014
+ after?: InputMaybe<Scalars['String']['input']>;
51015
+ first?: InputMaybe<Scalars['Int']['input']>;
51016
+ };
51017
+ export declare type JiraServiceManagementRequestTypeCategoryConnection = {
51018
+ __typename?: 'JiraServiceManagementRequestTypeCategoryConnection';
51019
+ edges?: Maybe<Array<Maybe<JiraServiceManagementRequestTypeCategoryEdge>>>;
51020
+ nodes?: Maybe<Array<Maybe<JiraServiceManagementRequestTypeCategory>>>;
51021
+ pageInfo: PageInfo;
51022
+ };
51023
+ export declare type JiraServiceManagementRequestTypeCategoryDefaultPayload = Payload & {
51024
+ __typename?: 'JiraServiceManagementRequestTypeCategoryDefaultPayload';
51025
+ errors?: Maybe<Array<MutationError>>;
51026
+ success: Scalars['Boolean']['output'];
51027
+ };
51028
+ export declare type JiraServiceManagementRequestTypeCategoryEdge = {
51029
+ __typename?: 'JiraServiceManagementRequestTypeCategoryEdge';
51030
+ cursor: Scalars['String']['output'];
51031
+ node?: Maybe<JiraServiceManagementRequestTypeCategory>;
51032
+ };
51033
+ export declare type JiraServiceManagementRequestTypeCategoryPayload = Payload & {
51034
+ __typename?: 'JiraServiceManagementRequestTypeCategoryPayload';
51035
+ errors?: Maybe<Array<MutationError>>;
51036
+ requestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategory>;
51037
+ success: Scalars['Boolean']['output'];
51038
+ };
51039
+ export declare enum JiraServiceManagementRequestTypeCategoryRestriction {
51040
+ Open = "OPEN",
51041
+ Restricted = "RESTRICTED"
51042
+ }
51043
+ export declare enum JiraServiceManagementRequestTypeCategoryStatus {
51044
+ Active = "ACTIVE",
51045
+ Draft = "DRAFT",
51046
+ Inactive = "INACTIVE"
51047
+ }
50955
51048
  export declare type JiraServiceManagementRequestTypeConnection = {
50956
51049
  __typename?: 'JiraServiceManagementRequestTypeConnection';
50957
51050
  edges?: Maybe<Array<Maybe<JiraServiceManagementRequestTypeEdge>>>;
@@ -51154,6 +51247,13 @@ export declare type JiraServiceManagementUpdateOrganizationFieldInput = {
51154
51247
  id: Scalars['ID']['input'];
51155
51248
  operations: Array<JiraServiceManagementOrganizationFieldOperationInput>;
51156
51249
  };
51250
+ export declare type JiraServiceManagementUpdateRequestTypeCategoryInput = {
51251
+ id: Scalars['ID']['input'];
51252
+ name?: InputMaybe<Scalars['String']['input']>;
51253
+ owner?: InputMaybe<Scalars['String']['input']>;
51254
+ restriction?: InputMaybe<JiraServiceManagementRequestTypeCategoryRestriction>;
51255
+ status?: InputMaybe<JiraServiceManagementRequestTypeCategoryStatus>;
51256
+ };
51157
51257
  export declare type JiraServiceManagementUpdateSentimentFieldInput = {
51158
51258
  id: Scalars['ID']['input'];
51159
51259
  operation?: InputMaybe<JiraServiceManagementUpdateSentimentOperationInput>;
@@ -51457,6 +51557,10 @@ export declare type JiraSingleLineTextFieldPayload = Payload & {
51457
51557
  field?: Maybe<JiraSingleLineTextField>;
51458
51558
  success: Scalars['Boolean']['output'];
51459
51559
  };
51560
+ export declare type JiraSingleOrganizationFieldInput = {
51561
+ fieldId: Scalars['ID']['input'];
51562
+ organization: JiraOrganizationsInput;
51563
+ };
51460
51564
  export declare type JiraSingleSelectField = JiraHasSelectableValueOptions & JiraHasSingleSelectedValue & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
51461
51565
  __typename?: 'JiraSingleSelectField';
51462
51566
  aliasFieldId?: Maybe<Scalars['ID']['output']>;
@@ -59102,6 +59206,7 @@ export declare type Mutation = {
59102
59206
  setPolarisSnippetPropertiesConfig?: Maybe<SetPolarisSnippetPropertiesConfigPayload>;
59103
59207
  setSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
59104
59208
  setUserSwimlaneStrategy?: Maybe<SetSwimlaneStrategyResponse>;
59209
+ settings_updateNavigationCustomisation?: Maybe<SettingsNavigationCustomisation>;
59105
59210
  shepherd?: Maybe<ShepherdMutation>;
59106
59211
  splitIssue?: Maybe<SplitIssueOutput>;
59107
59212
  startSprint?: Maybe<SprintResponse>;
@@ -59947,6 +60052,9 @@ export declare type MutationSetSwimlaneStrategyArgs = {
59947
60052
  export declare type MutationSetUserSwimlaneStrategyArgs = {
59948
60053
  input?: InputMaybe<SetSwimlaneStrategyInput>;
59949
60054
  };
60055
+ export declare type MutationSettings_UpdateNavigationCustomisationArgs = {
60056
+ input: SettingsNavigationCustomisationInput;
60057
+ };
59950
60058
  export declare type MutationSplitIssueArgs = {
59951
60059
  input?: InputMaybe<SplitIssueInput>;
59952
60060
  };
@@ -62081,6 +62189,7 @@ export declare type Query = {
62081
62189
  roadmaps?: Maybe<RoadmapsQuery>;
62082
62190
  sandbox: SandboxQuery;
62083
62191
  search?: Maybe<SearchQueryApi>;
62192
+ settings_navigationCustomisation?: Maybe<SettingsNavigationCustomisation>;
62084
62193
  shepherd?: Maybe<ShepherdQuery>;
62085
62194
  signup?: Maybe<SignupQueryApi>;
62086
62195
  smarts?: Maybe<SmartsQueryApi>;
@@ -63510,6 +63619,10 @@ export declare type QueryRepositoryRelationshipsForJiraProjectArgs = {
63510
63619
  id: Scalars['ID']['input'];
63511
63620
  sort?: InputMaybe<JiraProjectAndRepositoryRelationshipSort>;
63512
63621
  };
63622
+ export declare type QuerySettings_NavigationCustomisationArgs = {
63623
+ entityAri?: InputMaybe<Scalars['ID']['input']>;
63624
+ ownerAri?: InputMaybe<Scalars['ID']['input']>;
63625
+ };
63513
63626
  export declare type QuerySoftwareBoardsArgs = {
63514
63627
  projectAri: Scalars['ID']['input'];
63515
63628
  };
@@ -65835,6 +65948,39 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
65835
65948
  strategy: SwimlaneStrategy;
65836
65949
  success: Scalars['Boolean']['output'];
65837
65950
  };
65951
+ export declare type SettingsMenuItem = {
65952
+ __typename?: 'SettingsMenuItem';
65953
+ menuId?: Maybe<Scalars['ID']['output']>;
65954
+ visible?: Maybe<Scalars['Boolean']['output']>;
65955
+ };
65956
+ export declare type SettingsMenuItemConnection = {
65957
+ __typename?: 'SettingsMenuItemConnection';
65958
+ edges?: Maybe<Array<SettingsMenuItemEdge>>;
65959
+ nodes?: Maybe<Array<Maybe<SettingsMenuItem>>>;
65960
+ pageInfo: PageInfo;
65961
+ };
65962
+ export declare type SettingsMenuItemEdge = {
65963
+ __typename?: 'SettingsMenuItemEdge';
65964
+ cursor: Scalars['String']['output'];
65965
+ node?: Maybe<SettingsMenuItem>;
65966
+ };
65967
+ export declare type SettingsMenuItemInput = {
65968
+ menuId: Scalars['ID']['input'];
65969
+ visible: Scalars['Boolean']['input'];
65970
+ };
65971
+ export declare type SettingsNavigationCustomisation = {
65972
+ __typename?: 'SettingsNavigationCustomisation';
65973
+ sidebar?: Maybe<SettingsMenuItemConnection>;
65974
+ };
65975
+ export declare type SettingsNavigationCustomisationSidebarArgs = {
65976
+ after?: InputMaybe<Scalars['String']['input']>;
65977
+ first?: InputMaybe<Scalars['Int']['input']>;
65978
+ };
65979
+ export declare type SettingsNavigationCustomisationInput = {
65980
+ entityAri: Scalars['ID']['input'];
65981
+ ownerAri?: InputMaybe<Scalars['ID']['input']>;
65982
+ sidebar?: InputMaybe<Array<InputMaybe<SettingsMenuItemInput>>>;
65983
+ };
65838
65984
  export declare enum ShepherdActionType {
65839
65985
  Activate = "ACTIVATE",
65840
65986
  Archive = "ARCHIVE",
@@ -70124,6 +70270,7 @@ export declare type TrelloPinCardPayload = Payload & {
70124
70270
  export declare type TrelloPlanner = {
70125
70271
  __typename?: 'TrelloPlanner';
70126
70272
  accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
70273
+ workspace?: Maybe<TrelloWorkspace>;
70127
70274
  };
70128
70275
  export declare type TrelloPlannerAccountsArgs = {
70129
70276
  after?: InputMaybe<Scalars['String']['input']>;
@@ -70153,6 +70300,7 @@ export declare type TrelloPlannerCalendarAccount = Node & {
70153
70300
  displayName?: Maybe<Scalars['String']['output']>;
70154
70301
  enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
70155
70302
  id: Scalars['ID']['output'];
70303
+ outboundAuthId?: Maybe<Scalars['ID']['output']>;
70156
70304
  providerCalendars?: Maybe<TrelloPlannerProviderCalendarConnection>;
70157
70305
  };
70158
70306
  export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {