@forge/cli-shared 3.2.0-next.7 → 3.2.1-next.0
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,28 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.2.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 567bf35: Fix displaying site prompt for install --upgrade
|
|
8
|
+
|
|
9
|
+
## 3.2.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- b372c40: Add option to display installations and other tables as JSON
|
|
14
|
+
- 7a27bcd: Display an error when prompting if not run in a terminal
|
|
15
|
+
- 94c798f: Exit with error when a Forge command is not recognised
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- a1c8607: Update debugging instructions when tunneling
|
|
20
|
+
- Updated dependencies [dfc74ba]
|
|
21
|
+
- Updated dependencies [f93ae31]
|
|
22
|
+
- Updated dependencies [05b306b]
|
|
23
|
+
- Updated dependencies [d6ec15d]
|
|
24
|
+
- @forge/manifest@4.4.0
|
|
25
|
+
|
|
3
26
|
## 3.2.0-next.7
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
@@ -1812,7 +1812,6 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1812
1812
|
acknowledgeAnnouncement?: Maybe<CompassAcknowledgeAnnouncementPayload>;
|
|
1813
1813
|
createEventSource?: Maybe<CreateEventSourcePayload>;
|
|
1814
1814
|
deleteEventSource?: Maybe<DeleteEventSourcePayload>;
|
|
1815
|
-
createDeploymentEvent?: Maybe<CreateDeploymentEventsPayload>;
|
|
1816
1815
|
createCompassEvent?: Maybe<CompassCreateEventsPayload>;
|
|
1817
1816
|
attachEventSource?: Maybe<AttachEventSourcePayload>;
|
|
1818
1817
|
detachEventSource?: Maybe<DetachEventSourcePayload>;
|
|
@@ -1942,9 +1941,6 @@ export declare type CompassCatalogMutationApiCreateEventSourceArgs = {
|
|
|
1942
1941
|
export declare type CompassCatalogMutationApiDeleteEventSourceArgs = {
|
|
1943
1942
|
input: DeleteEventSourceInput;
|
|
1944
1943
|
};
|
|
1945
|
-
export declare type CompassCatalogMutationApiCreateDeploymentEventArgs = {
|
|
1946
|
-
input: CreateDeploymentEventInput;
|
|
1947
|
-
};
|
|
1948
1944
|
export declare type CompassCatalogMutationApiCreateCompassEventArgs = {
|
|
1949
1945
|
input: CompassCreateEventInput;
|
|
1950
1946
|
};
|
|
@@ -4939,26 +4935,6 @@ export declare type CreateCustomFilterInput = {
|
|
|
4939
4935
|
jql: Scalars['String'];
|
|
4940
4936
|
description?: Maybe<Scalars['String']>;
|
|
4941
4937
|
};
|
|
4942
|
-
export declare type CreateDeploymentEventInput = {
|
|
4943
|
-
cloudId: Scalars['ID'];
|
|
4944
|
-
deploymentSequenceNumber: Scalars['Long'];
|
|
4945
|
-
updateSequenceNumber: Scalars['Long'];
|
|
4946
|
-
displayName: Scalars['String'];
|
|
4947
|
-
url: Scalars['URL'];
|
|
4948
|
-
description: Scalars['String'];
|
|
4949
|
-
state: CompassDeploymentEventState;
|
|
4950
|
-
lastUpdated: Scalars['DateTime'];
|
|
4951
|
-
pipeline: CompassDeploymentEventPipelineInput;
|
|
4952
|
-
environment: CompassDeploymentEventEnvironmentInput;
|
|
4953
|
-
externalEventSourceId: Scalars['ID'];
|
|
4954
|
-
startedAt?: Maybe<Scalars['DateTime']>;
|
|
4955
|
-
completedAt?: Maybe<Scalars['DateTime']>;
|
|
4956
|
-
};
|
|
4957
|
-
export declare type CreateDeploymentEventsPayload = Payload & {
|
|
4958
|
-
__typename?: 'CreateDeploymentEventsPayload';
|
|
4959
|
-
success: Scalars['Boolean'];
|
|
4960
|
-
errors?: Maybe<Array<MutationError>>;
|
|
4961
|
-
};
|
|
4962
4938
|
export declare type CreateDevOpsServiceAndJiraProjectRelationshipInput = {
|
|
4963
4939
|
cloudId: Scalars['ID'];
|
|
4964
4940
|
jiraProjectId: Scalars['ID'];
|
|
@@ -5749,6 +5725,16 @@ export declare type DevOpsFeatureFlagEdge = {
|
|
|
5749
5725
|
cursor?: Maybe<Scalars['String']>;
|
|
5750
5726
|
node?: Maybe<DevOpsFeatureFlag>;
|
|
5751
5727
|
};
|
|
5728
|
+
export declare type DevOpsFeatureFlagProvider = {
|
|
5729
|
+
__typename?: 'DevOpsFeatureFlagProvider';
|
|
5730
|
+
id: Scalars['ID'];
|
|
5731
|
+
name?: Maybe<Scalars['String']>;
|
|
5732
|
+
homeUrl?: Maybe<Scalars['URL']>;
|
|
5733
|
+
logoUrl?: Maybe<Scalars['URL']>;
|
|
5734
|
+
documentationUrl?: Maybe<Scalars['URL']>;
|
|
5735
|
+
createFeatureFlagTemplateUrl?: Maybe<Scalars['String']>;
|
|
5736
|
+
connectFeatureFlagTemplateUrl?: Maybe<Scalars['String']>;
|
|
5737
|
+
};
|
|
5752
5738
|
export declare type DevOpsFeatureFlagSummary = {
|
|
5753
5739
|
__typename?: 'DevOpsFeatureFlagSummary';
|
|
5754
5740
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
@@ -5954,6 +5940,10 @@ export declare type DevOpsProviderLinks = {
|
|
|
5954
5940
|
home?: Maybe<Scalars['URL']>;
|
|
5955
5941
|
listDeploymentsTemplate?: Maybe<Scalars['URL']>;
|
|
5956
5942
|
};
|
|
5943
|
+
export declare type DevOpsProviders = {
|
|
5944
|
+
__typename?: 'DevOpsProviders';
|
|
5945
|
+
featureFlagProviders?: Maybe<Array<Maybe<DevOpsFeatureFlagProvider>>>;
|
|
5946
|
+
};
|
|
5957
5947
|
export declare enum DevOpsPullRequestApprovalStatus {
|
|
5958
5948
|
Approved = "APPROVED",
|
|
5959
5949
|
Unapproved = "UNAPPROVED"
|
|
@@ -6249,6 +6239,7 @@ export declare type DevOpsSummarisedDeployments = {
|
|
|
6249
6239
|
export declare type DevOpsSummarisedEntities = {
|
|
6250
6240
|
__typename?: 'DevOpsSummarisedEntities';
|
|
6251
6241
|
entityId: Scalars['ID'];
|
|
6242
|
+
providers?: Maybe<DevOpsProviders>;
|
|
6252
6243
|
summarisedDeployments?: Maybe<DevOpsSummarisedDeployments>;
|
|
6253
6244
|
summarisedFeatureFlags?: Maybe<DevOpsSummarisedFeatureFlags>;
|
|
6254
6245
|
};
|
|
@@ -8662,7 +8653,7 @@ export declare type JiraCreateReleaseNoteConfluencePageInput = {
|
|
|
8662
8653
|
versionId: Scalars['ID'];
|
|
8663
8654
|
appLinkId?: Maybe<Scalars['ID']>;
|
|
8664
8655
|
spaceId: Scalars['ID'];
|
|
8665
|
-
parentPageId
|
|
8656
|
+
parentPageId?: Maybe<Scalars['ID']>;
|
|
8666
8657
|
issueFieldIds: Array<Scalars['ID']>;
|
|
8667
8658
|
issueTypeIds: Array<Scalars['ID']>;
|
|
8668
8659
|
};
|
|
@@ -8674,6 +8665,7 @@ export declare type JiraCreateReleaseNoteConfluencePagePayload = Payload & {
|
|
|
8674
8665
|
releaseNotePageEditUrl?: Maybe<Scalars['URL']>;
|
|
8675
8666
|
addToRelatedWorkSuccess?: Maybe<Scalars['Boolean']>;
|
|
8676
8667
|
version?: Maybe<JiraVersion>;
|
|
8668
|
+
relatedWorkV2Edge?: Maybe<JiraVersionRelatedWorkV2Edge>;
|
|
8677
8669
|
};
|
|
8678
8670
|
export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
8679
8671
|
__typename?: 'JiraCustomFilter';
|
|
@@ -10674,6 +10666,8 @@ export declare type JiraMutation = {
|
|
|
10674
10666
|
updateDateField?: Maybe<JiraDateFieldPayload>;
|
|
10675
10667
|
updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
|
|
10676
10668
|
updateNumberField?: Maybe<JiraNumberFieldPayload>;
|
|
10669
|
+
updateStoryPointEstimateField?: Maybe<JiraStoryPointEstimateFieldPayload>;
|
|
10670
|
+
updateSingleSelectField?: Maybe<JiraSingleSelectFieldPayload>;
|
|
10677
10671
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
10678
10672
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
10679
10673
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
@@ -10716,6 +10710,12 @@ export declare type JiraMutationUpdateDateTimeFieldArgs = {
|
|
|
10716
10710
|
export declare type JiraMutationUpdateNumberFieldArgs = {
|
|
10717
10711
|
input?: Maybe<JiraUpdateNumberFieldInput>;
|
|
10718
10712
|
};
|
|
10713
|
+
export declare type JiraMutationUpdateStoryPointEstimateFieldArgs = {
|
|
10714
|
+
input?: Maybe<JiraUpdateStoryPointEstimateFieldInput>;
|
|
10715
|
+
};
|
|
10716
|
+
export declare type JiraMutationUpdateSingleSelectFieldArgs = {
|
|
10717
|
+
input: JiraUpdateSingleSelectFieldInput;
|
|
10718
|
+
};
|
|
10719
10719
|
export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
10720
10720
|
input: JiraPermissionSchemeAddGrantInput;
|
|
10721
10721
|
};
|
|
@@ -12847,6 +12847,16 @@ export declare type JiraSingleSelectFieldFieldOptionsArgs = {
|
|
|
12847
12847
|
last?: Maybe<Scalars['Int']>;
|
|
12848
12848
|
before?: Maybe<Scalars['String']>;
|
|
12849
12849
|
};
|
|
12850
|
+
export declare type JiraSingleSelectFieldPayload = Payload & {
|
|
12851
|
+
__typename?: 'JiraSingleSelectFieldPayload';
|
|
12852
|
+
success: Scalars['Boolean'];
|
|
12853
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12854
|
+
field?: Maybe<JiraSingleSelectField>;
|
|
12855
|
+
};
|
|
12856
|
+
export declare type JiraSingleSelectOperationInput = {
|
|
12857
|
+
operation: JiraSingleValueFieldOperations;
|
|
12858
|
+
fieldOption?: Maybe<Scalars['ID']>;
|
|
12859
|
+
};
|
|
12850
12860
|
export declare type JiraSingleSelectUserPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
12851
12861
|
__typename?: 'JiraSingleSelectUserPickerField';
|
|
12852
12862
|
id: Scalars['ID'];
|
|
@@ -13006,6 +13016,16 @@ export declare type JiraStatusField = Node & JiraIssueField & JiraIssueFieldConf
|
|
|
13006
13016
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
13007
13017
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
13008
13018
|
};
|
|
13019
|
+
export declare type JiraStoryPointEstimateFieldOperationInput = {
|
|
13020
|
+
operation: JiraSingleValueFieldOperations;
|
|
13021
|
+
storyPoint?: Maybe<Scalars['Float']>;
|
|
13022
|
+
};
|
|
13023
|
+
export declare type JiraStoryPointEstimateFieldPayload = Payload & {
|
|
13024
|
+
__typename?: 'JiraStoryPointEstimateFieldPayload';
|
|
13025
|
+
success: Scalars['Boolean'];
|
|
13026
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13027
|
+
field?: Maybe<JiraNumberField>;
|
|
13028
|
+
};
|
|
13009
13029
|
export declare type JiraSubtasksField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
13010
13030
|
__typename?: 'JiraSubtasksField';
|
|
13011
13031
|
id: Scalars['ID'];
|
|
@@ -13191,6 +13211,14 @@ export declare type JiraUpdateReleaseNotesConfigurationPayload = Payload & {
|
|
|
13191
13211
|
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
13192
13212
|
version?: Maybe<JiraVersion>;
|
|
13193
13213
|
};
|
|
13214
|
+
export declare type JiraUpdateSingleSelectFieldInput = {
|
|
13215
|
+
id: Scalars['ID'];
|
|
13216
|
+
operation: JiraSingleSelectOperationInput;
|
|
13217
|
+
};
|
|
13218
|
+
export declare type JiraUpdateStoryPointEstimateFieldInput = {
|
|
13219
|
+
id: Scalars['ID'];
|
|
13220
|
+
operation: JiraStoryPointEstimateFieldOperationInput;
|
|
13221
|
+
};
|
|
13194
13222
|
export declare type JiraUpdateVersionDescriptionInput = {
|
|
13195
13223
|
id: Scalars['ID'];
|
|
13196
13224
|
description?: Maybe<Scalars['String']>;
|
|
@@ -13291,6 +13319,7 @@ export declare type JiraVersion = Node & {
|
|
|
13291
13319
|
releaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
|
|
13292
13320
|
nativeReleaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
|
|
13293
13321
|
releaseNotes?: Maybe<JiraAdf>;
|
|
13322
|
+
devOpsSummarisedEntities?: Maybe<DevOpsSummarisedEntities>;
|
|
13294
13323
|
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
13295
13324
|
availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
|
|
13296
13325
|
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
@@ -14009,6 +14038,17 @@ export declare type MercuryAtlasGoal = Node & {
|
|
|
14009
14038
|
__typename?: 'MercuryAtlasGoal';
|
|
14010
14039
|
id: Scalars['ID'];
|
|
14011
14040
|
};
|
|
14041
|
+
export declare type MercuryCreateJobFunctionInput = {
|
|
14042
|
+
name: Scalars['String'];
|
|
14043
|
+
};
|
|
14044
|
+
export declare type MercuryCreateJobFunctionPayload = Payload & {
|
|
14045
|
+
__typename?: 'MercuryCreateJobFunctionPayload';
|
|
14046
|
+
jobFunction: MercuryJobFunction;
|
|
14047
|
+
success: Scalars['Boolean'];
|
|
14048
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14049
|
+
statusCode: Scalars['Int'];
|
|
14050
|
+
message: Scalars['String'];
|
|
14051
|
+
};
|
|
14012
14052
|
export declare type MercuryCreateStrategyInput = {
|
|
14013
14053
|
name: Scalars['String'];
|
|
14014
14054
|
description?: Maybe<Scalars['String']>;
|
|
@@ -14017,9 +14057,44 @@ export declare type MercuryCreateStrategyInput = {
|
|
|
14017
14057
|
contentId?: Maybe<Scalars['String']>;
|
|
14018
14058
|
spaceKey?: Maybe<Scalars['String']>;
|
|
14019
14059
|
};
|
|
14060
|
+
export declare type MercuryCreateTeamInput = {
|
|
14061
|
+
name: Scalars['String'];
|
|
14062
|
+
active?: Maybe<Scalars['Boolean']>;
|
|
14063
|
+
};
|
|
14064
|
+
export declare type MercuryDeleteJobFunctionInput = {
|
|
14065
|
+
id: Scalars['ID'];
|
|
14066
|
+
};
|
|
14020
14067
|
export declare type MercuryDeleteStrategyInput = {
|
|
14021
14068
|
strategyId: Scalars['ID'];
|
|
14022
14069
|
};
|
|
14070
|
+
export declare type MercuryDeleteTeamInput = {
|
|
14071
|
+
teamId: Scalars['ID'];
|
|
14072
|
+
};
|
|
14073
|
+
export declare type MercuryJobFunction = Node & {
|
|
14074
|
+
__typename?: 'MercuryJobFunction';
|
|
14075
|
+
id: Scalars['ID'];
|
|
14076
|
+
name: Scalars['String'];
|
|
14077
|
+
siteId: Scalars['String'];
|
|
14078
|
+
};
|
|
14079
|
+
export declare type MercuryJobFunctionConnection = {
|
|
14080
|
+
__typename?: 'MercuryJobFunctionConnection';
|
|
14081
|
+
edges?: Maybe<Array<Maybe<MercuryJobFunctionEdge>>>;
|
|
14082
|
+
nodes?: Maybe<Array<Maybe<MercuryJobFunction>>>;
|
|
14083
|
+
pageInfo: PageInfo;
|
|
14084
|
+
};
|
|
14085
|
+
export declare type MercuryJobFunctionDeletePayload = Payload & {
|
|
14086
|
+
__typename?: 'MercuryJobFunctionDeletePayload';
|
|
14087
|
+
deletedJobFunctionId?: Maybe<Scalars['ID']>;
|
|
14088
|
+
success: Scalars['Boolean'];
|
|
14089
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14090
|
+
statusCode: Scalars['Int'];
|
|
14091
|
+
message: Scalars['String'];
|
|
14092
|
+
};
|
|
14093
|
+
export declare type MercuryJobFunctionEdge = {
|
|
14094
|
+
__typename?: 'MercuryJobFunctionEdge';
|
|
14095
|
+
cursor: Scalars['String'];
|
|
14096
|
+
node?: Maybe<MercuryJobFunction>;
|
|
14097
|
+
};
|
|
14023
14098
|
export declare type MercuryLinkGoalInput = {
|
|
14024
14099
|
goalId: Scalars['ID'];
|
|
14025
14100
|
};
|
|
@@ -14030,6 +14105,12 @@ export declare type MercuryMutationApi = {
|
|
|
14030
14105
|
deleteStrategy?: Maybe<MercuryStrategyDeletePayload>;
|
|
14031
14106
|
addGoalsToStrategy?: Maybe<MercuryStrategyMutationPayload>;
|
|
14032
14107
|
removeGoalsFromStrategy?: Maybe<MercuryStrategyMutationPayload>;
|
|
14108
|
+
createJobFunction?: Maybe<MercuryCreateJobFunctionPayload>;
|
|
14109
|
+
updateJobFunction?: Maybe<MercuryUpdateJobFunctionPayload>;
|
|
14110
|
+
deleteJobFunction?: Maybe<MercuryJobFunctionDeletePayload>;
|
|
14111
|
+
createTeam?: Maybe<MercuryTeamMutationPayload>;
|
|
14112
|
+
updateTeam?: Maybe<MercuryTeamMutationPayload>;
|
|
14113
|
+
deleteTeam?: Maybe<MercuryTeamDeletePayload>;
|
|
14033
14114
|
};
|
|
14034
14115
|
export declare type MercuryMutationApiCreateStrategyArgs = {
|
|
14035
14116
|
input: MercuryCreateStrategyInput;
|
|
@@ -14046,10 +14127,33 @@ export declare type MercuryMutationApiAddGoalsToStrategyArgs = {
|
|
|
14046
14127
|
export declare type MercuryMutationApiRemoveGoalsFromStrategyArgs = {
|
|
14047
14128
|
input?: Maybe<MercuryRemoveGoalsFromStrategyInput>;
|
|
14048
14129
|
};
|
|
14130
|
+
export declare type MercuryMutationApiCreateJobFunctionArgs = {
|
|
14131
|
+
input: MercuryCreateJobFunctionInput;
|
|
14132
|
+
};
|
|
14133
|
+
export declare type MercuryMutationApiUpdateJobFunctionArgs = {
|
|
14134
|
+
input: MercuryUpdateJobFunctionInput;
|
|
14135
|
+
};
|
|
14136
|
+
export declare type MercuryMutationApiDeleteJobFunctionArgs = {
|
|
14137
|
+
input: MercuryDeleteJobFunctionInput;
|
|
14138
|
+
};
|
|
14139
|
+
export declare type MercuryMutationApiCreateTeamArgs = {
|
|
14140
|
+
input: MercuryCreateTeamInput;
|
|
14141
|
+
};
|
|
14142
|
+
export declare type MercuryMutationApiUpdateTeamArgs = {
|
|
14143
|
+
input: MercuryUpdateTeamInput;
|
|
14144
|
+
};
|
|
14145
|
+
export declare type MercuryMutationApiDeleteTeamArgs = {
|
|
14146
|
+
input: MercuryDeleteTeamInput;
|
|
14147
|
+
};
|
|
14049
14148
|
export declare type MercuryQueryApi = {
|
|
14050
14149
|
__typename?: 'MercuryQueryApi';
|
|
14051
14150
|
strategies?: Maybe<MercuryStrategyConnection>;
|
|
14052
14151
|
strategy?: Maybe<MercuryStrategy>;
|
|
14152
|
+
isAdmin?: Maybe<Scalars['Boolean']>;
|
|
14153
|
+
jobFunction?: Maybe<MercuryJobFunction>;
|
|
14154
|
+
jobFunctions?: Maybe<MercuryJobFunctionConnection>;
|
|
14155
|
+
teams?: Maybe<MercuryTeamConnection>;
|
|
14156
|
+
team?: Maybe<MercuryTeam>;
|
|
14053
14157
|
};
|
|
14054
14158
|
export declare type MercuryQueryApiStrategiesArgs = {
|
|
14055
14159
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -14058,6 +14162,20 @@ export declare type MercuryQueryApiStrategiesArgs = {
|
|
|
14058
14162
|
export declare type MercuryQueryApiStrategyArgs = {
|
|
14059
14163
|
id: Scalars['ID'];
|
|
14060
14164
|
};
|
|
14165
|
+
export declare type MercuryQueryApiJobFunctionArgs = {
|
|
14166
|
+
id: Scalars['ID'];
|
|
14167
|
+
};
|
|
14168
|
+
export declare type MercuryQueryApiJobFunctionsArgs = {
|
|
14169
|
+
first?: Maybe<Scalars['Int']>;
|
|
14170
|
+
after?: Maybe<Scalars['String']>;
|
|
14171
|
+
};
|
|
14172
|
+
export declare type MercuryQueryApiTeamsArgs = {
|
|
14173
|
+
first?: Maybe<Scalars['Int']>;
|
|
14174
|
+
after?: Maybe<Scalars['String']>;
|
|
14175
|
+
};
|
|
14176
|
+
export declare type MercuryQueryApiTeamArgs = {
|
|
14177
|
+
id: Scalars['ID'];
|
|
14178
|
+
};
|
|
14061
14179
|
export declare type MercuryRemoveGoalsFromStrategyInput = {
|
|
14062
14180
|
strategyId: Scalars['ID'];
|
|
14063
14181
|
goals?: Maybe<Array<MercuryLinkGoalInput>>;
|
|
@@ -14098,6 +14216,51 @@ export declare type MercuryStrategyMutationPayload = Payload & {
|
|
|
14098
14216
|
statusCode: Scalars['Int'];
|
|
14099
14217
|
message: Scalars['String'];
|
|
14100
14218
|
};
|
|
14219
|
+
export declare type MercuryTeam = Node & {
|
|
14220
|
+
__typename?: 'MercuryTeam';
|
|
14221
|
+
id: Scalars['ID'];
|
|
14222
|
+
name: Scalars['String'];
|
|
14223
|
+
active?: Maybe<Scalars['Boolean']>;
|
|
14224
|
+
};
|
|
14225
|
+
export declare type MercuryTeamConnection = {
|
|
14226
|
+
__typename?: 'MercuryTeamConnection';
|
|
14227
|
+
edges?: Maybe<Array<Maybe<MercuryTeamEdge>>>;
|
|
14228
|
+
nodes?: Maybe<Array<Maybe<MercuryTeam>>>;
|
|
14229
|
+
pageInfo: PageInfo;
|
|
14230
|
+
};
|
|
14231
|
+
export declare type MercuryTeamDeletePayload = Payload & {
|
|
14232
|
+
__typename?: 'MercuryTeamDeletePayload';
|
|
14233
|
+
deletedTeamId?: Maybe<Scalars['ID']>;
|
|
14234
|
+
success: Scalars['Boolean'];
|
|
14235
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14236
|
+
statusCode: Scalars['Int'];
|
|
14237
|
+
message: Scalars['String'];
|
|
14238
|
+
};
|
|
14239
|
+
export declare type MercuryTeamEdge = {
|
|
14240
|
+
__typename?: 'MercuryTeamEdge';
|
|
14241
|
+
cursor: Scalars['String'];
|
|
14242
|
+
node?: Maybe<MercuryTeam>;
|
|
14243
|
+
};
|
|
14244
|
+
export declare type MercuryTeamMutationPayload = Payload & {
|
|
14245
|
+
__typename?: 'MercuryTeamMutationPayload';
|
|
14246
|
+
team: MercuryTeam;
|
|
14247
|
+
success: Scalars['Boolean'];
|
|
14248
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14249
|
+
statusCode: Scalars['Int'];
|
|
14250
|
+
message: Scalars['String'];
|
|
14251
|
+
};
|
|
14252
|
+
export declare type MercuryUpdateJobFunctionInput = {
|
|
14253
|
+
id: Scalars['ID'];
|
|
14254
|
+
name: Scalars['String'];
|
|
14255
|
+
};
|
|
14256
|
+
export declare type MercuryUpdateJobFunctionPayload = Payload & {
|
|
14257
|
+
__typename?: 'MercuryUpdateJobFunctionPayload';
|
|
14258
|
+
jobFunction: MercuryJobFunction;
|
|
14259
|
+
success: Scalars['Boolean'];
|
|
14260
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14261
|
+
statusCode: Scalars['Int'];
|
|
14262
|
+
message: Scalars['String'];
|
|
14263
|
+
};
|
|
14101
14264
|
export declare type MercuryUpdateStrategyInput = {
|
|
14102
14265
|
strategyId: Scalars['ID'];
|
|
14103
14266
|
name?: Maybe<Scalars['String']>;
|
|
@@ -14106,6 +14269,11 @@ export declare type MercuryUpdateStrategyInput = {
|
|
|
14106
14269
|
contentId?: Maybe<Scalars['String']>;
|
|
14107
14270
|
spaceKey?: Maybe<Scalars['String']>;
|
|
14108
14271
|
};
|
|
14272
|
+
export declare type MercuryUpdateTeamInput = {
|
|
14273
|
+
teamId: Scalars['ID'];
|
|
14274
|
+
name?: Maybe<Scalars['String']>;
|
|
14275
|
+
active?: Maybe<Scalars['Boolean']>;
|
|
14276
|
+
};
|
|
14109
14277
|
export declare type MigrationKeys = {
|
|
14110
14278
|
__typename?: 'MigrationKeys';
|
|
14111
14279
|
jira: Scalars['String'];
|
|
@@ -16677,6 +16845,11 @@ export declare type RoadmapCreationPreferences = {
|
|
|
16677
16845
|
projectId?: Maybe<Scalars['Long']>;
|
|
16678
16846
|
itemTypes: Scalars['JSON'];
|
|
16679
16847
|
};
|
|
16848
|
+
export declare type RoadmapCustomFilter = {
|
|
16849
|
+
__typename?: 'RoadmapCustomFilter';
|
|
16850
|
+
id: Scalars['ID'];
|
|
16851
|
+
name: Scalars['String'];
|
|
16852
|
+
};
|
|
16680
16853
|
export declare type RoadmapDependencyConfiguration = {
|
|
16681
16854
|
__typename?: 'RoadmapDependencyConfiguration';
|
|
16682
16855
|
isDependenciesEnabled: Scalars['Boolean'];
|
|
@@ -16725,6 +16898,7 @@ export declare type RoadmapFeatureTogglePayload = Payload & {
|
|
|
16725
16898
|
};
|
|
16726
16899
|
export declare type RoadmapFilterConfiguration = {
|
|
16727
16900
|
__typename?: 'RoadmapFilterConfiguration';
|
|
16901
|
+
customFilters?: Maybe<Array<RoadmapCustomFilter>>;
|
|
16728
16902
|
quickFilters?: Maybe<Array<RoadmapQuickFilter>>;
|
|
16729
16903
|
};
|
|
16730
16904
|
export declare type RoadmapHealthCheck = {
|
|
@@ -17096,7 +17270,8 @@ export declare type RoadmapsQueryRoadmapItemByIdsArgs = {
|
|
|
17096
17270
|
};
|
|
17097
17271
|
export declare type RoadmapsQueryRoadmapFilterItemsArgs = {
|
|
17098
17272
|
sourceARI: Scalars['ID'];
|
|
17099
|
-
quickFilterIds
|
|
17273
|
+
quickFilterIds?: Maybe<Array<Scalars['ID']>>;
|
|
17274
|
+
customFilterIds?: Maybe<Array<Scalars['ID']>>;
|
|
17100
17275
|
};
|
|
17101
17276
|
export declare type RoadmapsQueryRoadmapFilterConfigurationArgs = {
|
|
17102
17277
|
sourceARI: Scalars['ID'];
|
|
@@ -17774,7 +17949,7 @@ export declare type ShepherdActivityHighlightInput = {
|
|
|
17774
17949
|
subject?: Maybe<ShepherdSubjectInput>;
|
|
17775
17950
|
time: ShepherdTimeInput;
|
|
17776
17951
|
};
|
|
17777
|
-
export declare type ShepherdAlert = {
|
|
17952
|
+
export declare type ShepherdAlert = Node & {
|
|
17778
17953
|
__typename?: 'ShepherdAlert';
|
|
17779
17954
|
assignee?: Maybe<ShepherdUser>;
|
|
17780
17955
|
cloudId?: Maybe<Scalars['ID']>;
|
|
@@ -17795,6 +17970,7 @@ export declare enum ShepherdAlertDescriptionType {
|
|
|
17795
17970
|
}
|
|
17796
17971
|
export declare type ShepherdAlertEdge = {
|
|
17797
17972
|
__typename?: 'ShepherdAlertEdge';
|
|
17973
|
+
cursor?: Maybe<Scalars['String']>;
|
|
17798
17974
|
node?: Maybe<ShepherdAlert>;
|
|
17799
17975
|
};
|
|
17800
17976
|
export declare type ShepherdAlertResult = QueryError | ShepherdAlert;
|
|
@@ -17918,11 +18094,6 @@ export declare type ShepherdCreateWebhookInput = {
|
|
|
17918
18094
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
17919
18095
|
type?: Maybe<ShepherdWebhookType>;
|
|
17920
18096
|
};
|
|
17921
|
-
export declare type ShepherdDescriptionSection = {
|
|
17922
|
-
__typename?: 'ShepherdDescriptionSection';
|
|
17923
|
-
text?: Maybe<Scalars['JSON']>;
|
|
17924
|
-
type?: Maybe<ShepherdAlertDescriptionType>;
|
|
17925
|
-
};
|
|
17926
18097
|
export declare type ShepherdDescriptionTemplate = {
|
|
17927
18098
|
__typename?: 'ShepherdDescriptionTemplate';
|
|
17928
18099
|
text?: Maybe<Scalars['JSON']>;
|
|
@@ -17934,9 +18105,10 @@ export declare type ShepherdEmailConnection = {
|
|
|
17934
18105
|
};
|
|
17935
18106
|
export declare type ShepherdEmailEdge = ShepherdSubscriptionEdge & {
|
|
17936
18107
|
__typename?: 'ShepherdEmailEdge';
|
|
18108
|
+
cursor?: Maybe<Scalars['String']>;
|
|
17937
18109
|
node?: Maybe<ShepherdEmailSubscription>;
|
|
17938
18110
|
};
|
|
17939
|
-
export declare type ShepherdEmailSubscription = ShepherdSubscription & {
|
|
18111
|
+
export declare type ShepherdEmailSubscription = Node & ShepherdSubscription & {
|
|
17940
18112
|
__typename?: 'ShepherdEmailSubscription';
|
|
17941
18113
|
createdBy: Scalars['String'];
|
|
17942
18114
|
createdOn: Scalars['DateTime'];
|
|
@@ -18018,6 +18190,7 @@ export declare type ShepherdQueryShepherdAlertArgs = {
|
|
|
18018
18190
|
id: Scalars['ID'];
|
|
18019
18191
|
};
|
|
18020
18192
|
export declare type ShepherdQueryShepherdAlertsArgs = {
|
|
18193
|
+
aaid?: Maybe<Scalars['ID']>;
|
|
18021
18194
|
orgId: Scalars['ID'];
|
|
18022
18195
|
};
|
|
18023
18196
|
export declare type ShepherdQueryShepherdOrganizationArgs = {
|
|
@@ -18032,9 +18205,10 @@ export declare enum ShepherdQueryErrorType {
|
|
|
18032
18205
|
}
|
|
18033
18206
|
export declare type ShepherdSlackEdge = ShepherdSubscriptionEdge & {
|
|
18034
18207
|
__typename?: 'ShepherdSlackEdge';
|
|
18208
|
+
cursor?: Maybe<Scalars['String']>;
|
|
18035
18209
|
node?: Maybe<ShepherdSlackSubscription>;
|
|
18036
18210
|
};
|
|
18037
|
-
export declare type ShepherdSlackSubscription = ShepherdSubscription & {
|
|
18211
|
+
export declare type ShepherdSlackSubscription = Node & ShepherdSubscription & {
|
|
18038
18212
|
__typename?: 'ShepherdSlackSubscription';
|
|
18039
18213
|
callbackURL: Scalars['String'];
|
|
18040
18214
|
channelId: Scalars['String'];
|
|
@@ -18070,6 +18244,7 @@ export declare type ShepherdSubscriptionConnection = {
|
|
|
18070
18244
|
edges?: Maybe<Array<Maybe<ShepherdSubscriptionEdge>>>;
|
|
18071
18245
|
};
|
|
18072
18246
|
export declare type ShepherdSubscriptionEdge = {
|
|
18247
|
+
cursor?: Maybe<Scalars['String']>;
|
|
18073
18248
|
node?: Maybe<ShepherdSubscription>;
|
|
18074
18249
|
};
|
|
18075
18250
|
export declare enum ShepherdSubscriptionStatus {
|
|
@@ -18077,11 +18252,6 @@ export declare enum ShepherdSubscriptionStatus {
|
|
|
18077
18252
|
Inactive = "INACTIVE"
|
|
18078
18253
|
}
|
|
18079
18254
|
export declare type ShepherdSubscriptionsResult = QueryError | ShepherdEmailConnection | ShepherdSubscriptionConnection | ShepherdWebhookConnection;
|
|
18080
|
-
export declare type ShepherdTestSubscriptionError = {
|
|
18081
|
-
__typename?: 'ShepherdTestSubscriptionError';
|
|
18082
|
-
reason?: Maybe<Scalars['String']>;
|
|
18083
|
-
statusCode?: Maybe<Scalars['Int']>;
|
|
18084
|
-
};
|
|
18085
18255
|
export declare type ShepherdTestSubscriptionPayload = Payload & {
|
|
18086
18256
|
__typename?: 'ShepherdTestSubscriptionPayload';
|
|
18087
18257
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -18147,6 +18317,7 @@ export declare type ShepherdUpdateWebhookInput = {
|
|
|
18147
18317
|
export declare type ShepherdUser = {
|
|
18148
18318
|
__typename?: 'ShepherdUser';
|
|
18149
18319
|
aaid: Scalars['ID'];
|
|
18320
|
+
createdOn?: Maybe<Scalars['DateTime']>;
|
|
18150
18321
|
user?: Maybe<User>;
|
|
18151
18322
|
};
|
|
18152
18323
|
export declare type ShepherdWebhookConnection = {
|
|
@@ -18155,9 +18326,10 @@ export declare type ShepherdWebhookConnection = {
|
|
|
18155
18326
|
};
|
|
18156
18327
|
export declare type ShepherdWebhookEdge = ShepherdSubscriptionEdge & {
|
|
18157
18328
|
__typename?: 'ShepherdWebhookEdge';
|
|
18329
|
+
cursor?: Maybe<Scalars['String']>;
|
|
18158
18330
|
node?: Maybe<ShepherdWebhookSubscription>;
|
|
18159
18331
|
};
|
|
18160
|
-
export declare type ShepherdWebhookSubscription = ShepherdSubscription & {
|
|
18332
|
+
export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription & {
|
|
18161
18333
|
__typename?: 'ShepherdWebhookSubscription';
|
|
18162
18334
|
authToken: Scalars['String'];
|
|
18163
18335
|
callbackURL: Scalars['String'];
|