@forge/cli-shared 3.6.1-next.5 → 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 +42 -0
- package/out/graphql/graphql-types.d.ts +223 -11
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +15 -3
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
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
|
+
|
|
34
|
+
## 3.6.1-next.6
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- 66da5d9: Bumping dependencies via Renovate:
|
|
39
|
+
|
|
40
|
+
- conf
|
|
41
|
+
|
|
42
|
+
- Updated dependencies [8e0605e]
|
|
43
|
+
- @forge/manifest@4.7.0-next.4
|
|
44
|
+
|
|
3
45
|
## 3.6.1-next.5
|
|
4
46
|
|
|
5
47
|
### 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'];
|
|
@@ -4911,6 +4903,8 @@ export declare type ContentPlatformReleaseNoteFilterOptions = {
|
|
|
4911
4903
|
featureRolloutDates?: Maybe<Array<Scalars['String']>>;
|
|
4912
4904
|
releaseNoteFlags?: Maybe<Array<Scalars['String']>>;
|
|
4913
4905
|
productFeatureFlags?: Maybe<Scalars['JSON']>;
|
|
4906
|
+
featureFlagEnvironment?: Maybe<Scalars['JSON']>;
|
|
4907
|
+
featureFlagProject?: Maybe<Scalars['JSON']>;
|
|
4914
4908
|
releaseNoteFlagOffValues?: Maybe<Array<Scalars['String']>>;
|
|
4915
4909
|
updatedAt?: Maybe<ContentPlatformDateRangeFilter>;
|
|
4916
4910
|
};
|
|
@@ -9028,6 +9022,17 @@ export declare type JiraCascadingSelectFieldCascadingOptionsArgs = {
|
|
|
9028
9022
|
last?: Maybe<Scalars['Int']>;
|
|
9029
9023
|
before?: Maybe<Scalars['String']>;
|
|
9030
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
|
+
};
|
|
9031
9036
|
export declare enum JiraCascadingSelectOptionType {
|
|
9032
9037
|
Parent = "PARENT",
|
|
9033
9038
|
Child = "CHILD",
|
|
@@ -9357,6 +9362,10 @@ export declare type JiraComponentEdge = {
|
|
|
9357
9362
|
node?: Maybe<JiraComponent>;
|
|
9358
9363
|
cursor: Scalars['String'];
|
|
9359
9364
|
};
|
|
9365
|
+
export declare type JiraComponentFieldOperationInput = {
|
|
9366
|
+
operation: JiraMultiValueFieldOperations;
|
|
9367
|
+
ids: Array<Scalars['ID']>;
|
|
9368
|
+
};
|
|
9360
9369
|
export declare type JiraComponentsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9361
9370
|
__typename?: 'JiraComponentsField';
|
|
9362
9371
|
id: Scalars['ID'];
|
|
@@ -9384,6 +9393,12 @@ export declare type JiraComponentsFieldComponentsArgs = {
|
|
|
9384
9393
|
last?: Maybe<Scalars['Int']>;
|
|
9385
9394
|
before?: Maybe<Scalars['String']>;
|
|
9386
9395
|
};
|
|
9396
|
+
export declare type JiraComponentsFieldPayload = Payload & {
|
|
9397
|
+
__typename?: 'JiraComponentsFieldPayload';
|
|
9398
|
+
success: Scalars['Boolean'];
|
|
9399
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9400
|
+
field?: Maybe<JiraComponentsField>;
|
|
9401
|
+
};
|
|
9387
9402
|
export declare type JiraConnectDateTimeField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9388
9403
|
__typename?: 'JiraConnectDateTimeField';
|
|
9389
9404
|
id: Scalars['ID'];
|
|
@@ -9782,6 +9797,9 @@ export declare type JiraEstimate = {
|
|
|
9782
9797
|
__typename?: 'JiraEstimate';
|
|
9783
9798
|
timeInSeconds?: Maybe<Scalars['Long']>;
|
|
9784
9799
|
};
|
|
9800
|
+
export declare type JiraEstimateInput = {
|
|
9801
|
+
timeInSeconds: Scalars['Long'];
|
|
9802
|
+
};
|
|
9785
9803
|
export declare type JiraFavourite = JiraProject;
|
|
9786
9804
|
export declare type JiraFavouriteConnection = {
|
|
9787
9805
|
__typename?: 'JiraFavouriteConnection';
|
|
@@ -11684,6 +11702,7 @@ export declare type JiraMutation = {
|
|
|
11684
11702
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
11685
11703
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
11686
11704
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
11705
|
+
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
11687
11706
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
11688
11707
|
deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
|
|
11689
11708
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
@@ -11693,11 +11712,17 @@ export declare type JiraMutation = {
|
|
|
11693
11712
|
updateStoryPointEstimateField?: Maybe<JiraStoryPointEstimateFieldPayload>;
|
|
11694
11713
|
updateSingleSelectField?: Maybe<JiraSingleSelectFieldPayload>;
|
|
11695
11714
|
updateSingleLineTextField?: Maybe<JiraSingleLineTextFieldPayload>;
|
|
11715
|
+
updateTimeTrackingField?: Maybe<JiraTimeTrackingFieldPayload>;
|
|
11696
11716
|
updatePriorityField?: Maybe<JiraPriorityFieldPayload>;
|
|
11697
11717
|
updateVotesField?: Maybe<JiraVotesFieldPayload>;
|
|
11698
11718
|
updateColorField?: Maybe<JiraColorFieldPayload>;
|
|
11699
11719
|
updateSingleSelectUserPickerField?: Maybe<JiraSingleSelectUserPickerFieldPayload>;
|
|
11700
11720
|
updateWatchesField?: Maybe<JiraWatchesFieldPayload>;
|
|
11721
|
+
updateUrlField?: Maybe<JiraUrlFieldPayload>;
|
|
11722
|
+
updateSprintField?: Maybe<JiraSprintFieldPayload>;
|
|
11723
|
+
updateCascadingSelectField?: Maybe<JiraCascadingSelectFieldPayload>;
|
|
11724
|
+
updateRadioSelectField?: Maybe<JiraRadioSelectFieldPayload>;
|
|
11725
|
+
updateComponentsField?: Maybe<JiraComponentsFieldPayload>;
|
|
11701
11726
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
11702
11727
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
11703
11728
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
@@ -11744,6 +11769,9 @@ export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
|
11744
11769
|
export declare type JiraMutationSetEntityIsFavouriteArgs = {
|
|
11745
11770
|
input: JiraSetIsFavouriteInput;
|
|
11746
11771
|
};
|
|
11772
|
+
export declare type JiraMutationBulkCreateRequestTypeFromTemplateArgs = {
|
|
11773
|
+
input: JiraServiceManagementBulkCreateRequestTypeFromTemplateInput;
|
|
11774
|
+
};
|
|
11747
11775
|
export declare type JiraMutationGrantGlobalPermissionArgs = {
|
|
11748
11776
|
cloudId: Scalars['ID'];
|
|
11749
11777
|
input: JiraGlobalPermissionAddGroupGrantInput;
|
|
@@ -11773,6 +11801,9 @@ export declare type JiraMutationUpdateSingleSelectFieldArgs = {
|
|
|
11773
11801
|
export declare type JiraMutationUpdateSingleLineTextFieldArgs = {
|
|
11774
11802
|
input: JiraUpdateSingleLineTextFieldInput;
|
|
11775
11803
|
};
|
|
11804
|
+
export declare type JiraMutationUpdateTimeTrackingFieldArgs = {
|
|
11805
|
+
input: JiraUpdateTimeTrackingFieldInput;
|
|
11806
|
+
};
|
|
11776
11807
|
export declare type JiraMutationUpdatePriorityFieldArgs = {
|
|
11777
11808
|
input: JiraUpdatePriorityFieldInput;
|
|
11778
11809
|
};
|
|
@@ -11788,6 +11819,21 @@ export declare type JiraMutationUpdateSingleSelectUserPickerFieldArgs = {
|
|
|
11788
11819
|
export declare type JiraMutationUpdateWatchesFieldArgs = {
|
|
11789
11820
|
input: JiraUpdateWatchesFieldInput;
|
|
11790
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
|
+
};
|
|
11791
11837
|
export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
11792
11838
|
input: JiraPermissionSchemeAddGrantInput;
|
|
11793
11839
|
};
|
|
@@ -12837,6 +12883,8 @@ export declare type JiraQuery = {
|
|
|
12837
12883
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
12838
12884
|
issueSearchTotalCount?: Maybe<Scalars['Int']>;
|
|
12839
12885
|
issueSearchStatus?: Maybe<JiraIssueSearchStatus>;
|
|
12886
|
+
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
12887
|
+
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
12840
12888
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
12841
12889
|
resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
|
|
12842
12890
|
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
@@ -13097,6 +13145,12 @@ export declare type JiraQueryIssueSearchStatusArgs = {
|
|
|
13097
13145
|
cloudId: Scalars['ID'];
|
|
13098
13146
|
jql: Scalars['String'];
|
|
13099
13147
|
};
|
|
13148
|
+
export declare type JiraQueryRequestTypeTemplatesArgs = {
|
|
13149
|
+
cloudId: Scalars['ID'];
|
|
13150
|
+
};
|
|
13151
|
+
export declare type JiraQueryRequestTypeTemplateDefaultConfigurationDependenciesArgs = {
|
|
13152
|
+
projectId: Scalars['ID'];
|
|
13153
|
+
};
|
|
13100
13154
|
export declare type JiraQueryResourceUsageMetricByIdArgs = {
|
|
13101
13155
|
id: Scalars['ID'];
|
|
13102
13156
|
};
|
|
@@ -13141,6 +13195,16 @@ export declare type JiraRadioSelectFieldFieldOptionsArgs = {
|
|
|
13141
13195
|
last?: Maybe<Scalars['Int']>;
|
|
13142
13196
|
before?: Maybe<Scalars['String']>;
|
|
13143
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
|
+
};
|
|
13144
13208
|
export declare type JiraReleaseNotesConfiguration = {
|
|
13145
13209
|
__typename?: 'JiraReleaseNotesConfiguration';
|
|
13146
13210
|
issueFieldIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
@@ -13628,6 +13692,10 @@ export declare type JiraServiceManagementAttachment = JiraAttachment & Node & {
|
|
|
13628
13692
|
parentCommentVisibility?: Maybe<JiraServiceManagementCommentVisibility>;
|
|
13629
13693
|
hasRestrictedParent?: Maybe<Scalars['Boolean']>;
|
|
13630
13694
|
};
|
|
13695
|
+
export declare type JiraServiceManagementBulkCreateRequestTypeFromTemplateInput = {
|
|
13696
|
+
createRequestTypeFromTemplateInputItems: Array<JiraServiceManagementCreateRequestTypeFromTemplateInput>;
|
|
13697
|
+
projectId: Scalars['ID'];
|
|
13698
|
+
};
|
|
13631
13699
|
export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
13632
13700
|
__typename?: 'JiraServiceManagementComment';
|
|
13633
13701
|
id: Scalars['ID'];
|
|
@@ -13675,6 +13743,54 @@ export declare type JiraServiceManagementCompletedApprovalEdge = {
|
|
|
13675
13743
|
node?: Maybe<JiraServiceManagementCompletedApproval>;
|
|
13676
13744
|
cursor: Scalars['String'];
|
|
13677
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
|
+
};
|
|
13678
13794
|
export declare type JiraServiceManagementDateTimeField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
13679
13795
|
__typename?: 'JiraServiceManagementDateTimeField';
|
|
13680
13796
|
id: Scalars['ID'];
|
|
@@ -13941,6 +14057,35 @@ export declare type JiraServiceManagementRequestTypePractice = {
|
|
|
13941
14057
|
__typename?: 'JiraServiceManagementRequestTypePractice';
|
|
13942
14058
|
key?: Maybe<JiraServiceManagementPractice>;
|
|
13943
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
|
+
};
|
|
13944
14089
|
export declare type JiraServiceManagementResponder = JiraServiceManagementUserResponder | JiraServiceManagementTeamResponder;
|
|
13945
14090
|
export declare type JiraServiceManagementResponderConnection = {
|
|
13946
14091
|
__typename?: 'JiraServiceManagementResponderConnection';
|
|
@@ -14302,12 +14447,23 @@ export declare type JiraSprintFieldSelectedSprintsConnectionArgs = {
|
|
|
14302
14447
|
};
|
|
14303
14448
|
export declare type JiraSprintFieldSprintsArgs = {
|
|
14304
14449
|
searchBy?: Maybe<Scalars['String']>;
|
|
14450
|
+
currentProjectOnly?: Maybe<Scalars['Boolean']>;
|
|
14305
14451
|
first?: Maybe<Scalars['Int']>;
|
|
14306
14452
|
after?: Maybe<Scalars['String']>;
|
|
14307
14453
|
last?: Maybe<Scalars['Int']>;
|
|
14308
14454
|
before?: Maybe<Scalars['String']>;
|
|
14309
14455
|
state?: Maybe<JiraSprintState>;
|
|
14310
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
|
+
};
|
|
14311
14467
|
export declare enum JiraSprintState {
|
|
14312
14468
|
Active = "ACTIVE",
|
|
14313
14469
|
Future = "FUTURE",
|
|
@@ -14491,6 +14647,12 @@ export declare type JiraTimeTrackingField = Node & JiraIssueField & JiraIssueFie
|
|
|
14491
14647
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
14492
14648
|
timeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
14493
14649
|
};
|
|
14650
|
+
export declare type JiraTimeTrackingFieldPayload = Payload & {
|
|
14651
|
+
__typename?: 'JiraTimeTrackingFieldPayload';
|
|
14652
|
+
success: Scalars['Boolean'];
|
|
14653
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14654
|
+
field?: Maybe<JiraTimeTrackingField>;
|
|
14655
|
+
};
|
|
14494
14656
|
export declare type JiraTimeTrackingSettings = {
|
|
14495
14657
|
__typename?: 'JiraTimeTrackingSettings';
|
|
14496
14658
|
isJiraConfiguredTimeTrackingEnabled?: Maybe<Scalars['Boolean']>;
|
|
@@ -14505,10 +14667,18 @@ export declare enum JiraTimeUnit {
|
|
|
14505
14667
|
Day = "DAY",
|
|
14506
14668
|
Week = "WEEK"
|
|
14507
14669
|
}
|
|
14670
|
+
export declare type JiraUpdateCascadingSelectFieldInput = {
|
|
14671
|
+
id: Scalars['ID'];
|
|
14672
|
+
operation: JiraCascadingSelectFieldOperationInput;
|
|
14673
|
+
};
|
|
14508
14674
|
export declare type JiraUpdateColorFieldInput = {
|
|
14509
14675
|
id: Scalars['ID'];
|
|
14510
14676
|
operation: JiraColorFieldOperationInput;
|
|
14511
14677
|
};
|
|
14678
|
+
export declare type JiraUpdateComponentsFieldInput = {
|
|
14679
|
+
id: Scalars['ID'];
|
|
14680
|
+
operations: Array<JiraComponentFieldOperationInput>;
|
|
14681
|
+
};
|
|
14512
14682
|
export declare type JiraUpdateCustomFilterDetailsInput = {
|
|
14513
14683
|
id: Scalars['ID'];
|
|
14514
14684
|
name: Scalars['String'];
|
|
@@ -14552,6 +14722,10 @@ export declare type JiraUpdatePriorityFieldInput = {
|
|
|
14552
14722
|
id: Scalars['ID'];
|
|
14553
14723
|
operation: JiraPriorityFieldOperationInput;
|
|
14554
14724
|
};
|
|
14725
|
+
export declare type JiraUpdateRadioSelectFieldInput = {
|
|
14726
|
+
id: Scalars['ID'];
|
|
14727
|
+
operation: JiraRadioSelectFieldOperationInput;
|
|
14728
|
+
};
|
|
14555
14729
|
export declare type JiraUpdateReleaseNotesConfigurationInput = {
|
|
14556
14730
|
id: Scalars['ID'];
|
|
14557
14731
|
issueFieldIds: Array<Scalars['ID']>;
|
|
@@ -14582,10 +14756,22 @@ export declare type JiraUpdateSingleSelectUserPickerFieldInput = {
|
|
|
14582
14756
|
id: Scalars['ID'];
|
|
14583
14757
|
operation: JiraSingleSelectUserPickerFieldOperationInput;
|
|
14584
14758
|
};
|
|
14759
|
+
export declare type JiraUpdateSprintFieldInput = {
|
|
14760
|
+
id: Scalars['ID'];
|
|
14761
|
+
operation: JiraSprintFieldOperationInput;
|
|
14762
|
+
};
|
|
14585
14763
|
export declare type JiraUpdateStoryPointEstimateFieldInput = {
|
|
14586
14764
|
id: Scalars['ID'];
|
|
14587
14765
|
operation: JiraStoryPointEstimateFieldOperationInput;
|
|
14588
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
|
+
};
|
|
14589
14775
|
export declare type JiraUpdateVersionDescriptionInput = {
|
|
14590
14776
|
id: Scalars['ID'];
|
|
14591
14777
|
description?: Maybe<Scalars['String']>;
|
|
@@ -14651,6 +14837,16 @@ export declare type JiraUrlField = Node & JiraIssueField & JiraIssueFieldConfigu
|
|
|
14651
14837
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
14652
14838
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
14653
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
|
+
};
|
|
14654
14850
|
export declare type JiraUser = {
|
|
14655
14851
|
__typename?: 'JiraUser';
|
|
14656
14852
|
accountId?: Maybe<Scalars['String']>;
|
|
@@ -18685,14 +18881,20 @@ export declare type ProductListing = {
|
|
|
18685
18881
|
name: Scalars['String'];
|
|
18686
18882
|
productId: Scalars['ID'];
|
|
18687
18883
|
shortDescription: Scalars['String'];
|
|
18688
|
-
|
|
18884
|
+
tagLine: Scalars['String'];
|
|
18689
18885
|
logoUrl?: Maybe<Scalars['String']>;
|
|
18886
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
18887
|
+
links: ProductListingLinks;
|
|
18690
18888
|
additionalIds: ProductListingAdditionalIds;
|
|
18691
18889
|
};
|
|
18692
18890
|
export declare type ProductListingLogoUrlArgs = {
|
|
18693
18891
|
theme?: Maybe<Scalars['String']>;
|
|
18694
18892
|
strict?: Maybe<Scalars['Boolean']>;
|
|
18695
18893
|
};
|
|
18894
|
+
export declare type ProductListingIconUrlArgs = {
|
|
18895
|
+
theme?: Maybe<Scalars['String']>;
|
|
18896
|
+
strict?: Maybe<Scalars['Boolean']>;
|
|
18897
|
+
};
|
|
18696
18898
|
export declare type ProductListingAdditionalIds = {
|
|
18697
18899
|
__typename?: 'ProductListingAdditionalIds';
|
|
18698
18900
|
mpacAppKey?: Maybe<Scalars['String']>;
|
|
@@ -18861,6 +19063,8 @@ export declare type QueryReleaseNotesArgs = {
|
|
|
18861
19063
|
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
18862
19064
|
filterByAnnouncementPlan?: Maybe<Scalars['Boolean']>;
|
|
18863
19065
|
productFeatureFlags?: Maybe<Scalars['JSON']>;
|
|
19066
|
+
featureFlagEnvironment?: Maybe<Scalars['JSON']>;
|
|
19067
|
+
featureFlagProject?: Maybe<Scalars['JSON']>;
|
|
18864
19068
|
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
18865
19069
|
orderBy?: Maybe<Scalars['String']>;
|
|
18866
19070
|
};
|
|
@@ -21571,6 +21775,14 @@ export declare enum SprintState {
|
|
|
21571
21775
|
Future = "FUTURE",
|
|
21572
21776
|
Closed = "CLOSED"
|
|
21573
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
|
+
};
|
|
21574
21786
|
export declare type StartSprintInput = {
|
|
21575
21787
|
boardId: Scalars['ID'];
|
|
21576
21788
|
sprintId: Scalars['ID'];
|