@forge/cli-shared 5.3.0-next.2 → 5.3.0-next.3
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
|
@@ -3143,6 +3143,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3143
3143
|
createAssistantAnswer?: Maybe<CompassCreateAssistantAnswerPayload>;
|
|
3144
3144
|
createCompassEvent?: Maybe<CompassCreateEventsPayload>;
|
|
3145
3145
|
createComponent?: Maybe<CreateCompassComponentPayload>;
|
|
3146
|
+
createComponentApiUpload?: Maybe<CreateComponentApiUploadPayload>;
|
|
3146
3147
|
createComponentExternalAlias?: Maybe<CreateCompassComponentExternalAliasPayload>;
|
|
3147
3148
|
createComponentFromTemplate?: Maybe<CreateCompassComponentFromTemplatePayload>;
|
|
3148
3149
|
createComponentLink?: Maybe<CreateCompassComponentLinkPayload>;
|
|
@@ -3186,11 +3187,13 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3186
3187
|
updateAnnouncement?: Maybe<CompassUpdateAnnouncementPayload>;
|
|
3187
3188
|
updateComponent?: Maybe<UpdateCompassComponentPayload>;
|
|
3188
3189
|
updateComponentApi?: Maybe<UpdateComponentApiPayload>;
|
|
3190
|
+
updateComponentApiUpload?: Maybe<UpdateComponentApiUploadPayload>;
|
|
3189
3191
|
updateComponentDataManagerMetadata?: Maybe<UpdateCompassComponentDataManagerMetadataPayload>;
|
|
3190
3192
|
updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
|
|
3191
3193
|
updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
|
|
3192
3194
|
updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
|
|
3193
3195
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
3196
|
+
updateCustomPermissionConfigs?: Maybe<CompassUpdatePermissionConfigsPayload>;
|
|
3194
3197
|
updateDocument?: Maybe<CompassUpdateDocumentPayload>;
|
|
3195
3198
|
updateMetricDefinition?: Maybe<CompassUpdateMetricDefinitionPayload>;
|
|
3196
3199
|
updateScorecard?: Maybe<UpdateCompassScorecardPayload>;
|
|
@@ -3233,6 +3236,9 @@ export declare type CompassCatalogMutationApiCreateComponentArgs = {
|
|
|
3233
3236
|
cloudId: Scalars['ID']['input'];
|
|
3234
3237
|
input: CreateCompassComponentInput;
|
|
3235
3238
|
};
|
|
3239
|
+
export declare type CompassCatalogMutationApiCreateComponentApiUploadArgs = {
|
|
3240
|
+
input: CreateComponentApiUploadInput;
|
|
3241
|
+
};
|
|
3236
3242
|
export declare type CompassCatalogMutationApiCreateComponentExternalAliasArgs = {
|
|
3237
3243
|
input: CreateCompassComponentExternalAliasInput;
|
|
3238
3244
|
};
|
|
@@ -3365,6 +3371,9 @@ export declare type CompassCatalogMutationApiUpdateComponentApiArgs = {
|
|
|
3365
3371
|
cloudId: Scalars['ID']['input'];
|
|
3366
3372
|
input: UpdateComponentApiInput;
|
|
3367
3373
|
};
|
|
3374
|
+
export declare type CompassCatalogMutationApiUpdateComponentApiUploadArgs = {
|
|
3375
|
+
input: UpdateComponentApiUploadInput;
|
|
3376
|
+
};
|
|
3368
3377
|
export declare type CompassCatalogMutationApiUpdateComponentDataManagerMetadataArgs = {
|
|
3369
3378
|
input: UpdateCompassComponentDataManagerMetadataInput;
|
|
3370
3379
|
};
|
|
@@ -3380,6 +3389,10 @@ export declare type CompassCatalogMutationApiUpdateComponentTypeArgs = {
|
|
|
3380
3389
|
export declare type CompassCatalogMutationApiUpdateCustomFieldDefinitionArgs = {
|
|
3381
3390
|
input: CompassUpdateCustomFieldDefinitionInput;
|
|
3382
3391
|
};
|
|
3392
|
+
export declare type CompassCatalogMutationApiUpdateCustomPermissionConfigsArgs = {
|
|
3393
|
+
cloudId: Scalars['ID']['input'];
|
|
3394
|
+
input: CompassUpdateCustomPermissionConfigsInput;
|
|
3395
|
+
};
|
|
3383
3396
|
export declare type CompassCatalogMutationApiUpdateDocumentArgs = {
|
|
3384
3397
|
input: CompassUpdateDocumentInput;
|
|
3385
3398
|
};
|
|
@@ -4383,6 +4396,10 @@ export declare type CompassCustomPermissionConfigs = {
|
|
|
4383
4396
|
modifyScorecard?: Maybe<CompassCustomPermissionConfig>;
|
|
4384
4397
|
};
|
|
4385
4398
|
export declare type CompassCustomPermissionConfigsResult = CompassCustomPermissionConfigs | QueryError;
|
|
4399
|
+
export declare enum CompassCustomPermissionPreset {
|
|
4400
|
+
AdminsAndOwners = "ADMINS_AND_OWNERS",
|
|
4401
|
+
Default = "DEFAULT"
|
|
4402
|
+
}
|
|
4386
4403
|
export declare type CompassCustomSelectFieldOption = Node & {
|
|
4387
4404
|
__typename?: 'CompassCustomSelectFieldOption';
|
|
4388
4405
|
id: Scalars['ID']['output'];
|
|
@@ -5993,6 +6010,9 @@ export declare type CompassUpdateCustomNumberFieldDefinitionInput = {
|
|
|
5993
6010
|
id: Scalars['ID']['input'];
|
|
5994
6011
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5995
6012
|
};
|
|
6013
|
+
export declare type CompassUpdateCustomPermissionConfigsInput = {
|
|
6014
|
+
preset?: InputMaybe<CompassCustomPermissionPreset>;
|
|
6015
|
+
};
|
|
5996
6016
|
export declare type CompassUpdateCustomSingleSelectFieldDefinitionInput = {
|
|
5997
6017
|
componentTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5998
6018
|
createOptions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -6074,6 +6094,12 @@ export declare type CompassUpdateMetricDefinitionPayload = Payload & {
|
|
|
6074
6094
|
success: Scalars['Boolean']['output'];
|
|
6075
6095
|
updatedMetricDefinition?: Maybe<CompassMetricDefinition>;
|
|
6076
6096
|
};
|
|
6097
|
+
export declare type CompassUpdatePermissionConfigsPayload = Payload & {
|
|
6098
|
+
__typename?: 'CompassUpdatePermissionConfigsPayload';
|
|
6099
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6100
|
+
success: Scalars['Boolean']['output'];
|
|
6101
|
+
updatedCustomPermissionConfigs?: Maybe<CompassCustomPermissionConfigs>;
|
|
6102
|
+
};
|
|
6077
6103
|
export declare type CompassUpdateTeamCheckinActionInput = {
|
|
6078
6104
|
actionText?: InputMaybe<Scalars['String']['input']>;
|
|
6079
6105
|
completed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -6171,6 +6197,11 @@ export declare type CompleteSprintResponse = MutationResponse & {
|
|
|
6171
6197
|
success: Scalars['Boolean']['output'];
|
|
6172
6198
|
taskId?: Maybe<Scalars['String']['output']>;
|
|
6173
6199
|
};
|
|
6200
|
+
export declare type ComponentApiUpload = {
|
|
6201
|
+
__typename?: 'ComponentApiUpload';
|
|
6202
|
+
specUrl: Scalars['String']['output'];
|
|
6203
|
+
uploadId: Scalars['ID']['output'];
|
|
6204
|
+
};
|
|
6174
6205
|
export declare type ComponentSyncEvent = {
|
|
6175
6206
|
__typename?: 'ComponentSyncEvent';
|
|
6176
6207
|
lastSyncErrors?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -10020,6 +10051,7 @@ export declare type ConfluenceLegacy_RecommendedPeopleItem = {
|
|
|
10020
10051
|
__typename?: 'ConfluenceLegacy_RecommendedPeopleItem';
|
|
10021
10052
|
accountId: Scalars['String']['output'];
|
|
10022
10053
|
score: Scalars['Float']['output'];
|
|
10054
|
+
user?: Maybe<ConfluenceLegacy_AtlassianUser>;
|
|
10023
10055
|
};
|
|
10024
10056
|
export declare type ConfluenceLegacy_RecommendedSpaceItem = {
|
|
10025
10057
|
__typename?: 'ConfluenceLegacy_RecommendedSpaceItem';
|
|
@@ -14395,6 +14427,15 @@ export declare type CreateCompassStarredComponentPayload = Payload & {
|
|
|
14395
14427
|
export declare type CreateCompassUserDefinedParameterInput = {
|
|
14396
14428
|
freeformField?: InputMaybe<CreateCompassFreeformUserDefinedParameterInput>;
|
|
14397
14429
|
};
|
|
14430
|
+
export declare type CreateComponentApiUploadInput = {
|
|
14431
|
+
componentId: Scalars['ID']['input'];
|
|
14432
|
+
};
|
|
14433
|
+
export declare type CreateComponentApiUploadPayload = {
|
|
14434
|
+
__typename?: 'CreateComponentApiUploadPayload';
|
|
14435
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
14436
|
+
success: Scalars['Boolean']['output'];
|
|
14437
|
+
upload?: Maybe<ComponentApiUpload>;
|
|
14438
|
+
};
|
|
14398
14439
|
export declare type CreateCustomFilterInput = {
|
|
14399
14440
|
boardId: Scalars['ID']['input'];
|
|
14400
14441
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -38010,7 +38051,7 @@ export declare type JiraCreateSimpleNavigationItemInput = {
|
|
|
38010
38051
|
scopeId: Scalars['ID']['input'];
|
|
38011
38052
|
typeKey: JiraNavigationItemTypeKey;
|
|
38012
38053
|
};
|
|
38013
|
-
export declare type JiraCrossProjectVersion = {
|
|
38054
|
+
export declare type JiraCrossProjectVersion = Node & {
|
|
38014
38055
|
__typename?: 'JiraCrossProjectVersion';
|
|
38015
38056
|
crossProjectVersionScenarioValues?: Maybe<JiraCrossProjectVersionPlanScenarioValues>;
|
|
38016
38057
|
id: Scalars['ID']['output'];
|
|
@@ -41826,6 +41867,7 @@ export declare type JiraMutation = {
|
|
|
41826
41867
|
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
41827
41868
|
scheduleBulkExecuteProjectCleanupRecommendations?: Maybe<JiraBulkCleanupProjectsPayload>;
|
|
41828
41869
|
scheduleCalendarIssue?: Maybe<JiraScheduleCalendarIssuePayload>;
|
|
41870
|
+
scheduleCalendarIssueV2?: Maybe<JiraScheduleCalendarIssueWithScenarioPayload>;
|
|
41829
41871
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
41830
41872
|
setDefaultNavigationItem?: Maybe<JiraSetDefaultNavigationItemPayload>;
|
|
41831
41873
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
@@ -42135,6 +42177,13 @@ export declare type JiraMutationScheduleCalendarIssueArgs = {
|
|
|
42135
42177
|
scope?: InputMaybe<JiraViewScopeInput>;
|
|
42136
42178
|
startDateInput?: InputMaybe<Scalars['DateTime']['input']>;
|
|
42137
42179
|
};
|
|
42180
|
+
export declare type JiraMutationScheduleCalendarIssueV2Args = {
|
|
42181
|
+
configuration: JiraCalendarViewConfigurationInput;
|
|
42182
|
+
endDateInput?: InputMaybe<Scalars['DateTime']['input']>;
|
|
42183
|
+
issueId: Scalars['ID']['input'];
|
|
42184
|
+
scope?: InputMaybe<JiraViewScopeInput>;
|
|
42185
|
+
startDateInput?: InputMaybe<Scalars['DateTime']['input']>;
|
|
42186
|
+
};
|
|
42138
42187
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
42139
42188
|
cloudId: Scalars['ID']['input'];
|
|
42140
42189
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
@@ -44415,7 +44464,9 @@ export declare type JiraQueryGetArchivedIssuesFilterOptionsArgs = {
|
|
|
44415
44464
|
projectId: Scalars['ID']['input'];
|
|
44416
44465
|
};
|
|
44417
44466
|
export declare type JiraQueryGetArchivedIssuesForProjectArgs = {
|
|
44467
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
44418
44468
|
filterBy?: InputMaybe<JiraArchivedIssuesFilterInput>;
|
|
44469
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44419
44470
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
44420
44471
|
};
|
|
44421
44472
|
export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
|
|
@@ -45680,6 +45731,12 @@ export declare type JiraScheduleCalendarIssuePayload = Payload & {
|
|
|
45680
45731
|
issue?: Maybe<JiraIssue>;
|
|
45681
45732
|
success: Scalars['Boolean']['output'];
|
|
45682
45733
|
};
|
|
45734
|
+
export declare type JiraScheduleCalendarIssueWithScenarioPayload = Payload & {
|
|
45735
|
+
__typename?: 'JiraScheduleCalendarIssueWithScenarioPayload';
|
|
45736
|
+
errors?: Maybe<Array<MutationError>>;
|
|
45737
|
+
issue?: Maybe<JiraScenarioIssueLike>;
|
|
45738
|
+
success: Scalars['Boolean']['output'];
|
|
45739
|
+
};
|
|
45683
45740
|
export declare type JiraScmRepository = {
|
|
45684
45741
|
__typename?: 'JiraScmRepository';
|
|
45685
45742
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -53952,6 +54009,7 @@ export declare type OpsgenieQuery = {
|
|
|
53952
54009
|
opsgenieTeam?: Maybe<OpsgenieTeam>;
|
|
53953
54010
|
opsgenieTeams?: Maybe<Array<Maybe<OpsgenieTeam>>>;
|
|
53954
54011
|
opsgenieTeamsWithServiceModificationPermissions?: Maybe<OpsgenieTeamConnection>;
|
|
54012
|
+
savedSearches?: Maybe<OpsgenieSavedSearches>;
|
|
53955
54013
|
};
|
|
53956
54014
|
export declare type OpsgenieQueryAllOpsgenieTeamsArgs = {
|
|
53957
54015
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -53979,6 +54037,21 @@ export declare type OpsgenieQueryOpsgenieTeamsWithServiceModificationPermissions
|
|
|
53979
54037
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53980
54038
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
53981
54039
|
};
|
|
54040
|
+
export declare type OpsgenieQuerySavedSearchesArgs = {
|
|
54041
|
+
cloudId: Scalars['ID']['input'];
|
|
54042
|
+
};
|
|
54043
|
+
export declare type OpsgenieSavedSearch = Node & {
|
|
54044
|
+
__typename?: 'OpsgenieSavedSearch';
|
|
54045
|
+
alertSearchQuery?: Maybe<Scalars['String']['output']>;
|
|
54046
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
54047
|
+
id: Scalars['ID']['output'];
|
|
54048
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
54049
|
+
};
|
|
54050
|
+
export declare type OpsgenieSavedSearches = {
|
|
54051
|
+
__typename?: 'OpsgenieSavedSearches';
|
|
54052
|
+
createdByMe?: Maybe<Array<OpsgenieSavedSearch>>;
|
|
54053
|
+
sharedWithMe?: Maybe<Array<OpsgenieSavedSearch>>;
|
|
54054
|
+
};
|
|
53982
54055
|
export declare type OpsgenieSchedule = {
|
|
53983
54056
|
__typename?: 'OpsgenieSchedule';
|
|
53984
54057
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -64743,6 +64816,17 @@ export declare type UpdateComponentApiPayload = {
|
|
|
64743
64816
|
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
64744
64817
|
success: Scalars['Boolean']['output'];
|
|
64745
64818
|
};
|
|
64819
|
+
export declare type UpdateComponentApiUploadInput = {
|
|
64820
|
+
componentId: Scalars['ID']['input'];
|
|
64821
|
+
effectiveAt: Scalars['String']['input'];
|
|
64822
|
+
tags: Array<Scalars['String']['input']>;
|
|
64823
|
+
uploadId: Scalars['ID']['input'];
|
|
64824
|
+
};
|
|
64825
|
+
export declare type UpdateComponentApiUploadPayload = {
|
|
64826
|
+
__typename?: 'UpdateComponentApiUploadPayload';
|
|
64827
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
64828
|
+
success: Scalars['Boolean']['output'];
|
|
64829
|
+
};
|
|
64746
64830
|
export declare type UpdateCustomFilterInput = {
|
|
64747
64831
|
boardId: Scalars['ID']['input'];
|
|
64748
64832
|
description?: InputMaybe<Scalars['String']['input']>;
|