@forge/cli-shared 3.13.0-next.1 → 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 +76 -0
- package/out/graphql/graphql-types.d.ts +204 -9
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +16 -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,81 @@
|
|
|
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
|
+
|
|
3
79
|
## 3.13.0-next.1
|
|
4
80
|
|
|
5
81
|
### Patch Changes
|
|
@@ -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'];
|
|
@@ -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']>;
|
|
@@ -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;
|
|
@@ -20140,6 +20274,7 @@ export declare type Query = {
|
|
|
20140
20274
|
appRecommendations?: Maybe<AppRecQuery>;
|
|
20141
20275
|
ccp?: Maybe<CcpQueryApi>;
|
|
20142
20276
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
20277
|
+
atlas?: Maybe<TownsquareQueryApi>;
|
|
20143
20278
|
devOps?: Maybe<DevOps>;
|
|
20144
20279
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
20145
20280
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -22305,6 +22440,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
22305
22440
|
JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
|
|
22306
22441
|
OrgLoggedInAsUser = "ORG_LOGGED_IN_AS_USER",
|
|
22307
22442
|
RotateScimDirectoryToken = "ROTATE_SCIM_DIRECTORY_TOKEN",
|
|
22443
|
+
TestAlert = "TEST_ALERT",
|
|
22308
22444
|
TokenCreated = "TOKEN_CREATED",
|
|
22309
22445
|
UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
|
|
22310
22446
|
UpdatedPolicy = "UPDATED_POLICY",
|
|
@@ -22382,8 +22518,16 @@ export declare type ShepherdCreateWebhookInput = {
|
|
|
22382
22518
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
22383
22519
|
type?: Maybe<ShepherdWebhookType>;
|
|
22384
22520
|
};
|
|
22521
|
+
export declare type ShepherdCurrentUser = {
|
|
22522
|
+
__typename?: 'ShepherdCurrentUser';
|
|
22523
|
+
isOrgAdmin?: Maybe<Scalars['Boolean']>;
|
|
22524
|
+
user?: Maybe<ShepherdUser>;
|
|
22525
|
+
};
|
|
22385
22526
|
export declare type ShepherdDescriptionTemplate = {
|
|
22386
22527
|
__typename?: 'ShepherdDescriptionTemplate';
|
|
22528
|
+
extendedText?: Maybe<Scalars['JSON']>;
|
|
22529
|
+
investigationText?: Maybe<Scalars['JSON']>;
|
|
22530
|
+
remediationText?: Maybe<Scalars['JSON']>;
|
|
22387
22531
|
text?: Maybe<Scalars['JSON']>;
|
|
22388
22532
|
type?: Maybe<ShepherdAlertTemplateType>;
|
|
22389
22533
|
};
|
|
@@ -22705,6 +22849,7 @@ export declare type ShepherdWorkspace = {
|
|
|
22705
22849
|
actor?: Maybe<ShepherdUser>;
|
|
22706
22850
|
cloudId: Scalars['ID'];
|
|
22707
22851
|
cloudName?: Maybe<Scalars['String']>;
|
|
22852
|
+
currentUser?: Maybe<ShepherdCurrentUser>;
|
|
22708
22853
|
detections: Array<ShepherdDetection>;
|
|
22709
22854
|
id: Scalars['ID'];
|
|
22710
22855
|
orgId: Scalars['ID'];
|
|
@@ -24081,7 +24226,27 @@ export declare type TransitionFilter = {
|
|
|
24081
24226
|
};
|
|
24082
24227
|
export declare type TrelloAttachment = {
|
|
24083
24228
|
__typename?: 'TrelloAttachment';
|
|
24084
|
-
|
|
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;
|
|
24085
24250
|
};
|
|
24086
24251
|
export declare type TrelloBoard = Node & {
|
|
24087
24252
|
__typename?: 'TrelloBoard';
|
|
@@ -24163,6 +24328,7 @@ export declare type TrelloBoardViewer = {
|
|
|
24163
24328
|
};
|
|
24164
24329
|
export declare type TrelloCard = Node & {
|
|
24165
24330
|
__typename?: 'TrelloCard';
|
|
24331
|
+
attachments?: Maybe<TrelloAttachmentConnection>;
|
|
24166
24332
|
badges?: Maybe<TrelloCardBadges>;
|
|
24167
24333
|
closed?: Maybe<Scalars['Boolean']>;
|
|
24168
24334
|
cover?: Maybe<TrelloCardCover>;
|
|
@@ -24176,7 +24342,7 @@ export declare type TrelloCard = Node & {
|
|
|
24176
24342
|
list?: Maybe<TrelloList>;
|
|
24177
24343
|
location?: Maybe<TrelloCardLocation>;
|
|
24178
24344
|
name?: Maybe<Scalars['String']>;
|
|
24179
|
-
objectId: Scalars['
|
|
24345
|
+
objectId: Scalars['ID'];
|
|
24180
24346
|
position?: Maybe<Scalars['Float']>;
|
|
24181
24347
|
role?: Maybe<TrelloCardRole>;
|
|
24182
24348
|
shortId?: Maybe<Scalars['Int']>;
|
|
@@ -24186,6 +24352,10 @@ export declare type TrelloCard = Node & {
|
|
|
24186
24352
|
stickers?: Maybe<TrelloStickerConnection>;
|
|
24187
24353
|
url?: Maybe<Scalars['URL']>;
|
|
24188
24354
|
};
|
|
24355
|
+
export declare type TrelloCardAttachmentsArgs = {
|
|
24356
|
+
after?: Maybe<Scalars['String']>;
|
|
24357
|
+
first?: Maybe<Scalars['Int']>;
|
|
24358
|
+
};
|
|
24189
24359
|
export declare type TrelloCardLabelsArgs = {
|
|
24190
24360
|
after?: Maybe<Scalars['String']>;
|
|
24191
24361
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -24303,6 +24473,28 @@ export declare enum TrelloCardRole {
|
|
|
24303
24473
|
Mirror = "MIRROR",
|
|
24304
24474
|
Separator = "SEPARATOR"
|
|
24305
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
|
+
};
|
|
24306
24498
|
export declare type TrelloCardViewer = {
|
|
24307
24499
|
__typename?: 'TrelloCardViewer';
|
|
24308
24500
|
subscribed?: Maybe<Scalars['Boolean']>;
|
|
@@ -24361,7 +24553,7 @@ export declare type TrelloList = Node & {
|
|
|
24361
24553
|
id: Scalars['ID'];
|
|
24362
24554
|
limits?: Maybe<TrelloListLimits>;
|
|
24363
24555
|
name: Scalars['String'];
|
|
24364
|
-
objectId: Scalars['
|
|
24556
|
+
objectId: Scalars['ID'];
|
|
24365
24557
|
position: Scalars['Float'];
|
|
24366
24558
|
softLimit?: Maybe<Scalars['Int']>;
|
|
24367
24559
|
viewer?: Maybe<TrelloListViewer>;
|
|
@@ -24399,6 +24591,7 @@ export declare type TrelloListLimits = {
|
|
|
24399
24591
|
};
|
|
24400
24592
|
export declare type TrelloListUpdated = {
|
|
24401
24593
|
__typename?: 'TrelloListUpdated';
|
|
24594
|
+
cards?: Maybe<TrelloCardUpdatedConnection>;
|
|
24402
24595
|
closed?: Maybe<Scalars['Boolean']>;
|
|
24403
24596
|
id: Scalars['ID'];
|
|
24404
24597
|
name?: Maybe<Scalars['String']>;
|
|
@@ -24415,7 +24608,9 @@ export declare type TrelloListUpdatedConnectionDeltas = {
|
|
|
24415
24608
|
};
|
|
24416
24609
|
export declare type TrelloListUpdatedDeltas = {
|
|
24417
24610
|
__typename?: 'TrelloListUpdatedDeltas';
|
|
24611
|
+
cards?: Maybe<TrelloCardUpdatedConnectionDeltas>;
|
|
24418
24612
|
closed?: Maybe<Scalars['Boolean']>;
|
|
24613
|
+
id?: Maybe<Scalars['Boolean']>;
|
|
24419
24614
|
name?: Maybe<Scalars['Boolean']>;
|
|
24420
24615
|
position?: Maybe<Scalars['Boolean']>;
|
|
24421
24616
|
softLimit?: Maybe<Scalars['Boolean']>;
|
|
@@ -24531,7 +24726,7 @@ export declare type TrelloTemplateGalleryLanguage = {
|
|
|
24531
24726
|
};
|
|
24532
24727
|
export declare type TrelloUploadedBackground = {
|
|
24533
24728
|
__typename?: 'TrelloUploadedBackground';
|
|
24534
|
-
objectId: Scalars['
|
|
24729
|
+
objectId: Scalars['ID'];
|
|
24535
24730
|
};
|
|
24536
24731
|
export declare type TrelloWorkspace = Node & {
|
|
24537
24732
|
__typename?: 'TrelloWorkspace';
|