@forge/cli-shared 3.5.1-next.5 → 3.5.1-next.7
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
|
+
## 3.5.1-next.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [2c490ad]
|
|
8
|
+
- @forge/manifest@4.6.0-next.5
|
|
9
|
+
|
|
10
|
+
## 3.5.1-next.6
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [e975f19]
|
|
15
|
+
- @forge/manifest@4.6.0-next.4
|
|
16
|
+
|
|
3
17
|
## 3.5.1-next.5
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -3049,6 +3049,7 @@ export declare type CompassMetricSource = {
|
|
|
3049
3049
|
metricDefinition?: Maybe<CompassMetricDefinition>;
|
|
3050
3050
|
externalMetricSourceId?: Maybe<Scalars['ID']>;
|
|
3051
3051
|
url?: Maybe<Scalars['String']>;
|
|
3052
|
+
title?: Maybe<Scalars['String']>;
|
|
3052
3053
|
forgeAppId?: Maybe<Scalars['ID']>;
|
|
3053
3054
|
values?: Maybe<CompassMetricSourceValuesQueryResult>;
|
|
3054
3055
|
component?: Maybe<CompassComponent>;
|
|
@@ -8947,6 +8948,16 @@ export declare type JiraColorField = Node & JiraIssueField & JiraIssueFieldConfi
|
|
|
8947
8948
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
8948
8949
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
8949
8950
|
};
|
|
8951
|
+
export declare type JiraColorFieldOperationInput = {
|
|
8952
|
+
operation: JiraSingleValueFieldOperations;
|
|
8953
|
+
color: Scalars['String'];
|
|
8954
|
+
};
|
|
8955
|
+
export declare type JiraColorFieldPayload = Payload & {
|
|
8956
|
+
__typename?: 'JiraColorFieldPayload';
|
|
8957
|
+
success: Scalars['Boolean'];
|
|
8958
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8959
|
+
field?: Maybe<JiraColorField>;
|
|
8960
|
+
};
|
|
8950
8961
|
export declare type JiraComment = {
|
|
8951
8962
|
commentId: Scalars['ID'];
|
|
8952
8963
|
issue?: Maybe<JiraIssue>;
|
|
@@ -9428,6 +9439,11 @@ export declare type JiraFavouriteFilter = {
|
|
|
9428
9439
|
export declare enum JiraFavouriteType {
|
|
9429
9440
|
Project = "PROJECT"
|
|
9430
9441
|
}
|
|
9442
|
+
export declare type JiraFavouriteValue = Node & {
|
|
9443
|
+
__typename?: 'JiraFavouriteValue';
|
|
9444
|
+
id: Scalars['ID'];
|
|
9445
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
9446
|
+
};
|
|
9431
9447
|
export declare type JiraFieldConfig = {
|
|
9432
9448
|
__typename?: 'JiraFieldConfig';
|
|
9433
9449
|
isRequired?: Maybe<Scalars['Boolean']>;
|
|
@@ -11255,6 +11271,7 @@ export declare type JiraMutation = {
|
|
|
11255
11271
|
linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
|
|
11256
11272
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
11257
11273
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
11274
|
+
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
11258
11275
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
11259
11276
|
deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
|
|
11260
11277
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
@@ -11264,6 +11281,11 @@ export declare type JiraMutation = {
|
|
|
11264
11281
|
updateStoryPointEstimateField?: Maybe<JiraStoryPointEstimateFieldPayload>;
|
|
11265
11282
|
updateSingleSelectField?: Maybe<JiraSingleSelectFieldPayload>;
|
|
11266
11283
|
updateSingleLineTextField?: Maybe<JiraSingleLineTextFieldPayload>;
|
|
11284
|
+
updatePriorityField?: Maybe<JiraPriorityFieldPayload>;
|
|
11285
|
+
updateVotesField?: Maybe<JiraVotesFieldPayload>;
|
|
11286
|
+
updateColorField?: Maybe<JiraColorFieldPayload>;
|
|
11287
|
+
updateSingleSelectUserPickerField?: Maybe<JiraSingleSelectUserPickerFieldPayload>;
|
|
11288
|
+
updateWatchesField?: Maybe<JiraWatchesFieldPayload>;
|
|
11267
11289
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
11268
11290
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
11269
11291
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
@@ -11307,6 +11329,9 @@ export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
|
11307
11329
|
cloudId: Scalars['ID'];
|
|
11308
11330
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
11309
11331
|
};
|
|
11332
|
+
export declare type JiraMutationSetEntityIsFavouriteArgs = {
|
|
11333
|
+
input: JiraSetIsFavouriteInput;
|
|
11334
|
+
};
|
|
11310
11335
|
export declare type JiraMutationGrantGlobalPermissionArgs = {
|
|
11311
11336
|
input: JiraGlobalPermissionAddGroupGrantInput;
|
|
11312
11337
|
};
|
|
@@ -11334,6 +11359,21 @@ export declare type JiraMutationUpdateSingleSelectFieldArgs = {
|
|
|
11334
11359
|
export declare type JiraMutationUpdateSingleLineTextFieldArgs = {
|
|
11335
11360
|
input: JiraUpdateSingleLineTextFieldInput;
|
|
11336
11361
|
};
|
|
11362
|
+
export declare type JiraMutationUpdatePriorityFieldArgs = {
|
|
11363
|
+
input?: Maybe<JiraUpdatePriorityFieldInput>;
|
|
11364
|
+
};
|
|
11365
|
+
export declare type JiraMutationUpdateVotesFieldArgs = {
|
|
11366
|
+
input?: Maybe<JiraUpdateVotesFieldInput>;
|
|
11367
|
+
};
|
|
11368
|
+
export declare type JiraMutationUpdateColorFieldArgs = {
|
|
11369
|
+
input: JiraUpdateColorFieldInput;
|
|
11370
|
+
};
|
|
11371
|
+
export declare type JiraMutationUpdateSingleSelectUserPickerFieldArgs = {
|
|
11372
|
+
input?: Maybe<JiraUpdateSingleSelectUserPickerFieldInput>;
|
|
11373
|
+
};
|
|
11374
|
+
export declare type JiraMutationUpdateWatchesFieldArgs = {
|
|
11375
|
+
input?: Maybe<JiraUpdateWatchesFieldInput>;
|
|
11376
|
+
};
|
|
11337
11377
|
export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
11338
11378
|
input: JiraPermissionSchemeAddGrantInput;
|
|
11339
11379
|
};
|
|
@@ -11874,6 +11914,16 @@ export declare type JiraPriorityFieldPrioritiesArgs = {
|
|
|
11874
11914
|
before?: Maybe<Scalars['String']>;
|
|
11875
11915
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
11876
11916
|
};
|
|
11917
|
+
export declare type JiraPriorityFieldOperationInput = {
|
|
11918
|
+
operation: JiraSingleValueFieldOperations;
|
|
11919
|
+
priority: Scalars['String'];
|
|
11920
|
+
};
|
|
11921
|
+
export declare type JiraPriorityFieldPayload = Payload & {
|
|
11922
|
+
__typename?: 'JiraPriorityFieldPayload';
|
|
11923
|
+
success: Scalars['Boolean'];
|
|
11924
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11925
|
+
field?: Maybe<JiraPriorityField>;
|
|
11926
|
+
};
|
|
11877
11927
|
export declare type JiraProformaForms = {
|
|
11878
11928
|
__typename?: 'JiraProformaForms';
|
|
11879
11929
|
hasProjectForms?: Maybe<Scalars['Boolean']>;
|
|
@@ -12343,6 +12393,7 @@ export declare type JiraQuery = {
|
|
|
12343
12393
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
12344
12394
|
version?: Maybe<JiraVersionResult>;
|
|
12345
12395
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
12396
|
+
versionsForProjects?: Maybe<JiraVersionConnection>;
|
|
12346
12397
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
12347
12398
|
isSubtasksEnabled?: Maybe<Scalars['Boolean']>;
|
|
12348
12399
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
@@ -12544,6 +12595,15 @@ export declare type JiraQueryVersionsForProjectArgs = {
|
|
|
12544
12595
|
releaseDateBefore?: Maybe<Scalars['Date']>;
|
|
12545
12596
|
searchString?: Maybe<Scalars['String']>;
|
|
12546
12597
|
};
|
|
12598
|
+
export declare type JiraQueryVersionsForProjectsArgs = {
|
|
12599
|
+
jiraProjectIds: Array<Scalars['ID']>;
|
|
12600
|
+
first?: Maybe<Scalars['Int']>;
|
|
12601
|
+
after?: Maybe<Scalars['String']>;
|
|
12602
|
+
last?: Maybe<Scalars['Int']>;
|
|
12603
|
+
before?: Maybe<Scalars['String']>;
|
|
12604
|
+
filter?: Maybe<Array<Maybe<JiraVersionStatus>>>;
|
|
12605
|
+
searchString?: Maybe<Scalars['String']>;
|
|
12606
|
+
};
|
|
12547
12607
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
12548
12608
|
versionId: Scalars['ID'];
|
|
12549
12609
|
};
|
|
@@ -13482,6 +13542,17 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
13482
13542
|
key: Scalars['String'];
|
|
13483
13543
|
value: Scalars['String'];
|
|
13484
13544
|
};
|
|
13545
|
+
export declare type JiraSetIsFavouriteInput = {
|
|
13546
|
+
entityId: Scalars['ID'];
|
|
13547
|
+
beforeEntityId?: Maybe<Scalars['ID']>;
|
|
13548
|
+
isFavourite: Scalars['Boolean'];
|
|
13549
|
+
};
|
|
13550
|
+
export declare type JiraSetIsFavouritePayload = Payload & {
|
|
13551
|
+
__typename?: 'JiraSetIsFavouritePayload';
|
|
13552
|
+
success: Scalars['Boolean'];
|
|
13553
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13554
|
+
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
13555
|
+
};
|
|
13485
13556
|
export declare type JiraShareableEntityAnonymousAccessGrant = {
|
|
13486
13557
|
__typename?: 'JiraShareableEntityAnonymousAccessGrant';
|
|
13487
13558
|
type?: Maybe<JiraShareableEntityGrant>;
|
|
@@ -13685,6 +13756,17 @@ export declare type JiraSingleSelectUserPickerFieldUsersArgs = {
|
|
|
13685
13756
|
last?: Maybe<Scalars['Int']>;
|
|
13686
13757
|
before?: Maybe<Scalars['String']>;
|
|
13687
13758
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
13759
|
+
sessionId?: Maybe<Scalars['ID']>;
|
|
13760
|
+
};
|
|
13761
|
+
export declare type JiraSingleSelectUserPickerFieldOperationInput = {
|
|
13762
|
+
operation: JiraSingleValueFieldOperations;
|
|
13763
|
+
accountId?: Maybe<Scalars['ID']>;
|
|
13764
|
+
};
|
|
13765
|
+
export declare type JiraSingleSelectUserPickerFieldPayload = Payload & {
|
|
13766
|
+
__typename?: 'JiraSingleSelectUserPickerFieldPayload';
|
|
13767
|
+
success: Scalars['Boolean'];
|
|
13768
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13769
|
+
field?: Maybe<JiraSingleSelectUserPickerField>;
|
|
13688
13770
|
};
|
|
13689
13771
|
export declare enum JiraSingleValueFieldOperations {
|
|
13690
13772
|
Set = "SET"
|
|
@@ -13966,6 +14048,10 @@ export declare enum JiraTimeUnit {
|
|
|
13966
14048
|
Day = "DAY",
|
|
13967
14049
|
Week = "WEEK"
|
|
13968
14050
|
}
|
|
14051
|
+
export declare type JiraUpdateColorFieldInput = {
|
|
14052
|
+
id: Scalars['ID'];
|
|
14053
|
+
operation: JiraColorFieldOperationInput;
|
|
14054
|
+
};
|
|
13969
14055
|
export declare type JiraUpdateCustomFilterDetailsInput = {
|
|
13970
14056
|
id: Scalars['ID'];
|
|
13971
14057
|
name: Scalars['String'];
|
|
@@ -14005,6 +14091,10 @@ export declare type JiraUpdateNumberFieldInput = {
|
|
|
14005
14091
|
id: Scalars['ID'];
|
|
14006
14092
|
operation: JiraNumberFieldOperationInput;
|
|
14007
14093
|
};
|
|
14094
|
+
export declare type JiraUpdatePriorityFieldInput = {
|
|
14095
|
+
id: Scalars['ID'];
|
|
14096
|
+
operation: JiraPriorityFieldOperationInput;
|
|
14097
|
+
};
|
|
14008
14098
|
export declare type JiraUpdateReleaseNotesConfigurationInput = {
|
|
14009
14099
|
id: Scalars['ID'];
|
|
14010
14100
|
issueFieldIds: Array<Scalars['ID']>;
|
|
@@ -14031,6 +14121,10 @@ export declare type JiraUpdateSingleSelectFieldInput = {
|
|
|
14031
14121
|
id: Scalars['ID'];
|
|
14032
14122
|
operation: JiraSingleSelectOperationInput;
|
|
14033
14123
|
};
|
|
14124
|
+
export declare type JiraUpdateSingleSelectUserPickerFieldInput = {
|
|
14125
|
+
id: Scalars['ID'];
|
|
14126
|
+
operation: JiraSingleSelectUserPickerFieldOperationInput;
|
|
14127
|
+
};
|
|
14034
14128
|
export declare type JiraUpdateStoryPointEstimateFieldInput = {
|
|
14035
14129
|
id: Scalars['ID'];
|
|
14036
14130
|
operation: JiraStoryPointEstimateFieldOperationInput;
|
|
@@ -14079,6 +14173,14 @@ export declare type JiraUpdateVersionWarningConfigPayload = Payload & {
|
|
|
14079
14173
|
success: Scalars['Boolean'];
|
|
14080
14174
|
errors?: Maybe<Array<MutationError>>;
|
|
14081
14175
|
};
|
|
14176
|
+
export declare type JiraUpdateVotesFieldInput = {
|
|
14177
|
+
id: Scalars['ID'];
|
|
14178
|
+
operation: JiraVotesFieldOperationInput;
|
|
14179
|
+
};
|
|
14180
|
+
export declare type JiraUpdateWatchesFieldInput = {
|
|
14181
|
+
id: Scalars['ID'];
|
|
14182
|
+
operation: JiraWatchesFieldOperationInput;
|
|
14183
|
+
};
|
|
14082
14184
|
export declare type JiraUrlField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
14083
14185
|
__typename?: 'JiraUrlField';
|
|
14084
14186
|
id: Scalars['ID'];
|
|
@@ -14410,9 +14512,29 @@ export declare type JiraVotesField = Node & JiraIssueField & JiraIssueFieldConfi
|
|
|
14410
14512
|
name: Scalars['String'];
|
|
14411
14513
|
description?: Maybe<Scalars['String']>;
|
|
14412
14514
|
vote?: Maybe<JiraVote>;
|
|
14515
|
+
selectedUsersConnection?: Maybe<JiraUserConnection>;
|
|
14413
14516
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
14414
14517
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
14415
14518
|
};
|
|
14519
|
+
export declare type JiraVotesFieldSelectedUsersConnectionArgs = {
|
|
14520
|
+
first?: Maybe<Scalars['Int']>;
|
|
14521
|
+
after?: Maybe<Scalars['String']>;
|
|
14522
|
+
last?: Maybe<Scalars['Int']>;
|
|
14523
|
+
before?: Maybe<Scalars['String']>;
|
|
14524
|
+
};
|
|
14525
|
+
export declare type JiraVotesFieldOperationInput = {
|
|
14526
|
+
operation: JiraVotesOperations;
|
|
14527
|
+
};
|
|
14528
|
+
export declare type JiraVotesFieldPayload = Payload & {
|
|
14529
|
+
__typename?: 'JiraVotesFieldPayload';
|
|
14530
|
+
success: Scalars['Boolean'];
|
|
14531
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14532
|
+
field?: Maybe<JiraVotesField>;
|
|
14533
|
+
};
|
|
14534
|
+
export declare enum JiraVotesOperations {
|
|
14535
|
+
Add = "ADD",
|
|
14536
|
+
Remove = "REMOVE"
|
|
14537
|
+
}
|
|
14416
14538
|
export declare type JiraWatch = {
|
|
14417
14539
|
__typename?: 'JiraWatch';
|
|
14418
14540
|
isWatching?: Maybe<Scalars['Boolean']>;
|
|
@@ -14427,9 +14549,38 @@ export declare type JiraWatchesField = Node & JiraIssueField & JiraIssueFieldCon
|
|
|
14427
14549
|
name: Scalars['String'];
|
|
14428
14550
|
description?: Maybe<Scalars['String']>;
|
|
14429
14551
|
watch?: Maybe<JiraWatch>;
|
|
14552
|
+
selectedUsersConnection?: Maybe<JiraUserConnection>;
|
|
14553
|
+
suggestedWatchers?: Maybe<JiraUserConnection>;
|
|
14430
14554
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
14431
14555
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
14432
14556
|
};
|
|
14557
|
+
export declare type JiraWatchesFieldSelectedUsersConnectionArgs = {
|
|
14558
|
+
first?: Maybe<Scalars['Int']>;
|
|
14559
|
+
after?: Maybe<Scalars['String']>;
|
|
14560
|
+
last?: Maybe<Scalars['Int']>;
|
|
14561
|
+
before?: Maybe<Scalars['String']>;
|
|
14562
|
+
};
|
|
14563
|
+
export declare type JiraWatchesFieldSuggestedWatchersArgs = {
|
|
14564
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
14565
|
+
first?: Maybe<Scalars['Int']>;
|
|
14566
|
+
after?: Maybe<Scalars['String']>;
|
|
14567
|
+
last?: Maybe<Scalars['Int']>;
|
|
14568
|
+
before?: Maybe<Scalars['String']>;
|
|
14569
|
+
};
|
|
14570
|
+
export declare type JiraWatchesFieldOperationInput = {
|
|
14571
|
+
operation: JiraWatchesOperations;
|
|
14572
|
+
accountId?: Maybe<Scalars['ID']>;
|
|
14573
|
+
};
|
|
14574
|
+
export declare type JiraWatchesFieldPayload = Payload & {
|
|
14575
|
+
__typename?: 'JiraWatchesFieldPayload';
|
|
14576
|
+
success: Scalars['Boolean'];
|
|
14577
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14578
|
+
field?: Maybe<JiraWatchesField>;
|
|
14579
|
+
};
|
|
14580
|
+
export declare enum JiraWatchesOperations {
|
|
14581
|
+
Add = "ADD",
|
|
14582
|
+
Remove = "REMOVE"
|
|
14583
|
+
}
|
|
14433
14584
|
export declare type JiraWorkCategory = {
|
|
14434
14585
|
__typename?: 'JiraWorkCategory';
|
|
14435
14586
|
value?: Maybe<Scalars['String']>;
|
|
@@ -22417,6 +22568,14 @@ export declare type VirtualAgentDeleteIntentRuleProjectionPayload = Payload & {
|
|
|
22417
22568
|
success: Scalars['Boolean'];
|
|
22418
22569
|
errors?: Maybe<Array<MutationError>>;
|
|
22419
22570
|
};
|
|
22571
|
+
export declare type VirtualAgentFlowEditor = Node & {
|
|
22572
|
+
__typename?: 'VirtualAgentFlowEditor';
|
|
22573
|
+
id: Scalars['ID'];
|
|
22574
|
+
name?: Maybe<Scalars['String']>;
|
|
22575
|
+
group?: Maybe<Scalars['String']>;
|
|
22576
|
+
jsonRepresentation?: Maybe<Scalars['String']>;
|
|
22577
|
+
};
|
|
22578
|
+
export declare type VirtualAgentFlowEditorResult = VirtualAgentFlowEditor | VirtualAgentQueryError;
|
|
22420
22579
|
export declare type VirtualAgentIntentProjection = Node & {
|
|
22421
22580
|
__typename?: 'VirtualAgentIntentProjection';
|
|
22422
22581
|
id: Scalars['ID'];
|