@forge/cli-shared 3.13.0-next.0 → 3.13.0-next.10
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 +83 -0
- package/out/graphql/graphql-types.d.ts +254 -29
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +22 -6
- package/out/ui/text.d.ts +5 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +7 -2
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,88 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.13.0-next.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [9477f538]
|
|
8
|
+
- @forge/manifest@4.14.0-next.5
|
|
9
|
+
|
|
10
|
+
## 3.13.0-next.9
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [00f194a]
|
|
15
|
+
- @forge/manifest@4.14.0-next.4
|
|
16
|
+
|
|
17
|
+
## 3.13.0-next.8
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- 13af085: Bumping dependencies via Renovate:
|
|
22
|
+
|
|
23
|
+
- @graphql-codegen/add
|
|
24
|
+
- @graphql-codegen/cli
|
|
25
|
+
- @graphql-codegen/typescript
|
|
26
|
+
- @graphql-codegen/typescript-operations
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [bb7b824]
|
|
29
|
+
- @forge/manifest@4.14.0-next.3
|
|
30
|
+
|
|
31
|
+
## 3.13.0-next.7
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- 710816a: Bumping dependencies via Renovate:
|
|
36
|
+
|
|
37
|
+
- unzipper
|
|
38
|
+
- @types/unzipper
|
|
39
|
+
|
|
40
|
+
## 3.13.0-next.6
|
|
41
|
+
|
|
42
|
+
### Patch Changes
|
|
43
|
+
|
|
44
|
+
- cf453494: Bumping dependencies via Renovate:
|
|
45
|
+
|
|
46
|
+
- node-fetch
|
|
47
|
+
- @types/node-fetch
|
|
48
|
+
|
|
49
|
+
- Updated dependencies [cf453494]
|
|
50
|
+
- @forge/manifest@4.14.0-next.2
|
|
51
|
+
|
|
52
|
+
## 3.13.0-next.5
|
|
53
|
+
|
|
54
|
+
### Patch Changes
|
|
55
|
+
|
|
56
|
+
- efc1b01c: Bumping dependencies via Renovate:
|
|
57
|
+
|
|
58
|
+
- yaml
|
|
59
|
+
|
|
60
|
+
## 3.13.0-next.4
|
|
61
|
+
|
|
62
|
+
### Patch Changes
|
|
63
|
+
|
|
64
|
+
- Updated dependencies [44042371]
|
|
65
|
+
- @forge/manifest@4.14.0-next.1
|
|
66
|
+
|
|
67
|
+
## 3.13.0-next.3
|
|
68
|
+
|
|
69
|
+
### Minor Changes
|
|
70
|
+
|
|
71
|
+
- 7f658b1: Refactor and cleanup usages of environmentToOption
|
|
72
|
+
|
|
73
|
+
## 3.13.0-next.2
|
|
74
|
+
|
|
75
|
+
### Minor Changes
|
|
76
|
+
|
|
77
|
+
- 8ee1a0dc: Create environment on deploy
|
|
78
|
+
|
|
79
|
+
## 3.13.0-next.1
|
|
80
|
+
|
|
81
|
+
### Patch Changes
|
|
82
|
+
|
|
83
|
+
- Updated dependencies [5d8a7a49]
|
|
84
|
+
- @forge/manifest@4.14.0-next.0
|
|
85
|
+
|
|
3
86
|
## 3.13.0-next.0
|
|
4
87
|
|
|
5
88
|
### Minor Changes
|
|
@@ -1243,7 +1243,7 @@ export declare type AriGraphRelationshipNode = {
|
|
|
1243
1243
|
id: Scalars['ID'];
|
|
1244
1244
|
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
1245
1245
|
};
|
|
1246
|
-
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer |
|
|
1246
|
+
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsDocument | DevOpsFeatureFlag | DevOpsPullRequestDetails | DevOpsSecurityVulnerabilityDetails | JiraIssue | OpsgenieTeam | TownsquareGoal | TownsquareProject | TownsquareComment;
|
|
1247
1247
|
export declare type AriGraphRelationshipsErrorReference = {
|
|
1248
1248
|
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
1249
1249
|
from?: Maybe<Scalars['ID']>;
|
|
@@ -5179,6 +5179,46 @@ export declare type ConnectAppScope = {
|
|
|
5179
5179
|
capability: Scalars['String'];
|
|
5180
5180
|
atlassianProductName: Scalars['String'];
|
|
5181
5181
|
};
|
|
5182
|
+
export declare type ConnectedAppsAppVersion = {
|
|
5183
|
+
__typename?: 'ConnectedAppsAppVersion';
|
|
5184
|
+
id: Scalars['ID'];
|
|
5185
|
+
version?: Maybe<Scalars['String']>;
|
|
5186
|
+
permissions?: Maybe<ConnectedAppsPermissions>;
|
|
5187
|
+
};
|
|
5188
|
+
export declare type ConnectedAppsConnectApp = {
|
|
5189
|
+
__typename?: 'ConnectedAppsConnectApp';
|
|
5190
|
+
id: Scalars['ID'];
|
|
5191
|
+
name?: Maybe<Scalars['String']>;
|
|
5192
|
+
description?: Maybe<Scalars['String']>;
|
|
5193
|
+
vendorName?: Maybe<Scalars['String']>;
|
|
5194
|
+
installationsByContext?: Maybe<Array<ConnectedAppsConnectInstallations>>;
|
|
5195
|
+
};
|
|
5196
|
+
export declare type ConnectedAppsConnectAppInstallationsByContextArgs = {
|
|
5197
|
+
contexts: Array<Scalars['ID']>;
|
|
5198
|
+
};
|
|
5199
|
+
export declare type ConnectedAppsConnectInstallations = {
|
|
5200
|
+
__typename?: 'ConnectedAppsConnectInstallations';
|
|
5201
|
+
id: Scalars['String'];
|
|
5202
|
+
appId: Scalars['String'];
|
|
5203
|
+
context: Scalars['String'];
|
|
5204
|
+
appVersion?: Maybe<ConnectedAppsAppVersion>;
|
|
5205
|
+
};
|
|
5206
|
+
export declare type ConnectedAppsPermissions = {
|
|
5207
|
+
__typename?: 'ConnectedAppsPermissions';
|
|
5208
|
+
scopes?: Maybe<Array<ConnectedAppsScope>>;
|
|
5209
|
+
egress?: Maybe<Array<ConnectedAppsScopeAppNetworkEgressPermission>>;
|
|
5210
|
+
};
|
|
5211
|
+
export declare type ConnectedAppsScope = {
|
|
5212
|
+
__typename?: 'ConnectedAppsScope';
|
|
5213
|
+
key: Scalars['String'];
|
|
5214
|
+
name?: Maybe<Scalars['String']>;
|
|
5215
|
+
description?: Maybe<Scalars['String']>;
|
|
5216
|
+
};
|
|
5217
|
+
export declare type ConnectedAppsScopeAppNetworkEgressPermission = {
|
|
5218
|
+
__typename?: 'ConnectedAppsScopeAppNetworkEgressPermission';
|
|
5219
|
+
type?: Maybe<Scalars['String']>;
|
|
5220
|
+
addresses?: Maybe<Array<Scalars['String']>>;
|
|
5221
|
+
};
|
|
5182
5222
|
export declare type ContainerEventObject = {
|
|
5183
5223
|
__typename?: 'ContainerEventObject';
|
|
5184
5224
|
id: Scalars['ID'];
|
|
@@ -6711,6 +6751,14 @@ export declare type DevOpsBuildProvider = DevOpsDataProvider & {
|
|
|
6711
6751
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
6712
6752
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
6713
6753
|
};
|
|
6754
|
+
export declare enum DevOpsBuildState {
|
|
6755
|
+
Pending = "PENDING",
|
|
6756
|
+
InProgress = "IN_PROGRESS",
|
|
6757
|
+
Successful = "SUCCESSFUL",
|
|
6758
|
+
Failed = "FAILED",
|
|
6759
|
+
Cancelled = "CANCELLED",
|
|
6760
|
+
Unknown = "UNKNOWN"
|
|
6761
|
+
}
|
|
6714
6762
|
export declare type DevOpsContainerRelationshipEntityPropertyInput = {
|
|
6715
6763
|
key: Scalars['String'];
|
|
6716
6764
|
value: Scalars['JSON'];
|
|
@@ -6741,23 +6789,8 @@ export declare type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
|
6741
6789
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
6742
6790
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
6743
6791
|
};
|
|
6744
|
-
export declare
|
|
6745
|
-
|
|
6746
|
-
Document = "DOCUMENT",
|
|
6747
|
-
Presentation = "PRESENTATION",
|
|
6748
|
-
Spreadsheet = "SPREADSHEET",
|
|
6749
|
-
Image = "IMAGE",
|
|
6750
|
-
Audio = "AUDIO",
|
|
6751
|
-
Video = "VIDEO",
|
|
6752
|
-
Pdf = "PDF",
|
|
6753
|
-
Shortcut = "SHORTCUT",
|
|
6754
|
-
Code = "CODE",
|
|
6755
|
-
Archive = "ARCHIVE",
|
|
6756
|
-
Form = "FORM",
|
|
6757
|
-
Other = "OTHER"
|
|
6758
|
-
}
|
|
6759
|
-
export declare type DevOpsDocumentDetails = {
|
|
6760
|
-
__typename?: 'DevOpsDocumentDetails';
|
|
6792
|
+
export declare type DevOpsDocument = {
|
|
6793
|
+
__typename?: 'DevOpsDocument';
|
|
6761
6794
|
id: Scalars['ID'];
|
|
6762
6795
|
parentId?: Maybe<Scalars['ID']>;
|
|
6763
6796
|
providerId?: Maybe<Scalars['String']>;
|
|
@@ -6773,6 +6806,21 @@ export declare type DevOpsDocumentDetails = {
|
|
|
6773
6806
|
exportLinks?: Maybe<Array<Maybe<DevOpsDocumentExportLink>>>;
|
|
6774
6807
|
hasChildren?: Maybe<Scalars['Boolean']>;
|
|
6775
6808
|
};
|
|
6809
|
+
export declare enum DevOpsDocumentCategory {
|
|
6810
|
+
Folder = "FOLDER",
|
|
6811
|
+
Document = "DOCUMENT",
|
|
6812
|
+
Presentation = "PRESENTATION",
|
|
6813
|
+
Spreadsheet = "SPREADSHEET",
|
|
6814
|
+
Image = "IMAGE",
|
|
6815
|
+
Audio = "AUDIO",
|
|
6816
|
+
Video = "VIDEO",
|
|
6817
|
+
Pdf = "PDF",
|
|
6818
|
+
Shortcut = "SHORTCUT",
|
|
6819
|
+
Code = "CODE",
|
|
6820
|
+
Archive = "ARCHIVE",
|
|
6821
|
+
Form = "FORM",
|
|
6822
|
+
Other = "OTHER"
|
|
6823
|
+
}
|
|
6776
6824
|
export declare type DevOpsDocumentExportLink = {
|
|
6777
6825
|
__typename?: 'DevOpsDocumentExportLink';
|
|
6778
6826
|
mimeType?: Maybe<Scalars['String']>;
|
|
@@ -7470,6 +7518,22 @@ export declare type DevOpsServicesFilterInput = {
|
|
|
7470
7518
|
nameContains?: Maybe<Scalars['String']>;
|
|
7471
7519
|
tierLevelIn?: Maybe<Array<Scalars['Int']>>;
|
|
7472
7520
|
};
|
|
7521
|
+
export declare type DevOpsSummarisedBuildState = {
|
|
7522
|
+
__typename?: 'DevOpsSummarisedBuildState';
|
|
7523
|
+
count?: Maybe<Scalars['Int']>;
|
|
7524
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
7525
|
+
state?: Maybe<DevOpsBuildState>;
|
|
7526
|
+
url?: Maybe<Scalars['URL']>;
|
|
7527
|
+
};
|
|
7528
|
+
export declare type DevOpsSummarisedBuilds = {
|
|
7529
|
+
__typename?: 'DevOpsSummarisedBuilds';
|
|
7530
|
+
state?: Maybe<DevOpsBuildState>;
|
|
7531
|
+
count?: Maybe<Scalars['Int']>;
|
|
7532
|
+
mostRelevantCount?: Maybe<Scalars['Int']>;
|
|
7533
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
7534
|
+
singleClickUrl?: Maybe<Scalars['URL']>;
|
|
7535
|
+
buildStates?: Maybe<Array<Maybe<DevOpsSummarisedBuildState>>>;
|
|
7536
|
+
};
|
|
7473
7537
|
export declare type DevOpsSummarisedDeployments = {
|
|
7474
7538
|
__typename?: 'DevOpsSummarisedDeployments';
|
|
7475
7539
|
entityId: Scalars['ID'];
|
|
@@ -7484,6 +7548,7 @@ export declare type DevOpsSummarisedEntities = {
|
|
|
7484
7548
|
__typename?: 'DevOpsSummarisedEntities';
|
|
7485
7549
|
entityId: Scalars['ID'];
|
|
7486
7550
|
providers?: Maybe<DevOpsProviders>;
|
|
7551
|
+
summarisedBuilds?: Maybe<DevOpsSummarisedBuilds>;
|
|
7487
7552
|
summarisedDeployments?: Maybe<DevOpsSummarisedDeployments>;
|
|
7488
7553
|
summarisedFeatureFlags?: Maybe<DevOpsSummarisedFeatureFlags>;
|
|
7489
7554
|
};
|
|
@@ -7902,6 +7967,7 @@ export declare type EcosystemQuery = {
|
|
|
7902
7967
|
appInstallationsByContext?: Maybe<AppInstallationByIndexConnection>;
|
|
7903
7968
|
appInstallationsByApp?: Maybe<AppInstallationByIndexConnection>;
|
|
7904
7969
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
7970
|
+
connectApps?: Maybe<Array<ConnectedAppsConnectApp>>;
|
|
7905
7971
|
appEnvironmentsByOAuthClientIds?: Maybe<Array<AppEnvironment>>;
|
|
7906
7972
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
7907
7973
|
forgeAuditLogs?: Maybe<ForgeAuditLogsQuery>;
|
|
@@ -7936,6 +8002,10 @@ export declare type EcosystemQueryAppInstallationsByAppArgs = {
|
|
|
7936
8002
|
export declare type EcosystemQueryFortifiedMetricsArgs = {
|
|
7937
8003
|
appKey: Scalars['ID'];
|
|
7938
8004
|
};
|
|
8005
|
+
export declare type EcosystemQueryConnectAppsArgs = {
|
|
8006
|
+
appIds: Array<Scalars['String']>;
|
|
8007
|
+
contextIds: Array<Scalars['String']>;
|
|
8008
|
+
};
|
|
7939
8009
|
export declare type EcosystemQueryAppEnvironmentsByOAuthClientIdsArgs = {
|
|
7940
8010
|
oauthClientIds: Array<Scalars['ID']>;
|
|
7941
8011
|
};
|
|
@@ -7969,11 +8039,15 @@ export declare type ErsLifecycleMutation = {
|
|
|
7969
8039
|
export declare type ErsLifecycleQuery = {
|
|
7970
8040
|
__typename?: 'ErsLifecycleQuery';
|
|
7971
8041
|
customEntityDefinitions?: Maybe<Array<Maybe<CustomEntityDefinition>>>;
|
|
8042
|
+
doneEntitiesFromERS?: Maybe<Array<Maybe<CustomEntityDefinition>>>;
|
|
7972
8043
|
};
|
|
7973
8044
|
export declare type ErsLifecycleQueryCustomEntityDefinitionsArgs = {
|
|
7974
8045
|
entities: Array<Scalars['String']>;
|
|
7975
8046
|
oauthClientId: Scalars['String'];
|
|
7976
8047
|
};
|
|
8048
|
+
export declare type ErsLifecycleQueryDoneEntitiesFromErsArgs = {
|
|
8049
|
+
oauthClientId: Scalars['String'];
|
|
8050
|
+
};
|
|
7977
8051
|
export declare type Estimate = {
|
|
7978
8052
|
__typename?: 'Estimate';
|
|
7979
8053
|
storyPoints?: Maybe<Scalars['Float']>;
|
|
@@ -8815,7 +8889,7 @@ export declare type GraphJiraDeploymentEdge = {
|
|
|
8815
8889
|
export declare type GraphJiraDocument = Node & {
|
|
8816
8890
|
__typename?: 'GraphJiraDocument';
|
|
8817
8891
|
id: Scalars['ID'];
|
|
8818
|
-
document?: Maybe<
|
|
8892
|
+
document?: Maybe<DevOpsDocument>;
|
|
8819
8893
|
};
|
|
8820
8894
|
export declare type GraphJiraDocumentConnection = {
|
|
8821
8895
|
__typename?: 'GraphJiraDocumentConnection';
|
|
@@ -8937,6 +9011,7 @@ export declare type HelpCenter = Node & {
|
|
|
8937
9011
|
__typename?: 'HelpCenter';
|
|
8938
9012
|
id: Scalars['ID'];
|
|
8939
9013
|
type?: Maybe<HelpCenterType>;
|
|
9014
|
+
name?: Maybe<HelpCenterName>;
|
|
8940
9015
|
slug?: Maybe<Scalars['String']>;
|
|
8941
9016
|
topics?: Maybe<Array<HelpCenterTopic>>;
|
|
8942
9017
|
homePageLayout?: Maybe<HelpCenterHomePageLayout>;
|
|
@@ -8981,6 +9056,7 @@ export declare type HelpCenterMutationApi = {
|
|
|
8981
9056
|
updateTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
8982
9057
|
updateTopicsOrder?: Maybe<HelpCenterUpdateTopicsOrderPayload>;
|
|
8983
9058
|
deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
9059
|
+
updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
|
|
8984
9060
|
};
|
|
8985
9061
|
export declare type HelpCenterMutationApiCreateTopicArgs = {
|
|
8986
9062
|
input: HelpCenterBulkCreateTopicsInput;
|
|
@@ -8994,6 +9070,16 @@ export declare type HelpCenterMutationApiUpdateTopicsOrderArgs = {
|
|
|
8994
9070
|
export declare type HelpCenterMutationApiDeleteTopicArgs = {
|
|
8995
9071
|
input: HelpCenterBulkDeleteTopicInput;
|
|
8996
9072
|
};
|
|
9073
|
+
export declare type HelpCenterMutationApiUpdateHelpCenterArgs = {
|
|
9074
|
+
input: HelpCenterUpdateInput;
|
|
9075
|
+
};
|
|
9076
|
+
export declare type HelpCenterName = {
|
|
9077
|
+
__typename?: 'HelpCenterName';
|
|
9078
|
+
default: Scalars['String'];
|
|
9079
|
+
};
|
|
9080
|
+
export declare type HelpCenterNameInput = {
|
|
9081
|
+
default: Scalars['String'];
|
|
9082
|
+
};
|
|
8997
9083
|
export declare type HelpCenterQueryApi = {
|
|
8998
9084
|
__typename?: 'HelpCenterQueryApi';
|
|
8999
9085
|
helpCenterFromProductName?: Maybe<HelpCenterQueryResult>;
|
|
@@ -9069,6 +9155,16 @@ export declare enum HelpCenterType {
|
|
|
9069
9155
|
Advanced = "ADVANCED",
|
|
9070
9156
|
Basic = "BASIC"
|
|
9071
9157
|
}
|
|
9158
|
+
export declare type HelpCenterUpdateInput = {
|
|
9159
|
+
id: Scalars['ID'];
|
|
9160
|
+
name?: Maybe<HelpCenterNameInput>;
|
|
9161
|
+
slug?: Maybe<Scalars['String']>;
|
|
9162
|
+
};
|
|
9163
|
+
export declare type HelpCenterUpdatePayload = Payload & {
|
|
9164
|
+
__typename?: 'HelpCenterUpdatePayload';
|
|
9165
|
+
success: Scalars['Boolean'];
|
|
9166
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9167
|
+
};
|
|
9072
9168
|
export declare type HelpCenterUpdateTopicInput = {
|
|
9073
9169
|
productName: Scalars['String'];
|
|
9074
9170
|
topicId: Scalars['ID'];
|
|
@@ -10098,10 +10194,6 @@ export declare type JiraBulkEditResponseBulkEditFieldsArgs = {
|
|
|
10098
10194
|
last?: Maybe<Scalars['Int']>;
|
|
10099
10195
|
before?: Maybe<Scalars['String']>;
|
|
10100
10196
|
};
|
|
10101
|
-
export declare type JiraCcMessage = {
|
|
10102
|
-
role: Scalars['String'];
|
|
10103
|
-
content: Scalars['String'];
|
|
10104
|
-
};
|
|
10105
10197
|
export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
10106
10198
|
__typename?: 'JiraCMDBField';
|
|
10107
10199
|
id: Scalars['ID'];
|
|
@@ -10594,6 +10686,7 @@ export declare type JiraCommentConnection = {
|
|
|
10594
10686
|
indicativeCount?: Maybe<Scalars['Int']>;
|
|
10595
10687
|
pageInfo: PageInfo;
|
|
10596
10688
|
edges?: Maybe<Array<Maybe<JiraCommentEdge>>>;
|
|
10689
|
+
pageItemCount?: Maybe<Scalars['Int']>;
|
|
10597
10690
|
};
|
|
10598
10691
|
export declare type JiraCommentEdge = {
|
|
10599
10692
|
__typename?: 'JiraCommentEdge';
|
|
@@ -13042,6 +13135,7 @@ export declare type JiraMutation = {
|
|
|
13042
13135
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
13043
13136
|
linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
|
|
13044
13137
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
13138
|
+
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
13045
13139
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
13046
13140
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
13047
13141
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
@@ -13152,6 +13246,10 @@ export declare type JiraMutationAssignRelatedWorkToUserArgs = {
|
|
|
13152
13246
|
export declare type JiraMutationLinkIssueToVersionRelatedWorkArgs = {
|
|
13153
13247
|
input: JiraLinkIssueToVersionRelatedWorkInput;
|
|
13154
13248
|
};
|
|
13249
|
+
export declare type JiraMutationSetUserBroadcastMessageDismissedArgs = {
|
|
13250
|
+
cloudId: Scalars['ID'];
|
|
13251
|
+
id: Scalars['ID'];
|
|
13252
|
+
};
|
|
13155
13253
|
export declare type JiraMutationSetEntityIsFavouriteArgs = {
|
|
13156
13254
|
input: JiraSetIsFavouriteInput;
|
|
13157
13255
|
};
|
|
@@ -13247,7 +13345,6 @@ export declare type JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload
|
|
|
13247
13345
|
export declare type JiraNaturalLanguageToJqlInput = {
|
|
13248
13346
|
naturalLanguageInput: Scalars['String'];
|
|
13249
13347
|
iteration?: Maybe<JiraIteration>;
|
|
13250
|
-
initMessages?: Maybe<Array<JiraCcMessage>>;
|
|
13251
13348
|
};
|
|
13252
13349
|
export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
13253
13350
|
__typename?: 'JiraNumberField';
|
|
@@ -14324,6 +14421,7 @@ export declare type JiraQuery = {
|
|
|
14324
14421
|
filter?: Maybe<JiraFilter>;
|
|
14325
14422
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
14326
14423
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
14424
|
+
allJiraUserBroadcastMessages?: Maybe<JiraUserBroadcastMessageConnection>;
|
|
14327
14425
|
devOpsProviders?: Maybe<Array<Maybe<JiraDevOpsProvider>>>;
|
|
14328
14426
|
issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
|
|
14329
14427
|
issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
|
|
@@ -14332,6 +14430,7 @@ export declare type JiraQuery = {
|
|
|
14332
14430
|
jwmNavigationByProjectId?: Maybe<JiraWorkManagementNavigation>;
|
|
14333
14431
|
jwmNavigationByProjectKey?: Maybe<JiraWorkManagementNavigation>;
|
|
14334
14432
|
issueByKey?: Maybe<JiraIssue>;
|
|
14433
|
+
issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
14335
14434
|
issueById?: Maybe<JiraIssue>;
|
|
14336
14435
|
issue?: Maybe<JiraIssue>;
|
|
14337
14436
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
@@ -14542,6 +14641,13 @@ export declare type JiraQuerySystemFiltersArgs = {
|
|
|
14542
14641
|
last?: Maybe<Scalars['Int']>;
|
|
14543
14642
|
before?: Maybe<Scalars['String']>;
|
|
14544
14643
|
};
|
|
14644
|
+
export declare type JiraQueryAllJiraUserBroadcastMessagesArgs = {
|
|
14645
|
+
cloudId: Scalars['ID'];
|
|
14646
|
+
first?: Maybe<Scalars['Int']>;
|
|
14647
|
+
last?: Maybe<Scalars['Int']>;
|
|
14648
|
+
after?: Maybe<Scalars['String']>;
|
|
14649
|
+
before?: Maybe<Scalars['String']>;
|
|
14650
|
+
};
|
|
14545
14651
|
export declare type JiraQueryDevOpsProvidersArgs = {
|
|
14546
14652
|
cloudId: Scalars['ID'];
|
|
14547
14653
|
filter?: Maybe<Array<JiraDevOpsCapability>>;
|
|
@@ -14574,6 +14680,10 @@ export declare type JiraQueryIssueByKeyArgs = {
|
|
|
14574
14680
|
key: Scalars['String'];
|
|
14575
14681
|
cloudId: Scalars['ID'];
|
|
14576
14682
|
};
|
|
14683
|
+
export declare type JiraQueryIssuesByKeyArgs = {
|
|
14684
|
+
keys: Array<Scalars['String']>;
|
|
14685
|
+
cloudId: Scalars['ID'];
|
|
14686
|
+
};
|
|
14577
14687
|
export declare type JiraQueryIssueByIdArgs = {
|
|
14578
14688
|
id: Scalars['ID'];
|
|
14579
14689
|
};
|
|
@@ -16434,6 +16544,30 @@ export declare type JiraUser = {
|
|
|
16434
16544
|
avatarUrl?: Maybe<Scalars['String']>;
|
|
16435
16545
|
email?: Maybe<Scalars['String']>;
|
|
16436
16546
|
};
|
|
16547
|
+
export declare type JiraUserBroadcastMessage = Node & {
|
|
16548
|
+
__typename?: 'JiraUserBroadcastMessage';
|
|
16549
|
+
id: Scalars['ID'];
|
|
16550
|
+
shouldDisplay?: Maybe<Scalars['Boolean']>;
|
|
16551
|
+
isDismissed?: Maybe<Scalars['Boolean']>;
|
|
16552
|
+
isUserTargeted?: Maybe<Scalars['Boolean']>;
|
|
16553
|
+
};
|
|
16554
|
+
export declare type JiraUserBroadcastMessageActionPayload = Payload & {
|
|
16555
|
+
__typename?: 'JiraUserBroadcastMessageActionPayload';
|
|
16556
|
+
userBroadcastMessage?: Maybe<JiraUserBroadcastMessage>;
|
|
16557
|
+
success: Scalars['Boolean'];
|
|
16558
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16559
|
+
};
|
|
16560
|
+
export declare type JiraUserBroadcastMessageConnection = HasTotal & HasPageInfo & {
|
|
16561
|
+
__typename?: 'JiraUserBroadcastMessageConnection';
|
|
16562
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
16563
|
+
pageInfo: PageInfo;
|
|
16564
|
+
edges?: Maybe<Array<Maybe<JiraUserBroadcastMessageEdge>>>;
|
|
16565
|
+
};
|
|
16566
|
+
export declare type JiraUserBroadcastMessageEdge = {
|
|
16567
|
+
__typename?: 'JiraUserBroadcastMessageEdge';
|
|
16568
|
+
node?: Maybe<JiraUserBroadcastMessage>;
|
|
16569
|
+
cursor: Scalars['String'];
|
|
16570
|
+
};
|
|
16437
16571
|
export declare type JiraUserConnection = {
|
|
16438
16572
|
__typename?: 'JiraUserConnection';
|
|
16439
16573
|
pageInfo: PageInfo;
|
|
@@ -16540,6 +16674,7 @@ export declare type JiraVersion = Node & {
|
|
|
16540
16674
|
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
16541
16675
|
relatedWorkV2?: Maybe<JiraVersionRelatedWorkV2Connection>;
|
|
16542
16676
|
suggestedRelatedWorkCategories?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
16677
|
+
approvers?: Maybe<JiraVersionApproverConnection>;
|
|
16543
16678
|
};
|
|
16544
16679
|
export declare type JiraVersionIssuesArgs = {
|
|
16545
16680
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -16604,6 +16739,35 @@ export declare type JiraVersionRelatedWorkV2Args = {
|
|
|
16604
16739
|
last?: Maybe<Scalars['Int']>;
|
|
16605
16740
|
before?: Maybe<Scalars['String']>;
|
|
16606
16741
|
};
|
|
16742
|
+
export declare type JiraVersionApproversArgs = {
|
|
16743
|
+
first?: Maybe<Scalars['Int']>;
|
|
16744
|
+
after?: Maybe<Scalars['String']>;
|
|
16745
|
+
last?: Maybe<Scalars['Int']>;
|
|
16746
|
+
before?: Maybe<Scalars['String']>;
|
|
16747
|
+
};
|
|
16748
|
+
export declare type JiraVersionApprover = Node & {
|
|
16749
|
+
__typename?: 'JiraVersionApprover';
|
|
16750
|
+
id: Scalars['ID'];
|
|
16751
|
+
user?: Maybe<User>;
|
|
16752
|
+
description?: Maybe<Scalars['String']>;
|
|
16753
|
+
declineReason?: Maybe<Scalars['String']>;
|
|
16754
|
+
status?: Maybe<JiraVersionApproverStatus>;
|
|
16755
|
+
};
|
|
16756
|
+
export declare type JiraVersionApproverConnection = {
|
|
16757
|
+
__typename?: 'JiraVersionApproverConnection';
|
|
16758
|
+
pageInfo: PageInfo;
|
|
16759
|
+
edges?: Maybe<Array<Maybe<JiraVersionApproverEdge>>>;
|
|
16760
|
+
};
|
|
16761
|
+
export declare type JiraVersionApproverEdge = {
|
|
16762
|
+
__typename?: 'JiraVersionApproverEdge';
|
|
16763
|
+
node?: Maybe<JiraVersionApprover>;
|
|
16764
|
+
cursor: Scalars['String'];
|
|
16765
|
+
};
|
|
16766
|
+
export declare enum JiraVersionApproverStatus {
|
|
16767
|
+
Pending = "PENDING",
|
|
16768
|
+
Approved = "APPROVED",
|
|
16769
|
+
Declined = "DECLINED"
|
|
16770
|
+
}
|
|
16607
16771
|
export declare type JiraVersionConnectAddonIframeData = {
|
|
16608
16772
|
__typename?: 'JiraVersionConnectAddonIframeData';
|
|
16609
16773
|
appKey?: Maybe<Scalars['String']>;
|
|
@@ -20110,6 +20274,7 @@ export declare type Query = {
|
|
|
20110
20274
|
appRecommendations?: Maybe<AppRecQuery>;
|
|
20111
20275
|
ccp?: Maybe<CcpQueryApi>;
|
|
20112
20276
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
20277
|
+
atlas?: Maybe<TownsquareQueryApi>;
|
|
20113
20278
|
devOps?: Maybe<DevOps>;
|
|
20114
20279
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
20115
20280
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -22275,6 +22440,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
22275
22440
|
JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
|
|
22276
22441
|
OrgLoggedInAsUser = "ORG_LOGGED_IN_AS_USER",
|
|
22277
22442
|
RotateScimDirectoryToken = "ROTATE_SCIM_DIRECTORY_TOKEN",
|
|
22443
|
+
TestAlert = "TEST_ALERT",
|
|
22278
22444
|
TokenCreated = "TOKEN_CREATED",
|
|
22279
22445
|
UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
|
|
22280
22446
|
UpdatedPolicy = "UPDATED_POLICY",
|
|
@@ -22352,8 +22518,16 @@ export declare type ShepherdCreateWebhookInput = {
|
|
|
22352
22518
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
22353
22519
|
type?: Maybe<ShepherdWebhookType>;
|
|
22354
22520
|
};
|
|
22521
|
+
export declare type ShepherdCurrentUser = {
|
|
22522
|
+
__typename?: 'ShepherdCurrentUser';
|
|
22523
|
+
isOrgAdmin?: Maybe<Scalars['Boolean']>;
|
|
22524
|
+
user?: Maybe<ShepherdUser>;
|
|
22525
|
+
};
|
|
22355
22526
|
export declare type ShepherdDescriptionTemplate = {
|
|
22356
22527
|
__typename?: 'ShepherdDescriptionTemplate';
|
|
22528
|
+
extendedText?: Maybe<Scalars['JSON']>;
|
|
22529
|
+
investigationText?: Maybe<Scalars['JSON']>;
|
|
22530
|
+
remediationText?: Maybe<Scalars['JSON']>;
|
|
22357
22531
|
text?: Maybe<Scalars['JSON']>;
|
|
22358
22532
|
type?: Maybe<ShepherdAlertTemplateType>;
|
|
22359
22533
|
};
|
|
@@ -22675,6 +22849,7 @@ export declare type ShepherdWorkspace = {
|
|
|
22675
22849
|
actor?: Maybe<ShepherdUser>;
|
|
22676
22850
|
cloudId: Scalars['ID'];
|
|
22677
22851
|
cloudName?: Maybe<Scalars['String']>;
|
|
22852
|
+
currentUser?: Maybe<ShepherdCurrentUser>;
|
|
22678
22853
|
detections: Array<ShepherdDetection>;
|
|
22679
22854
|
id: Scalars['ID'];
|
|
22680
22855
|
orgId: Scalars['ID'];
|
|
@@ -23730,7 +23905,7 @@ export declare type ToolchainAssociateContainersPayload = Payload & {
|
|
|
23730
23905
|
errors?: Maybe<Array<MutationError>>;
|
|
23731
23906
|
containers?: Maybe<Array<ToolchainAssociatedContainer>>;
|
|
23732
23907
|
};
|
|
23733
|
-
export declare type ToolchainAssociatedContainer =
|
|
23908
|
+
export declare type ToolchainAssociatedContainer = DevOpsDocument;
|
|
23734
23909
|
export declare type ToolchainContainer = Node & {
|
|
23735
23910
|
__typename?: 'ToolchainContainer';
|
|
23736
23911
|
id: Scalars['ID'];
|
|
@@ -24051,7 +24226,27 @@ export declare type TransitionFilter = {
|
|
|
24051
24226
|
};
|
|
24052
24227
|
export declare type TrelloAttachment = {
|
|
24053
24228
|
__typename?: 'TrelloAttachment';
|
|
24054
|
-
|
|
24229
|
+
bytes?: Maybe<Scalars['Float']>;
|
|
24230
|
+
date?: Maybe<Scalars['DateTime']>;
|
|
24231
|
+
edgeColor?: Maybe<Scalars['String']>;
|
|
24232
|
+
fileName?: Maybe<Scalars['String']>;
|
|
24233
|
+
isUpload?: Maybe<Scalars['Boolean']>;
|
|
24234
|
+
mimeType?: Maybe<Scalars['String']>;
|
|
24235
|
+
name?: Maybe<Scalars['String']>;
|
|
24236
|
+
objectId: Scalars['ID'];
|
|
24237
|
+
position?: Maybe<Scalars['Float']>;
|
|
24238
|
+
url?: Maybe<Scalars['URL']>;
|
|
24239
|
+
};
|
|
24240
|
+
export declare type TrelloAttachmentConnection = {
|
|
24241
|
+
__typename?: 'TrelloAttachmentConnection';
|
|
24242
|
+
edges?: Maybe<Array<TrelloAttachmentEdge>>;
|
|
24243
|
+
nodes?: Maybe<Array<TrelloAttachment>>;
|
|
24244
|
+
pageInfo: PageInfo;
|
|
24245
|
+
};
|
|
24246
|
+
export declare type TrelloAttachmentEdge = {
|
|
24247
|
+
__typename?: 'TrelloAttachmentEdge';
|
|
24248
|
+
cursor: Scalars['String'];
|
|
24249
|
+
node: TrelloAttachment;
|
|
24055
24250
|
};
|
|
24056
24251
|
export declare type TrelloBoard = Node & {
|
|
24057
24252
|
__typename?: 'TrelloBoard';
|
|
@@ -24133,6 +24328,7 @@ export declare type TrelloBoardViewer = {
|
|
|
24133
24328
|
};
|
|
24134
24329
|
export declare type TrelloCard = Node & {
|
|
24135
24330
|
__typename?: 'TrelloCard';
|
|
24331
|
+
attachments?: Maybe<TrelloAttachmentConnection>;
|
|
24136
24332
|
badges?: Maybe<TrelloCardBadges>;
|
|
24137
24333
|
closed?: Maybe<Scalars['Boolean']>;
|
|
24138
24334
|
cover?: Maybe<TrelloCardCover>;
|
|
@@ -24146,7 +24342,7 @@ export declare type TrelloCard = Node & {
|
|
|
24146
24342
|
list?: Maybe<TrelloList>;
|
|
24147
24343
|
location?: Maybe<TrelloCardLocation>;
|
|
24148
24344
|
name?: Maybe<Scalars['String']>;
|
|
24149
|
-
objectId: Scalars['
|
|
24345
|
+
objectId: Scalars['ID'];
|
|
24150
24346
|
position?: Maybe<Scalars['Float']>;
|
|
24151
24347
|
role?: Maybe<TrelloCardRole>;
|
|
24152
24348
|
shortId?: Maybe<Scalars['Int']>;
|
|
@@ -24156,6 +24352,10 @@ export declare type TrelloCard = Node & {
|
|
|
24156
24352
|
stickers?: Maybe<TrelloStickerConnection>;
|
|
24157
24353
|
url?: Maybe<Scalars['URL']>;
|
|
24158
24354
|
};
|
|
24355
|
+
export declare type TrelloCardAttachmentsArgs = {
|
|
24356
|
+
after?: Maybe<Scalars['String']>;
|
|
24357
|
+
first?: Maybe<Scalars['Int']>;
|
|
24358
|
+
};
|
|
24159
24359
|
export declare type TrelloCardLabelsArgs = {
|
|
24160
24360
|
after?: Maybe<Scalars['String']>;
|
|
24161
24361
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -24273,6 +24473,28 @@ export declare enum TrelloCardRole {
|
|
|
24273
24473
|
Mirror = "MIRROR",
|
|
24274
24474
|
Separator = "SEPARATOR"
|
|
24275
24475
|
}
|
|
24476
|
+
export declare type TrelloCardUpdated = {
|
|
24477
|
+
__typename?: 'TrelloCardUpdated';
|
|
24478
|
+
closed?: Maybe<Scalars['Boolean']>;
|
|
24479
|
+
description?: Maybe<Scalars['String']>;
|
|
24480
|
+
id: Scalars['ID'];
|
|
24481
|
+
name?: Maybe<Scalars['String']>;
|
|
24482
|
+
};
|
|
24483
|
+
export declare type TrelloCardUpdatedConnection = {
|
|
24484
|
+
__typename?: 'TrelloCardUpdatedConnection';
|
|
24485
|
+
nodes?: Maybe<Array<TrelloCardUpdated>>;
|
|
24486
|
+
};
|
|
24487
|
+
export declare type TrelloCardUpdatedConnectionDeltas = {
|
|
24488
|
+
__typename?: 'TrelloCardUpdatedConnectionDeltas';
|
|
24489
|
+
nodes: Array<TrelloCardUpdatedDeltas>;
|
|
24490
|
+
};
|
|
24491
|
+
export declare type TrelloCardUpdatedDeltas = {
|
|
24492
|
+
__typename?: 'TrelloCardUpdatedDeltas';
|
|
24493
|
+
closed?: Maybe<Scalars['Boolean']>;
|
|
24494
|
+
description?: Maybe<Scalars['Boolean']>;
|
|
24495
|
+
id?: Maybe<Scalars['Boolean']>;
|
|
24496
|
+
name?: Maybe<Scalars['Boolean']>;
|
|
24497
|
+
};
|
|
24276
24498
|
export declare type TrelloCardViewer = {
|
|
24277
24499
|
__typename?: 'TrelloCardViewer';
|
|
24278
24500
|
subscribed?: Maybe<Scalars['Boolean']>;
|
|
@@ -24331,7 +24553,7 @@ export declare type TrelloList = Node & {
|
|
|
24331
24553
|
id: Scalars['ID'];
|
|
24332
24554
|
limits?: Maybe<TrelloListLimits>;
|
|
24333
24555
|
name: Scalars['String'];
|
|
24334
|
-
objectId: Scalars['
|
|
24556
|
+
objectId: Scalars['ID'];
|
|
24335
24557
|
position: Scalars['Float'];
|
|
24336
24558
|
softLimit?: Maybe<Scalars['Int']>;
|
|
24337
24559
|
viewer?: Maybe<TrelloListViewer>;
|
|
@@ -24369,6 +24591,7 @@ export declare type TrelloListLimits = {
|
|
|
24369
24591
|
};
|
|
24370
24592
|
export declare type TrelloListUpdated = {
|
|
24371
24593
|
__typename?: 'TrelloListUpdated';
|
|
24594
|
+
cards?: Maybe<TrelloCardUpdatedConnection>;
|
|
24372
24595
|
closed?: Maybe<Scalars['Boolean']>;
|
|
24373
24596
|
id: Scalars['ID'];
|
|
24374
24597
|
name?: Maybe<Scalars['String']>;
|
|
@@ -24385,7 +24608,9 @@ export declare type TrelloListUpdatedConnectionDeltas = {
|
|
|
24385
24608
|
};
|
|
24386
24609
|
export declare type TrelloListUpdatedDeltas = {
|
|
24387
24610
|
__typename?: 'TrelloListUpdatedDeltas';
|
|
24611
|
+
cards?: Maybe<TrelloCardUpdatedConnectionDeltas>;
|
|
24388
24612
|
closed?: Maybe<Scalars['Boolean']>;
|
|
24613
|
+
id?: Maybe<Scalars['Boolean']>;
|
|
24389
24614
|
name?: Maybe<Scalars['Boolean']>;
|
|
24390
24615
|
position?: Maybe<Scalars['Boolean']>;
|
|
24391
24616
|
softLimit?: Maybe<Scalars['Boolean']>;
|
|
@@ -24501,7 +24726,7 @@ export declare type TrelloTemplateGalleryLanguage = {
|
|
|
24501
24726
|
};
|
|
24502
24727
|
export declare type TrelloUploadedBackground = {
|
|
24503
24728
|
__typename?: 'TrelloUploadedBackground';
|
|
24504
|
-
objectId: Scalars['
|
|
24729
|
+
objectId: Scalars['ID'];
|
|
24505
24730
|
};
|
|
24506
24731
|
export declare type TrelloWorkspace = Node & {
|
|
24507
24732
|
__typename?: 'TrelloWorkspace';
|