@forge/cli-shared 3.6.1-next.6 → 3.6.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 +31 -0
- package/out/graphql/graphql-types.d.ts +219 -11
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +15 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.6.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- af4c149: Update webpack-related packages and remove unused
|
|
8
|
+
- ba6d381: Bumping dependencies via Renovate:
|
|
9
|
+
|
|
10
|
+
- @types/cross-spawn
|
|
11
|
+
|
|
12
|
+
- 66da5d9: Bumping dependencies via Renovate:
|
|
13
|
+
|
|
14
|
+
- conf
|
|
15
|
+
|
|
16
|
+
- 203f465: Bumping dependencies via Renovate:
|
|
17
|
+
|
|
18
|
+
- @types/inquirer
|
|
19
|
+
|
|
20
|
+
- bd43f8f: feature flagged experimental changes to scope validation
|
|
21
|
+
- 1508104: Bumping dependencies via Renovate:
|
|
22
|
+
|
|
23
|
+
- @types/cheerio
|
|
24
|
+
|
|
25
|
+
- Updated dependencies [af4c149]
|
|
26
|
+
- Updated dependencies [37eee39]
|
|
27
|
+
- Updated dependencies [ce555b4]
|
|
28
|
+
- Updated dependencies [43d62903]
|
|
29
|
+
- Updated dependencies [8e0605e]
|
|
30
|
+
- Updated dependencies [80e6b95]
|
|
31
|
+
- @forge/util@1.2.1
|
|
32
|
+
- @forge/manifest@4.7.0
|
|
33
|
+
|
|
3
34
|
## 3.6.1-next.6
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|
|
@@ -1535,7 +1535,7 @@ export declare type BoardScope = Node & {
|
|
|
1535
1535
|
admins?: Maybe<Array<Maybe<Admin>>>;
|
|
1536
1536
|
canAdministerBoard?: Maybe<Scalars['Boolean']>;
|
|
1537
1537
|
jql?: Maybe<Scalars['String']>;
|
|
1538
|
-
|
|
1538
|
+
sprintWithStatistics?: Maybe<Array<Maybe<SprintWithStatistics>>>;
|
|
1539
1539
|
};
|
|
1540
1540
|
export declare type BoardScopeSprintsArgs = {
|
|
1541
1541
|
state?: Maybe<Array<Maybe<SprintState>>>;
|
|
@@ -1554,7 +1554,7 @@ export declare type BoardScopeFilteredCardIdsArgs = {
|
|
|
1554
1554
|
issueIds: Array<Maybe<Scalars['ID']>>;
|
|
1555
1555
|
customFilterIds: Array<Maybe<Scalars['ID']>>;
|
|
1556
1556
|
};
|
|
1557
|
-
export declare type
|
|
1557
|
+
export declare type BoardScopeSprintWithStatisticsArgs = {
|
|
1558
1558
|
sprintIds?: Maybe<Array<Scalars['ID']>>;
|
|
1559
1559
|
};
|
|
1560
1560
|
export declare type BoardScopeConnection = {
|
|
@@ -3746,14 +3746,6 @@ export declare type CompleteSprintResponse = MutationResponse & {
|
|
|
3746
3746
|
success: Scalars['Boolean'];
|
|
3747
3747
|
message: Scalars['String'];
|
|
3748
3748
|
};
|
|
3749
|
-
export declare type CompleteSprintStatistic = BaseSprint & {
|
|
3750
|
-
__typename?: 'CompleteSprintStatistic';
|
|
3751
|
-
id?: Maybe<Scalars['ID']>;
|
|
3752
|
-
name?: Maybe<Scalars['String']>;
|
|
3753
|
-
sprintState: SprintState;
|
|
3754
|
-
sprintMetadata?: Maybe<SoftwareSprintMetadata>;
|
|
3755
|
-
incompleteCardsDestinations?: Maybe<Array<Maybe<InCompleteCardsDestination>>>;
|
|
3756
|
-
};
|
|
3757
3749
|
export declare type ComponentSyncEvent = {
|
|
3758
3750
|
__typename?: 'ComponentSyncEvent';
|
|
3759
3751
|
time: Scalars['DateTime'];
|
|
@@ -9030,6 +9022,17 @@ export declare type JiraCascadingSelectFieldCascadingOptionsArgs = {
|
|
|
9030
9022
|
last?: Maybe<Scalars['Int']>;
|
|
9031
9023
|
before?: Maybe<Scalars['String']>;
|
|
9032
9024
|
};
|
|
9025
|
+
export declare type JiraCascadingSelectFieldOperationInput = {
|
|
9026
|
+
operation: JiraSingleValueFieldOperations;
|
|
9027
|
+
parentOption?: Maybe<Scalars['ID']>;
|
|
9028
|
+
childOption?: Maybe<Scalars['ID']>;
|
|
9029
|
+
};
|
|
9030
|
+
export declare type JiraCascadingSelectFieldPayload = Payload & {
|
|
9031
|
+
__typename?: 'JiraCascadingSelectFieldPayload';
|
|
9032
|
+
success: Scalars['Boolean'];
|
|
9033
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9034
|
+
field?: Maybe<JiraCascadingSelectField>;
|
|
9035
|
+
};
|
|
9033
9036
|
export declare enum JiraCascadingSelectOptionType {
|
|
9034
9037
|
Parent = "PARENT",
|
|
9035
9038
|
Child = "CHILD",
|
|
@@ -9359,6 +9362,10 @@ export declare type JiraComponentEdge = {
|
|
|
9359
9362
|
node?: Maybe<JiraComponent>;
|
|
9360
9363
|
cursor: Scalars['String'];
|
|
9361
9364
|
};
|
|
9365
|
+
export declare type JiraComponentFieldOperationInput = {
|
|
9366
|
+
operation: JiraMultiValueFieldOperations;
|
|
9367
|
+
ids: Array<Scalars['ID']>;
|
|
9368
|
+
};
|
|
9362
9369
|
export declare type JiraComponentsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9363
9370
|
__typename?: 'JiraComponentsField';
|
|
9364
9371
|
id: Scalars['ID'];
|
|
@@ -9386,6 +9393,12 @@ export declare type JiraComponentsFieldComponentsArgs = {
|
|
|
9386
9393
|
last?: Maybe<Scalars['Int']>;
|
|
9387
9394
|
before?: Maybe<Scalars['String']>;
|
|
9388
9395
|
};
|
|
9396
|
+
export declare type JiraComponentsFieldPayload = Payload & {
|
|
9397
|
+
__typename?: 'JiraComponentsFieldPayload';
|
|
9398
|
+
success: Scalars['Boolean'];
|
|
9399
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9400
|
+
field?: Maybe<JiraComponentsField>;
|
|
9401
|
+
};
|
|
9389
9402
|
export declare type JiraConnectDateTimeField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9390
9403
|
__typename?: 'JiraConnectDateTimeField';
|
|
9391
9404
|
id: Scalars['ID'];
|
|
@@ -9784,6 +9797,9 @@ export declare type JiraEstimate = {
|
|
|
9784
9797
|
__typename?: 'JiraEstimate';
|
|
9785
9798
|
timeInSeconds?: Maybe<Scalars['Long']>;
|
|
9786
9799
|
};
|
|
9800
|
+
export declare type JiraEstimateInput = {
|
|
9801
|
+
timeInSeconds: Scalars['Long'];
|
|
9802
|
+
};
|
|
9787
9803
|
export declare type JiraFavourite = JiraProject;
|
|
9788
9804
|
export declare type JiraFavouriteConnection = {
|
|
9789
9805
|
__typename?: 'JiraFavouriteConnection';
|
|
@@ -11686,6 +11702,7 @@ export declare type JiraMutation = {
|
|
|
11686
11702
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
11687
11703
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
11688
11704
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
11705
|
+
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
11689
11706
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
11690
11707
|
deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
|
|
11691
11708
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
@@ -11695,11 +11712,17 @@ export declare type JiraMutation = {
|
|
|
11695
11712
|
updateStoryPointEstimateField?: Maybe<JiraStoryPointEstimateFieldPayload>;
|
|
11696
11713
|
updateSingleSelectField?: Maybe<JiraSingleSelectFieldPayload>;
|
|
11697
11714
|
updateSingleLineTextField?: Maybe<JiraSingleLineTextFieldPayload>;
|
|
11715
|
+
updateTimeTrackingField?: Maybe<JiraTimeTrackingFieldPayload>;
|
|
11698
11716
|
updatePriorityField?: Maybe<JiraPriorityFieldPayload>;
|
|
11699
11717
|
updateVotesField?: Maybe<JiraVotesFieldPayload>;
|
|
11700
11718
|
updateColorField?: Maybe<JiraColorFieldPayload>;
|
|
11701
11719
|
updateSingleSelectUserPickerField?: Maybe<JiraSingleSelectUserPickerFieldPayload>;
|
|
11702
11720
|
updateWatchesField?: Maybe<JiraWatchesFieldPayload>;
|
|
11721
|
+
updateUrlField?: Maybe<JiraUrlFieldPayload>;
|
|
11722
|
+
updateSprintField?: Maybe<JiraSprintFieldPayload>;
|
|
11723
|
+
updateCascadingSelectField?: Maybe<JiraCascadingSelectFieldPayload>;
|
|
11724
|
+
updateRadioSelectField?: Maybe<JiraRadioSelectFieldPayload>;
|
|
11725
|
+
updateComponentsField?: Maybe<JiraComponentsFieldPayload>;
|
|
11703
11726
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
11704
11727
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
11705
11728
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
@@ -11746,6 +11769,9 @@ export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
|
11746
11769
|
export declare type JiraMutationSetEntityIsFavouriteArgs = {
|
|
11747
11770
|
input: JiraSetIsFavouriteInput;
|
|
11748
11771
|
};
|
|
11772
|
+
export declare type JiraMutationBulkCreateRequestTypeFromTemplateArgs = {
|
|
11773
|
+
input: JiraServiceManagementBulkCreateRequestTypeFromTemplateInput;
|
|
11774
|
+
};
|
|
11749
11775
|
export declare type JiraMutationGrantGlobalPermissionArgs = {
|
|
11750
11776
|
cloudId: Scalars['ID'];
|
|
11751
11777
|
input: JiraGlobalPermissionAddGroupGrantInput;
|
|
@@ -11775,6 +11801,9 @@ export declare type JiraMutationUpdateSingleSelectFieldArgs = {
|
|
|
11775
11801
|
export declare type JiraMutationUpdateSingleLineTextFieldArgs = {
|
|
11776
11802
|
input: JiraUpdateSingleLineTextFieldInput;
|
|
11777
11803
|
};
|
|
11804
|
+
export declare type JiraMutationUpdateTimeTrackingFieldArgs = {
|
|
11805
|
+
input: JiraUpdateTimeTrackingFieldInput;
|
|
11806
|
+
};
|
|
11778
11807
|
export declare type JiraMutationUpdatePriorityFieldArgs = {
|
|
11779
11808
|
input: JiraUpdatePriorityFieldInput;
|
|
11780
11809
|
};
|
|
@@ -11790,6 +11819,21 @@ export declare type JiraMutationUpdateSingleSelectUserPickerFieldArgs = {
|
|
|
11790
11819
|
export declare type JiraMutationUpdateWatchesFieldArgs = {
|
|
11791
11820
|
input: JiraUpdateWatchesFieldInput;
|
|
11792
11821
|
};
|
|
11822
|
+
export declare type JiraMutationUpdateUrlFieldArgs = {
|
|
11823
|
+
input: JiraUpdateUrlFieldInput;
|
|
11824
|
+
};
|
|
11825
|
+
export declare type JiraMutationUpdateSprintFieldArgs = {
|
|
11826
|
+
input: JiraUpdateSprintFieldInput;
|
|
11827
|
+
};
|
|
11828
|
+
export declare type JiraMutationUpdateCascadingSelectFieldArgs = {
|
|
11829
|
+
input: JiraUpdateCascadingSelectFieldInput;
|
|
11830
|
+
};
|
|
11831
|
+
export declare type JiraMutationUpdateRadioSelectFieldArgs = {
|
|
11832
|
+
input: JiraUpdateRadioSelectFieldInput;
|
|
11833
|
+
};
|
|
11834
|
+
export declare type JiraMutationUpdateComponentsFieldArgs = {
|
|
11835
|
+
input: JiraUpdateComponentsFieldInput;
|
|
11836
|
+
};
|
|
11793
11837
|
export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
11794
11838
|
input: JiraPermissionSchemeAddGrantInput;
|
|
11795
11839
|
};
|
|
@@ -12839,6 +12883,8 @@ export declare type JiraQuery = {
|
|
|
12839
12883
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
12840
12884
|
issueSearchTotalCount?: Maybe<Scalars['Int']>;
|
|
12841
12885
|
issueSearchStatus?: Maybe<JiraIssueSearchStatus>;
|
|
12886
|
+
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
12887
|
+
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
12842
12888
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
12843
12889
|
resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
|
|
12844
12890
|
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
@@ -13099,6 +13145,12 @@ export declare type JiraQueryIssueSearchStatusArgs = {
|
|
|
13099
13145
|
cloudId: Scalars['ID'];
|
|
13100
13146
|
jql: Scalars['String'];
|
|
13101
13147
|
};
|
|
13148
|
+
export declare type JiraQueryRequestTypeTemplatesArgs = {
|
|
13149
|
+
cloudId: Scalars['ID'];
|
|
13150
|
+
};
|
|
13151
|
+
export declare type JiraQueryRequestTypeTemplateDefaultConfigurationDependenciesArgs = {
|
|
13152
|
+
projectId: Scalars['ID'];
|
|
13153
|
+
};
|
|
13102
13154
|
export declare type JiraQueryResourceUsageMetricByIdArgs = {
|
|
13103
13155
|
id: Scalars['ID'];
|
|
13104
13156
|
};
|
|
@@ -13143,6 +13195,16 @@ export declare type JiraRadioSelectFieldFieldOptionsArgs = {
|
|
|
13143
13195
|
last?: Maybe<Scalars['Int']>;
|
|
13144
13196
|
before?: Maybe<Scalars['String']>;
|
|
13145
13197
|
};
|
|
13198
|
+
export declare type JiraRadioSelectFieldOperationInput = {
|
|
13199
|
+
operation: JiraSingleValueFieldOperations;
|
|
13200
|
+
id?: Maybe<Scalars['ID']>;
|
|
13201
|
+
};
|
|
13202
|
+
export declare type JiraRadioSelectFieldPayload = Payload & {
|
|
13203
|
+
__typename?: 'JiraRadioSelectFieldPayload';
|
|
13204
|
+
success: Scalars['Boolean'];
|
|
13205
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13206
|
+
field?: Maybe<JiraRadioSelectField>;
|
|
13207
|
+
};
|
|
13146
13208
|
export declare type JiraReleaseNotesConfiguration = {
|
|
13147
13209
|
__typename?: 'JiraReleaseNotesConfiguration';
|
|
13148
13210
|
issueFieldIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
@@ -13630,6 +13692,10 @@ export declare type JiraServiceManagementAttachment = JiraAttachment & Node & {
|
|
|
13630
13692
|
parentCommentVisibility?: Maybe<JiraServiceManagementCommentVisibility>;
|
|
13631
13693
|
hasRestrictedParent?: Maybe<Scalars['Boolean']>;
|
|
13632
13694
|
};
|
|
13695
|
+
export declare type JiraServiceManagementBulkCreateRequestTypeFromTemplateInput = {
|
|
13696
|
+
createRequestTypeFromTemplateInputItems: Array<JiraServiceManagementCreateRequestTypeFromTemplateInput>;
|
|
13697
|
+
projectId: Scalars['ID'];
|
|
13698
|
+
};
|
|
13633
13699
|
export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
13634
13700
|
__typename?: 'JiraServiceManagementComment';
|
|
13635
13701
|
id: Scalars['ID'];
|
|
@@ -13677,6 +13743,54 @@ export declare type JiraServiceManagementCompletedApprovalEdge = {
|
|
|
13677
13743
|
node?: Maybe<JiraServiceManagementCompletedApproval>;
|
|
13678
13744
|
cursor: Scalars['String'];
|
|
13679
13745
|
};
|
|
13746
|
+
export declare type JiraServiceManagementCreateRequestTypeFromTemplateInput = {
|
|
13747
|
+
name: Scalars['String'];
|
|
13748
|
+
description?: Maybe<Scalars['String']>;
|
|
13749
|
+
requestTypeIconInternalId?: Maybe<Scalars['String']>;
|
|
13750
|
+
requestTypeGroup?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplateRequestTypeGroupInput>;
|
|
13751
|
+
requestForm?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplateRequestFormInput>;
|
|
13752
|
+
workflow?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplateWorkflowInput>;
|
|
13753
|
+
clientMutationId: Scalars['String'];
|
|
13754
|
+
};
|
|
13755
|
+
export declare type JiraServiceManagementCreateRequestTypeFromTemplatePayload = Payload & {
|
|
13756
|
+
__typename?: 'JiraServiceManagementCreateRequestTypeFromTemplatePayload';
|
|
13757
|
+
success: Scalars['Boolean'];
|
|
13758
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13759
|
+
createRequestTypeResults: Array<JiraServiceManagementCreateRequestTypeFromTemplateResult>;
|
|
13760
|
+
};
|
|
13761
|
+
export declare type JiraServiceManagementCreateRequestTypeFromTemplateReferenceInput = {
|
|
13762
|
+
formTemplateInternalId: Scalars['String'];
|
|
13763
|
+
};
|
|
13764
|
+
export declare type JiraServiceManagementCreateRequestTypeFromTemplateRequestFormInput = {
|
|
13765
|
+
inputType: JiraServiceManagementCreateRequestTypeFromTemplateRequestFormInputType;
|
|
13766
|
+
templateFormReferenceInput?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplateReferenceInput>;
|
|
13767
|
+
};
|
|
13768
|
+
export declare enum JiraServiceManagementCreateRequestTypeFromTemplateRequestFormInputType {
|
|
13769
|
+
FormTemplateReference = "FORM_TEMPLATE_REFERENCE"
|
|
13770
|
+
}
|
|
13771
|
+
export declare type JiraServiceManagementCreateRequestTypeFromTemplateRequestTypeGroupInput = {
|
|
13772
|
+
requestTypeGroupInternalIds: Array<Scalars['String']>;
|
|
13773
|
+
};
|
|
13774
|
+
export declare type JiraServiceManagementCreateRequestTypeFromTemplateResult = Payload & {
|
|
13775
|
+
__typename?: 'JiraServiceManagementCreateRequestTypeFromTemplateResult';
|
|
13776
|
+
clientMutationId: Scalars['String'];
|
|
13777
|
+
success: Scalars['Boolean'];
|
|
13778
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13779
|
+
};
|
|
13780
|
+
export declare enum JiraServiceManagementCreateRequestTypeFromTemplateWorkflowAction {
|
|
13781
|
+
Share = "SHARE"
|
|
13782
|
+
}
|
|
13783
|
+
export declare type JiraServiceManagementCreateRequestTypeFromTemplateWorkflowInput = {
|
|
13784
|
+
action: JiraServiceManagementCreateRequestTypeFromTemplateWorkflowAction;
|
|
13785
|
+
inputType: JiraServiceManagementCreateRequestTypeFromTemplateWorkflowInputType;
|
|
13786
|
+
workflowIssueTypeReferenceInput?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplateWorkflowIssueTypeReferenceInput>;
|
|
13787
|
+
};
|
|
13788
|
+
export declare enum JiraServiceManagementCreateRequestTypeFromTemplateWorkflowInputType {
|
|
13789
|
+
ReferenceThroughIssueType = "REFERENCE_THROUGH_ISSUE_TYPE"
|
|
13790
|
+
}
|
|
13791
|
+
export declare type JiraServiceManagementCreateRequestTypeFromTemplateWorkflowIssueTypeReferenceInput = {
|
|
13792
|
+
workflowIssueTypeId?: Maybe<Scalars['ID']>;
|
|
13793
|
+
};
|
|
13680
13794
|
export declare type JiraServiceManagementDateTimeField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
13681
13795
|
__typename?: 'JiraServiceManagementDateTimeField';
|
|
13682
13796
|
id: Scalars['ID'];
|
|
@@ -13943,6 +14057,35 @@ export declare type JiraServiceManagementRequestTypePractice = {
|
|
|
13943
14057
|
__typename?: 'JiraServiceManagementRequestTypePractice';
|
|
13944
14058
|
key?: Maybe<JiraServiceManagementPractice>;
|
|
13945
14059
|
};
|
|
14060
|
+
export declare type JiraServiceManagementRequestTypeTemplate = {
|
|
14061
|
+
__typename?: 'JiraServiceManagementRequestTypeTemplate';
|
|
14062
|
+
formTemplateInternalId: Scalars['String'];
|
|
14063
|
+
name?: Maybe<Scalars['String']>;
|
|
14064
|
+
description?: Maybe<Scalars['String']>;
|
|
14065
|
+
groups?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
14066
|
+
};
|
|
14067
|
+
export declare type JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies = {
|
|
14068
|
+
__typename?: 'JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies';
|
|
14069
|
+
workflow?: Maybe<JiraServiceManagementRequestTypeTemplateWorkflow>;
|
|
14070
|
+
requestTypeGroup?: Maybe<JiraServiceManagementRequestTypeTemplateRequestTypeGroup>;
|
|
14071
|
+
requestTypeIcon?: Maybe<JiraServiceManagementRequestTypeTemplateRequestTypeIcon>;
|
|
14072
|
+
};
|
|
14073
|
+
export declare type JiraServiceManagementRequestTypeTemplateRequestTypeGroup = {
|
|
14074
|
+
__typename?: 'JiraServiceManagementRequestTypeTemplateRequestTypeGroup';
|
|
14075
|
+
requestTypeGroupInternalId: Scalars['String'];
|
|
14076
|
+
requestTypeGroupName?: Maybe<Scalars['String']>;
|
|
14077
|
+
};
|
|
14078
|
+
export declare type JiraServiceManagementRequestTypeTemplateRequestTypeIcon = {
|
|
14079
|
+
__typename?: 'JiraServiceManagementRequestTypeTemplateRequestTypeIcon';
|
|
14080
|
+
requestTypeIconInternalId: Scalars['String'];
|
|
14081
|
+
};
|
|
14082
|
+
export declare type JiraServiceManagementRequestTypeTemplateWorkflow = {
|
|
14083
|
+
__typename?: 'JiraServiceManagementRequestTypeTemplateWorkflow';
|
|
14084
|
+
workflowId: Scalars['ID'];
|
|
14085
|
+
workflowName?: Maybe<Scalars['String']>;
|
|
14086
|
+
workflowIssueTypeId?: Maybe<Scalars['ID']>;
|
|
14087
|
+
workflowIssueTypeName?: Maybe<Scalars['String']>;
|
|
14088
|
+
};
|
|
13946
14089
|
export declare type JiraServiceManagementResponder = JiraServiceManagementUserResponder | JiraServiceManagementTeamResponder;
|
|
13947
14090
|
export declare type JiraServiceManagementResponderConnection = {
|
|
13948
14091
|
__typename?: 'JiraServiceManagementResponderConnection';
|
|
@@ -14304,12 +14447,23 @@ export declare type JiraSprintFieldSelectedSprintsConnectionArgs = {
|
|
|
14304
14447
|
};
|
|
14305
14448
|
export declare type JiraSprintFieldSprintsArgs = {
|
|
14306
14449
|
searchBy?: Maybe<Scalars['String']>;
|
|
14450
|
+
currentProjectOnly?: Maybe<Scalars['Boolean']>;
|
|
14307
14451
|
first?: Maybe<Scalars['Int']>;
|
|
14308
14452
|
after?: Maybe<Scalars['String']>;
|
|
14309
14453
|
last?: Maybe<Scalars['Int']>;
|
|
14310
14454
|
before?: Maybe<Scalars['String']>;
|
|
14311
14455
|
state?: Maybe<JiraSprintState>;
|
|
14312
14456
|
};
|
|
14457
|
+
export declare type JiraSprintFieldOperationInput = {
|
|
14458
|
+
operation: JiraSingleValueFieldOperations;
|
|
14459
|
+
id?: Maybe<Scalars['ID']>;
|
|
14460
|
+
};
|
|
14461
|
+
export declare type JiraSprintFieldPayload = Payload & {
|
|
14462
|
+
__typename?: 'JiraSprintFieldPayload';
|
|
14463
|
+
success: Scalars['Boolean'];
|
|
14464
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14465
|
+
field?: Maybe<JiraSprintField>;
|
|
14466
|
+
};
|
|
14313
14467
|
export declare enum JiraSprintState {
|
|
14314
14468
|
Active = "ACTIVE",
|
|
14315
14469
|
Future = "FUTURE",
|
|
@@ -14493,6 +14647,12 @@ export declare type JiraTimeTrackingField = Node & JiraIssueField & JiraIssueFie
|
|
|
14493
14647
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
14494
14648
|
timeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
14495
14649
|
};
|
|
14650
|
+
export declare type JiraTimeTrackingFieldPayload = Payload & {
|
|
14651
|
+
__typename?: 'JiraTimeTrackingFieldPayload';
|
|
14652
|
+
success: Scalars['Boolean'];
|
|
14653
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14654
|
+
field?: Maybe<JiraTimeTrackingField>;
|
|
14655
|
+
};
|
|
14496
14656
|
export declare type JiraTimeTrackingSettings = {
|
|
14497
14657
|
__typename?: 'JiraTimeTrackingSettings';
|
|
14498
14658
|
isJiraConfiguredTimeTrackingEnabled?: Maybe<Scalars['Boolean']>;
|
|
@@ -14507,10 +14667,18 @@ export declare enum JiraTimeUnit {
|
|
|
14507
14667
|
Day = "DAY",
|
|
14508
14668
|
Week = "WEEK"
|
|
14509
14669
|
}
|
|
14670
|
+
export declare type JiraUpdateCascadingSelectFieldInput = {
|
|
14671
|
+
id: Scalars['ID'];
|
|
14672
|
+
operation: JiraCascadingSelectFieldOperationInput;
|
|
14673
|
+
};
|
|
14510
14674
|
export declare type JiraUpdateColorFieldInput = {
|
|
14511
14675
|
id: Scalars['ID'];
|
|
14512
14676
|
operation: JiraColorFieldOperationInput;
|
|
14513
14677
|
};
|
|
14678
|
+
export declare type JiraUpdateComponentsFieldInput = {
|
|
14679
|
+
id: Scalars['ID'];
|
|
14680
|
+
operations: Array<JiraComponentFieldOperationInput>;
|
|
14681
|
+
};
|
|
14514
14682
|
export declare type JiraUpdateCustomFilterDetailsInput = {
|
|
14515
14683
|
id: Scalars['ID'];
|
|
14516
14684
|
name: Scalars['String'];
|
|
@@ -14554,6 +14722,10 @@ export declare type JiraUpdatePriorityFieldInput = {
|
|
|
14554
14722
|
id: Scalars['ID'];
|
|
14555
14723
|
operation: JiraPriorityFieldOperationInput;
|
|
14556
14724
|
};
|
|
14725
|
+
export declare type JiraUpdateRadioSelectFieldInput = {
|
|
14726
|
+
id: Scalars['ID'];
|
|
14727
|
+
operation: JiraRadioSelectFieldOperationInput;
|
|
14728
|
+
};
|
|
14557
14729
|
export declare type JiraUpdateReleaseNotesConfigurationInput = {
|
|
14558
14730
|
id: Scalars['ID'];
|
|
14559
14731
|
issueFieldIds: Array<Scalars['ID']>;
|
|
@@ -14584,10 +14756,22 @@ export declare type JiraUpdateSingleSelectUserPickerFieldInput = {
|
|
|
14584
14756
|
id: Scalars['ID'];
|
|
14585
14757
|
operation: JiraSingleSelectUserPickerFieldOperationInput;
|
|
14586
14758
|
};
|
|
14759
|
+
export declare type JiraUpdateSprintFieldInput = {
|
|
14760
|
+
id: Scalars['ID'];
|
|
14761
|
+
operation: JiraSprintFieldOperationInput;
|
|
14762
|
+
};
|
|
14587
14763
|
export declare type JiraUpdateStoryPointEstimateFieldInput = {
|
|
14588
14764
|
id: Scalars['ID'];
|
|
14589
14765
|
operation: JiraStoryPointEstimateFieldOperationInput;
|
|
14590
14766
|
};
|
|
14767
|
+
export declare type JiraUpdateTimeTrackingFieldInput = {
|
|
14768
|
+
id: Scalars['ID'];
|
|
14769
|
+
originalEstimate?: Maybe<JiraEstimateInput>;
|
|
14770
|
+
};
|
|
14771
|
+
export declare type JiraUpdateUrlFieldInput = {
|
|
14772
|
+
id: Scalars['ID'];
|
|
14773
|
+
operation: JiraUrlFieldOperationInput;
|
|
14774
|
+
};
|
|
14591
14775
|
export declare type JiraUpdateVersionDescriptionInput = {
|
|
14592
14776
|
id: Scalars['ID'];
|
|
14593
14777
|
description?: Maybe<Scalars['String']>;
|
|
@@ -14653,6 +14837,16 @@ export declare type JiraUrlField = Node & JiraIssueField & JiraIssueFieldConfigu
|
|
|
14653
14837
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
14654
14838
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
14655
14839
|
};
|
|
14840
|
+
export declare type JiraUrlFieldOperationInput = {
|
|
14841
|
+
operation: JiraSingleValueFieldOperations;
|
|
14842
|
+
uri?: Maybe<Scalars['String']>;
|
|
14843
|
+
};
|
|
14844
|
+
export declare type JiraUrlFieldPayload = Payload & {
|
|
14845
|
+
__typename?: 'JiraUrlFieldPayload';
|
|
14846
|
+
success: Scalars['Boolean'];
|
|
14847
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14848
|
+
field?: Maybe<JiraUrlField>;
|
|
14849
|
+
};
|
|
14656
14850
|
export declare type JiraUser = {
|
|
14657
14851
|
__typename?: 'JiraUser';
|
|
14658
14852
|
accountId?: Maybe<Scalars['String']>;
|
|
@@ -18687,14 +18881,20 @@ export declare type ProductListing = {
|
|
|
18687
18881
|
name: Scalars['String'];
|
|
18688
18882
|
productId: Scalars['ID'];
|
|
18689
18883
|
shortDescription: Scalars['String'];
|
|
18690
|
-
|
|
18884
|
+
tagLine: Scalars['String'];
|
|
18691
18885
|
logoUrl?: Maybe<Scalars['String']>;
|
|
18886
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
18887
|
+
links: ProductListingLinks;
|
|
18692
18888
|
additionalIds: ProductListingAdditionalIds;
|
|
18693
18889
|
};
|
|
18694
18890
|
export declare type ProductListingLogoUrlArgs = {
|
|
18695
18891
|
theme?: Maybe<Scalars['String']>;
|
|
18696
18892
|
strict?: Maybe<Scalars['Boolean']>;
|
|
18697
18893
|
};
|
|
18894
|
+
export declare type ProductListingIconUrlArgs = {
|
|
18895
|
+
theme?: Maybe<Scalars['String']>;
|
|
18896
|
+
strict?: Maybe<Scalars['Boolean']>;
|
|
18897
|
+
};
|
|
18698
18898
|
export declare type ProductListingAdditionalIds = {
|
|
18699
18899
|
__typename?: 'ProductListingAdditionalIds';
|
|
18700
18900
|
mpacAppKey?: Maybe<Scalars['String']>;
|
|
@@ -21575,6 +21775,14 @@ export declare enum SprintState {
|
|
|
21575
21775
|
Future = "FUTURE",
|
|
21576
21776
|
Closed = "CLOSED"
|
|
21577
21777
|
}
|
|
21778
|
+
export declare type SprintWithStatistics = BaseSprint & {
|
|
21779
|
+
__typename?: 'SprintWithStatistics';
|
|
21780
|
+
id?: Maybe<Scalars['ID']>;
|
|
21781
|
+
name?: Maybe<Scalars['String']>;
|
|
21782
|
+
sprintState: SprintState;
|
|
21783
|
+
sprintMetadata?: Maybe<SoftwareSprintMetadata>;
|
|
21784
|
+
incompleteCardsDestinations?: Maybe<Array<Maybe<InCompleteCardsDestination>>>;
|
|
21785
|
+
};
|
|
21578
21786
|
export declare type StartSprintInput = {
|
|
21579
21787
|
boardId: Scalars['ID'];
|
|
21580
21788
|
sprintId: Scalars['ID'];
|