@forge/cli-shared 2.2.1-next.7 → 2.2.2-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 +39 -0
- package/out/graphql/graphql-types.d.ts +190 -57
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +14 -4
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.2.2-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [2c635f9]
|
|
8
|
+
- @forge/manifest@3.1.1-next.0
|
|
9
|
+
|
|
10
|
+
## 2.2.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [debe251]
|
|
15
|
+
- Updated dependencies [037c31a5]
|
|
16
|
+
- Updated dependencies [f6901fd]
|
|
17
|
+
- Updated dependencies [813f8f3]
|
|
18
|
+
- Updated dependencies [8ee1c58]
|
|
19
|
+
- Updated dependencies [67d2e17]
|
|
20
|
+
- Updated dependencies [14102be]
|
|
21
|
+
- Updated dependencies [7b2d17a]
|
|
22
|
+
- Updated dependencies [8aaa65c]
|
|
23
|
+
- Updated dependencies [d3ccc04]
|
|
24
|
+
- Updated dependencies [5152239]
|
|
25
|
+
- @forge/manifest@3.1.0
|
|
26
|
+
- @forge/util@1.1.0
|
|
27
|
+
|
|
28
|
+
## 2.2.1-next.9
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- Updated dependencies [8aaa65c]
|
|
33
|
+
- @forge/manifest@3.1.0-next.9
|
|
34
|
+
|
|
35
|
+
## 2.2.1-next.8
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- Updated dependencies [67d2e17c]
|
|
40
|
+
- @forge/manifest@3.1.0-next.8
|
|
41
|
+
|
|
3
42
|
## 2.2.1-next.7
|
|
4
43
|
|
|
5
44
|
### Patch Changes
|
|
@@ -243,7 +243,9 @@ export declare type ActivityObject = {
|
|
|
243
243
|
product?: Maybe<Scalars['String']>;
|
|
244
244
|
subProduct?: Maybe<Scalars['String']>;
|
|
245
245
|
contributors?: Maybe<Array<ActivitiesContributor>>;
|
|
246
|
+
data?: Maybe<ActivityObjectData>;
|
|
246
247
|
};
|
|
248
|
+
export declare type ActivityObjectData = TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
247
249
|
export declare enum ActivityObjectType {
|
|
248
250
|
Site = "SITE",
|
|
249
251
|
Project = "PROJECT",
|
|
@@ -1799,7 +1801,6 @@ export declare enum CompassComponentType {
|
|
|
1799
1801
|
Other = "OTHER"
|
|
1800
1802
|
}
|
|
1801
1803
|
export declare type CompassCreateAlertEventInput = {
|
|
1802
|
-
eventType: CompassEventType;
|
|
1803
1804
|
displayName: Scalars['String'];
|
|
1804
1805
|
lastUpdated: Scalars['DateTime'];
|
|
1805
1806
|
alertId: Scalars['ID'];
|
|
@@ -1821,7 +1822,6 @@ export declare type CompassCreateAnnouncementPayload = Payload & {
|
|
|
1821
1822
|
errors?: Maybe<Array<MutationError>>;
|
|
1822
1823
|
};
|
|
1823
1824
|
export declare type CompassCreateCustomEventInput = {
|
|
1824
|
-
eventType: CompassEventType;
|
|
1825
1825
|
displayName: Scalars['String'];
|
|
1826
1826
|
lastUpdated: Scalars['DateTime'];
|
|
1827
1827
|
customEventId: Scalars['ID'];
|
|
@@ -1853,7 +1853,6 @@ export declare type CompassCreateEventsPayload = Payload & {
|
|
|
1853
1853
|
errors?: Maybe<Array<MutationError>>;
|
|
1854
1854
|
};
|
|
1855
1855
|
export declare type CompassCreateFlagEventInput = {
|
|
1856
|
-
eventType: CompassEventType;
|
|
1857
1856
|
displayName: Scalars['String'];
|
|
1858
1857
|
lastUpdated: Scalars['DateTime'];
|
|
1859
1858
|
flagId: Scalars['ID'];
|
|
@@ -1864,7 +1863,6 @@ export declare type CompassCreateFlagEventInput = {
|
|
|
1864
1863
|
externalEventSourceId: Scalars['ID'];
|
|
1865
1864
|
};
|
|
1866
1865
|
export declare type CompassCreateIncidentEventInput = {
|
|
1867
|
-
eventType: CompassEventType;
|
|
1868
1866
|
displayName: Scalars['String'];
|
|
1869
1867
|
lastUpdated: Scalars['DateTime'];
|
|
1870
1868
|
incidentId: Scalars['ID'];
|
|
@@ -1875,7 +1873,6 @@ export declare type CompassCreateIncidentEventInput = {
|
|
|
1875
1873
|
externalEventSourceId: Scalars['ID'];
|
|
1876
1874
|
};
|
|
1877
1875
|
export declare type CompassCreateLifecycleEventInput = {
|
|
1878
|
-
eventType: CompassEventType;
|
|
1879
1876
|
displayName: Scalars['String'];
|
|
1880
1877
|
lastUpdated: Scalars['DateTime'];
|
|
1881
1878
|
lifecycleId: Scalars['ID'];
|
|
@@ -3577,7 +3574,7 @@ export declare type CreateColumnInput = {
|
|
|
3577
3574
|
export declare type CreateColumnOutput = MutationResponse & {
|
|
3578
3575
|
__typename?: 'CreateColumnOutput';
|
|
3579
3576
|
newColumn?: Maybe<Column>;
|
|
3580
|
-
columns?: Maybe<Array<Column
|
|
3577
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
3581
3578
|
statusCode: Scalars['Int'];
|
|
3582
3579
|
success: Scalars['Boolean'];
|
|
3583
3580
|
message: Scalars['String'];
|
|
@@ -4107,7 +4104,7 @@ export declare type DeleteColumnInput = {
|
|
|
4107
4104
|
};
|
|
4108
4105
|
export declare type DeleteColumnOutput = MutationResponse & {
|
|
4109
4106
|
__typename?: 'DeleteColumnOutput';
|
|
4110
|
-
columns?: Maybe<Array<Column
|
|
4107
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
4111
4108
|
statusCode: Scalars['Int'];
|
|
4112
4109
|
success: Scalars['Boolean'];
|
|
4113
4110
|
message: Scalars['String'];
|
|
@@ -4974,9 +4971,9 @@ export declare type DevOpsToolNavbarConnectionState = {
|
|
|
4974
4971
|
pagesTab: DevOpsToolConnectionState;
|
|
4975
4972
|
};
|
|
4976
4973
|
export declare enum DevOpsToolNavbarConnectionStateTab {
|
|
4977
|
-
CodeTab = "
|
|
4978
|
-
OncallTab = "
|
|
4979
|
-
PagesTab = "
|
|
4974
|
+
CodeTab = "CODE_TAB",
|
|
4975
|
+
OncallTab = "ONCALL_TAB",
|
|
4976
|
+
PagesTab = "PAGES_TAB"
|
|
4980
4977
|
}
|
|
4981
4978
|
export declare type DevOpsToolSupportedContainerType = {
|
|
4982
4979
|
__typename?: 'DevOpsToolSupportedContainerType';
|
|
@@ -5001,7 +4998,7 @@ export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenPayload = Payloa
|
|
|
5001
4998
|
__typename?: 'DevOpsToolUpdateNavbarConnectionStateTabSeenPayload';
|
|
5002
4999
|
success: Scalars['Boolean'];
|
|
5003
5000
|
errors?: Maybe<Array<MutationError>>;
|
|
5004
|
-
updatedNavbarConnectionState
|
|
5001
|
+
updatedNavbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
5005
5002
|
};
|
|
5006
5003
|
export declare type DevOpsTools = {
|
|
5007
5004
|
__typename?: 'DevOpsTools';
|
|
@@ -5070,6 +5067,7 @@ export declare type EcosystemMutation = {
|
|
|
5070
5067
|
__typename?: 'EcosystemMutation';
|
|
5071
5068
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
5072
5069
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
5070
|
+
updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
|
|
5073
5071
|
};
|
|
5074
5072
|
export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
5075
5073
|
input: UpdateAppHostServiceScopesInput;
|
|
@@ -5077,10 +5075,14 @@ export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
|
5077
5075
|
export declare type EcosystemMutationDeleteUserGrantArgs = {
|
|
5078
5076
|
input: DeleteUserGrantInput;
|
|
5079
5077
|
};
|
|
5078
|
+
export declare type EcosystemMutationUpdateUserInstallationRulesArgs = {
|
|
5079
|
+
input: UpdateUserInstallationRulesInput;
|
|
5080
|
+
};
|
|
5080
5081
|
export declare type EcosystemQuery = {
|
|
5081
5082
|
__typename?: 'EcosystemQuery';
|
|
5082
5083
|
userGrants?: Maybe<UserGrantConnection>;
|
|
5083
5084
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
5085
|
+
userInstallationRules?: Maybe<UserInstallationRules>;
|
|
5084
5086
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
5085
5087
|
};
|
|
5086
5088
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
@@ -5092,6 +5094,9 @@ export declare type EcosystemQueryUserGrantsArgs = {
|
|
|
5092
5094
|
export declare type EcosystemQueryCheckConsentPermissionByOAuthClientIdArgs = {
|
|
5093
5095
|
input: CheckConsentPermissionByOAuthClientIdInput;
|
|
5094
5096
|
};
|
|
5097
|
+
export declare type EcosystemQueryUserInstallationRulesArgs = {
|
|
5098
|
+
cloudId: Scalars['ID'];
|
|
5099
|
+
};
|
|
5095
5100
|
export declare type EcosystemQueryForgeMetricsArgs = {
|
|
5096
5101
|
appId: Scalars['ID'];
|
|
5097
5102
|
};
|
|
@@ -9176,6 +9181,30 @@ export declare type JiraServiceManagementActiveApproval = Node & {
|
|
|
9176
9181
|
approverPrincipals?: Maybe<JiraServiceManagementApproverPrincipalConnection>;
|
|
9177
9182
|
pendingApprovalCount?: Maybe<Scalars['Int']>;
|
|
9178
9183
|
};
|
|
9184
|
+
export declare type JiraServiceManagementActiveApprovalApproversArgs = {
|
|
9185
|
+
first?: Maybe<Scalars['Int']>;
|
|
9186
|
+
after?: Maybe<Scalars['String']>;
|
|
9187
|
+
last?: Maybe<Scalars['Int']>;
|
|
9188
|
+
before?: Maybe<Scalars['String']>;
|
|
9189
|
+
};
|
|
9190
|
+
export declare type JiraServiceManagementActiveApprovalExcludedApproversArgs = {
|
|
9191
|
+
first?: Maybe<Scalars['Int']>;
|
|
9192
|
+
after?: Maybe<Scalars['String']>;
|
|
9193
|
+
last?: Maybe<Scalars['Int']>;
|
|
9194
|
+
before?: Maybe<Scalars['String']>;
|
|
9195
|
+
};
|
|
9196
|
+
export declare type JiraServiceManagementActiveApprovalDecisionsArgs = {
|
|
9197
|
+
first?: Maybe<Scalars['Int']>;
|
|
9198
|
+
after?: Maybe<Scalars['String']>;
|
|
9199
|
+
last?: Maybe<Scalars['Int']>;
|
|
9200
|
+
before?: Maybe<Scalars['String']>;
|
|
9201
|
+
};
|
|
9202
|
+
export declare type JiraServiceManagementActiveApprovalApproverPrincipalsArgs = {
|
|
9203
|
+
first?: Maybe<Scalars['Int']>;
|
|
9204
|
+
after?: Maybe<Scalars['String']>;
|
|
9205
|
+
last?: Maybe<Scalars['Int']>;
|
|
9206
|
+
before?: Maybe<Scalars['String']>;
|
|
9207
|
+
};
|
|
9179
9208
|
export declare type JiraServiceManagementApprovalCondition = {
|
|
9180
9209
|
__typename?: 'JiraServiceManagementApprovalCondition';
|
|
9181
9210
|
type?: Maybe<Scalars['String']>;
|
|
@@ -9233,7 +9262,7 @@ export declare type JiraServiceManagementApproverEdge = {
|
|
|
9233
9262
|
node?: Maybe<JiraServiceManagementApprover>;
|
|
9234
9263
|
cursor: Scalars['String'];
|
|
9235
9264
|
};
|
|
9236
|
-
export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal |
|
|
9265
|
+
export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal | JiraServiceManagementGroupApproverPrincipal;
|
|
9237
9266
|
export declare type JiraServiceManagementApproverPrincipalConnection = {
|
|
9238
9267
|
__typename?: 'JiraServiceManagementApproverPrincipalConnection';
|
|
9239
9268
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -9293,6 +9322,12 @@ export declare type JiraServiceManagementCompletedApproval = Node & {
|
|
|
9293
9322
|
completedDate?: Maybe<Scalars['DateTime']>;
|
|
9294
9323
|
status?: Maybe<JiraServiceManagementApprovalStatus>;
|
|
9295
9324
|
};
|
|
9325
|
+
export declare type JiraServiceManagementCompletedApprovalApproversArgs = {
|
|
9326
|
+
first?: Maybe<Scalars['Int']>;
|
|
9327
|
+
after?: Maybe<Scalars['String']>;
|
|
9328
|
+
last?: Maybe<Scalars['Int']>;
|
|
9329
|
+
before?: Maybe<Scalars['String']>;
|
|
9330
|
+
};
|
|
9296
9331
|
export declare type JiraServiceManagementCompletedApprovalConnection = {
|
|
9297
9332
|
__typename?: 'JiraServiceManagementCompletedApprovalConnection';
|
|
9298
9333
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -9343,17 +9378,6 @@ export declare type JiraServiceManagementGroupApproverPrincipal = {
|
|
|
9343
9378
|
memberCount?: Maybe<Scalars['Int']>;
|
|
9344
9379
|
approvedCount?: Maybe<Scalars['Int']>;
|
|
9345
9380
|
};
|
|
9346
|
-
export declare type JiraServiceManagementGroupApproverPrincipalConnection = {
|
|
9347
|
-
__typename?: 'JiraServiceManagementGroupApproverPrincipalConnection';
|
|
9348
|
-
totalCount?: Maybe<Scalars['Int']>;
|
|
9349
|
-
pageInfo: PageInfo;
|
|
9350
|
-
edges?: Maybe<Array<Maybe<JiraServiceManagementGroupApproverPrincipalEdge>>>;
|
|
9351
|
-
};
|
|
9352
|
-
export declare type JiraServiceManagementGroupApproverPrincipalEdge = {
|
|
9353
|
-
__typename?: 'JiraServiceManagementGroupApproverPrincipalEdge';
|
|
9354
|
-
node?: Maybe<JiraServiceManagementGroupApproverPrincipal>;
|
|
9355
|
-
cursor: Scalars['String'];
|
|
9356
|
-
};
|
|
9357
9381
|
export declare type JiraServiceManagementIncident = {
|
|
9358
9382
|
__typename?: 'JiraServiceManagementIncident';
|
|
9359
9383
|
hasLinkedIncidents?: Maybe<Scalars['Boolean']>;
|
|
@@ -9613,17 +9637,6 @@ export declare type JiraServiceManagementUserApproverPrincipal = {
|
|
|
9613
9637
|
user?: Maybe<User>;
|
|
9614
9638
|
jiraRest?: Maybe<Scalars['URL']>;
|
|
9615
9639
|
};
|
|
9616
|
-
export declare type JiraServiceManagementUserApproverPrincipalConnection = {
|
|
9617
|
-
__typename?: 'JiraServiceManagementUserApproverPrincipalConnection';
|
|
9618
|
-
totalCount?: Maybe<Scalars['Int']>;
|
|
9619
|
-
pageInfo: PageInfo;
|
|
9620
|
-
edges?: Maybe<Array<Maybe<JiraServiceManagementUserApproverPrincipalEdge>>>;
|
|
9621
|
-
};
|
|
9622
|
-
export declare type JiraServiceManagementUserApproverPrincipalEdge = {
|
|
9623
|
-
__typename?: 'JiraServiceManagementUserApproverPrincipalEdge';
|
|
9624
|
-
node?: Maybe<JiraServiceManagementUserApproverPrincipal>;
|
|
9625
|
-
cursor: Scalars['String'];
|
|
9626
|
-
};
|
|
9627
9640
|
export declare type JiraServiceManagementUserResponder = {
|
|
9628
9641
|
__typename?: 'JiraServiceManagementUserResponder';
|
|
9629
9642
|
user?: Maybe<User>;
|
|
@@ -9814,6 +9827,18 @@ export declare enum JiraStatusCategoryColor {
|
|
|
9814
9827
|
WarmRed = "WARM_RED",
|
|
9815
9828
|
BlueGray = "BLUE_GRAY"
|
|
9816
9829
|
}
|
|
9830
|
+
export declare type JiraStatusCategoryField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9831
|
+
__typename?: 'JiraStatusCategoryField';
|
|
9832
|
+
id: Scalars['ID'];
|
|
9833
|
+
fieldId: Scalars['String'];
|
|
9834
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
9835
|
+
type: Scalars['String'];
|
|
9836
|
+
name: Scalars['String'];
|
|
9837
|
+
description?: Maybe<Scalars['String']>;
|
|
9838
|
+
statusCategory: JiraStatusCategory;
|
|
9839
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9840
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9841
|
+
};
|
|
9817
9842
|
export declare type JiraStatusField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9818
9843
|
__typename?: 'JiraStatusField';
|
|
9819
9844
|
id: Scalars['ID'];
|
|
@@ -12366,9 +12391,6 @@ export declare type Query = {
|
|
|
12366
12391
|
activities?: Maybe<Activities>;
|
|
12367
12392
|
activity?: Maybe<Activity>;
|
|
12368
12393
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
12369
|
-
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12370
|
-
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12371
|
-
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
12372
12394
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
12373
12395
|
shepherd?: Maybe<ShepherdQuery>;
|
|
12374
12396
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
@@ -12389,6 +12411,9 @@ export declare type Query = {
|
|
|
12389
12411
|
user?: Maybe<User>;
|
|
12390
12412
|
users?: Maybe<Array<User>>;
|
|
12391
12413
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
12414
|
+
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12415
|
+
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12416
|
+
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
12392
12417
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
12393
12418
|
devOpsServiceRelationshipsForOpsgenieTeam?: Maybe<DevOpsServiceAndOpsgenieTeamRelationshipConnection>;
|
|
12394
12419
|
devOpsServiceAndOpsgenieTeamRelationship?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
@@ -12459,24 +12484,6 @@ export declare type Query = {
|
|
|
12459
12484
|
export declare type QueryNodeArgs = {
|
|
12460
12485
|
id: Scalars['ID'];
|
|
12461
12486
|
};
|
|
12462
|
-
export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
|
|
12463
|
-
id: Scalars['ID'];
|
|
12464
|
-
cloudId: Scalars['ID'];
|
|
12465
|
-
first?: Maybe<Scalars['Int']>;
|
|
12466
|
-
after?: Maybe<Scalars['String']>;
|
|
12467
|
-
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
12468
|
-
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
12469
|
-
};
|
|
12470
|
-
export declare type QueryRepositoryRelationshipsForJiraProjectArgs = {
|
|
12471
|
-
id: Scalars['ID'];
|
|
12472
|
-
first?: Maybe<Scalars['Int']>;
|
|
12473
|
-
after?: Maybe<Scalars['String']>;
|
|
12474
|
-
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
12475
|
-
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
12476
|
-
};
|
|
12477
|
-
export declare type QueryJiraProjectAndRepositoryRelationshipArgs = {
|
|
12478
|
-
id: Scalars['ID'];
|
|
12479
|
-
};
|
|
12480
12487
|
export declare type QueryReleaseNotesArgs = {
|
|
12481
12488
|
after?: Maybe<Scalars['String']>;
|
|
12482
12489
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -12520,6 +12527,24 @@ export declare type QueryUserArgs = {
|
|
|
12520
12527
|
export declare type QueryUsersArgs = {
|
|
12521
12528
|
accountIds: Array<Scalars['ID']>;
|
|
12522
12529
|
};
|
|
12530
|
+
export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
|
|
12531
|
+
id: Scalars['ID'];
|
|
12532
|
+
cloudId: Scalars['ID'];
|
|
12533
|
+
first?: Maybe<Scalars['Int']>;
|
|
12534
|
+
after?: Maybe<Scalars['String']>;
|
|
12535
|
+
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
12536
|
+
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
12537
|
+
};
|
|
12538
|
+
export declare type QueryRepositoryRelationshipsForJiraProjectArgs = {
|
|
12539
|
+
id: Scalars['ID'];
|
|
12540
|
+
first?: Maybe<Scalars['Int']>;
|
|
12541
|
+
after?: Maybe<Scalars['String']>;
|
|
12542
|
+
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
12543
|
+
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
12544
|
+
};
|
|
12545
|
+
export declare type QueryJiraProjectAndRepositoryRelationshipArgs = {
|
|
12546
|
+
id: Scalars['ID'];
|
|
12547
|
+
};
|
|
12523
12548
|
export declare type QueryOpsgenieTeamRelationshipForDevOpsServiceArgs = {
|
|
12524
12549
|
id: Scalars['ID'];
|
|
12525
12550
|
};
|
|
@@ -12761,7 +12786,7 @@ export declare type RankColumnInput = {
|
|
|
12761
12786
|
};
|
|
12762
12787
|
export declare type RankColumnOutput = MutationResponse & {
|
|
12763
12788
|
__typename?: 'RankColumnOutput';
|
|
12764
|
-
columns?: Maybe<Array<Column
|
|
12789
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
12765
12790
|
statusCode: Scalars['Int'];
|
|
12766
12791
|
success: Scalars['Boolean'];
|
|
12767
12792
|
message: Scalars['String'];
|
|
@@ -13374,7 +13399,7 @@ export declare type SetColumnLimitInput = {
|
|
|
13374
13399
|
};
|
|
13375
13400
|
export declare type SetColumnLimitOutput = MutationResponse & {
|
|
13376
13401
|
__typename?: 'SetColumnLimitOutput';
|
|
13377
|
-
columns?: Maybe<Array<Column
|
|
13402
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
13378
13403
|
statusCode: Scalars['Int'];
|
|
13379
13404
|
success: Scalars['Boolean'];
|
|
13380
13405
|
message: Scalars['String'];
|
|
@@ -13833,6 +13858,7 @@ export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
|
13833
13858
|
transitions?: Maybe<SupportRequestTransitions>;
|
|
13834
13859
|
targetScreen: Scalars['String'];
|
|
13835
13860
|
lastComment: SupportRequestComments;
|
|
13861
|
+
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
13836
13862
|
};
|
|
13837
13863
|
export declare type SupportRequestCommentsArgs = {
|
|
13838
13864
|
offset?: Maybe<Scalars['Int']>;
|
|
@@ -14266,6 +14292,53 @@ export declare enum TownsquareGoalSortEnum {
|
|
|
14266
14292
|
WatchingAsc = "WATCHING_ASC",
|
|
14267
14293
|
WatchingDesc = "WATCHING_DESC"
|
|
14268
14294
|
}
|
|
14295
|
+
export declare type TownsquareHelpPointer = Node & {
|
|
14296
|
+
__typename?: 'TownsquareHelpPointer';
|
|
14297
|
+
cloudId?: Maybe<Scalars['String']>;
|
|
14298
|
+
creationDate?: Maybe<Scalars['DateTime']>;
|
|
14299
|
+
creatorAaid?: Maybe<Scalars['String']>;
|
|
14300
|
+
description?: Maybe<Scalars['String']>;
|
|
14301
|
+
id: Scalars['ID'];
|
|
14302
|
+
link?: Maybe<Scalars['String']>;
|
|
14303
|
+
name?: Maybe<Scalars['String']>;
|
|
14304
|
+
owner?: Maybe<TownsquareHelpPointerOwner>;
|
|
14305
|
+
tags?: Maybe<TownsquareTagConnection>;
|
|
14306
|
+
teamId?: Maybe<Scalars['String']>;
|
|
14307
|
+
type?: Maybe<TownsquareHelpPointerType>;
|
|
14308
|
+
iconData?: Maybe<Scalars['String']>;
|
|
14309
|
+
};
|
|
14310
|
+
export declare type TownsquareHelpPointerTagsArgs = {
|
|
14311
|
+
after?: Maybe<Scalars['String']>;
|
|
14312
|
+
first?: Maybe<Scalars['Int']>;
|
|
14313
|
+
};
|
|
14314
|
+
export declare type TownsquareHelpPointerConnection = {
|
|
14315
|
+
__typename?: 'TownsquareHelpPointerConnection';
|
|
14316
|
+
count: Scalars['Int'];
|
|
14317
|
+
edges?: Maybe<Array<Maybe<TownsquareHelpPointerEdge>>>;
|
|
14318
|
+
pageInfo: PageInfo;
|
|
14319
|
+
};
|
|
14320
|
+
export declare type TownsquareHelpPointerEdge = {
|
|
14321
|
+
__typename?: 'TownsquareHelpPointerEdge';
|
|
14322
|
+
cursor: Scalars['String'];
|
|
14323
|
+
node?: Maybe<TownsquareHelpPointer>;
|
|
14324
|
+
};
|
|
14325
|
+
export declare type TownsquareHelpPointerOwner = {
|
|
14326
|
+
__typename?: 'TownsquareHelpPointerOwner';
|
|
14327
|
+
displayName?: Maybe<Scalars['String']>;
|
|
14328
|
+
id?: Maybe<Scalars['String']>;
|
|
14329
|
+
largeAvatarImageUrl?: Maybe<Scalars['String']>;
|
|
14330
|
+
smallAvatarImageUrl?: Maybe<Scalars['String']>;
|
|
14331
|
+
};
|
|
14332
|
+
export declare type TownsquareHelpPointerSearchResponse = {
|
|
14333
|
+
__typename?: 'TownsquareHelpPointerSearchResponse';
|
|
14334
|
+
results?: Maybe<TownsquareHelpPointerConnection>;
|
|
14335
|
+
tags?: Maybe<Array<Maybe<TownsquareTag>>>;
|
|
14336
|
+
teams?: Maybe<Array<Maybe<TownsquareTeam>>>;
|
|
14337
|
+
};
|
|
14338
|
+
export declare enum TownsquareHelpPointerType {
|
|
14339
|
+
Action = "ACTION",
|
|
14340
|
+
Information = "INFORMATION"
|
|
14341
|
+
}
|
|
14269
14342
|
export declare type TownsquareProject = Node & {
|
|
14270
14343
|
__typename?: 'TownsquareProject';
|
|
14271
14344
|
archived: Scalars['Boolean'];
|
|
@@ -14327,6 +14400,9 @@ export declare type TownsquareQueryApi = {
|
|
|
14327
14400
|
commentsByAri?: Maybe<Array<Maybe<TownsquareComment>>>;
|
|
14328
14401
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
14329
14402
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
14403
|
+
helpPointerSearch?: Maybe<TownsquareHelpPointerSearchResponse>;
|
|
14404
|
+
helpPointersByCloudIds?: Maybe<TownsquareHelpPointerConnection>;
|
|
14405
|
+
helpPointersByTeam?: Maybe<TownsquareHelpPointerConnection>;
|
|
14330
14406
|
};
|
|
14331
14407
|
export declare type TownsquareQueryApiProjectsByAriArgs = {
|
|
14332
14408
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -14352,6 +14428,45 @@ export declare type TownsquareQueryApiGoalSearchArgs = {
|
|
|
14352
14428
|
q?: Maybe<Scalars['String']>;
|
|
14353
14429
|
sort?: Maybe<Array<Maybe<TownsquareGoalSortEnum>>>;
|
|
14354
14430
|
};
|
|
14431
|
+
export declare type TownsquareQueryApiHelpPointerSearchArgs = {
|
|
14432
|
+
after?: Maybe<Scalars['String']>;
|
|
14433
|
+
cloudIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
14434
|
+
first?: Maybe<Scalars['Int']>;
|
|
14435
|
+
q?: Maybe<Scalars['String']>;
|
|
14436
|
+
};
|
|
14437
|
+
export declare type TownsquareQueryApiHelpPointersByCloudIdsArgs = {
|
|
14438
|
+
after?: Maybe<Scalars['String']>;
|
|
14439
|
+
cloudIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
14440
|
+
first?: Maybe<Scalars['Int']>;
|
|
14441
|
+
};
|
|
14442
|
+
export declare type TownsquareQueryApiHelpPointersByTeamArgs = {
|
|
14443
|
+
after?: Maybe<Scalars['String']>;
|
|
14444
|
+
first?: Maybe<Scalars['Int']>;
|
|
14445
|
+
teamUuid: Scalars['String'];
|
|
14446
|
+
};
|
|
14447
|
+
export declare type TownsquareTag = Node & {
|
|
14448
|
+
__typename?: 'TownsquareTag';
|
|
14449
|
+
description?: Maybe<Scalars['String']>;
|
|
14450
|
+
id: Scalars['ID'];
|
|
14451
|
+
name?: Maybe<Scalars['String']>;
|
|
14452
|
+
};
|
|
14453
|
+
export declare type TownsquareTagConnection = {
|
|
14454
|
+
__typename?: 'TownsquareTagConnection';
|
|
14455
|
+
count: Scalars['Int'];
|
|
14456
|
+
edges?: Maybe<Array<Maybe<TownsquareTagEdge>>>;
|
|
14457
|
+
pageInfo: PageInfo;
|
|
14458
|
+
};
|
|
14459
|
+
export declare type TownsquareTagEdge = {
|
|
14460
|
+
__typename?: 'TownsquareTagEdge';
|
|
14461
|
+
cursor: Scalars['String'];
|
|
14462
|
+
node?: Maybe<TownsquareTag>;
|
|
14463
|
+
};
|
|
14464
|
+
export declare type TownsquareTeam = Node & {
|
|
14465
|
+
__typename?: 'TownsquareTeam';
|
|
14466
|
+
avatarUrl?: Maybe<Scalars['String']>;
|
|
14467
|
+
id: Scalars['ID'];
|
|
14468
|
+
name?: Maybe<Scalars['String']>;
|
|
14469
|
+
};
|
|
14355
14470
|
export declare type TransitionFilter = {
|
|
14356
14471
|
from: Scalars['String'];
|
|
14357
14472
|
to: Scalars['String'];
|
|
@@ -14834,6 +14949,10 @@ export declare type UpdatePolarisViewTimestampPayload = Payload & {
|
|
|
14834
14949
|
success: Scalars['Boolean'];
|
|
14835
14950
|
errors?: Maybe<Array<MutationError>>;
|
|
14836
14951
|
};
|
|
14952
|
+
export declare type UpdateUserInstallationRulesInput = {
|
|
14953
|
+
cloudId: Scalars['ID'];
|
|
14954
|
+
rule: UserInstallationRuleValue;
|
|
14955
|
+
};
|
|
14837
14956
|
export declare type User = {
|
|
14838
14957
|
accountId: Scalars['ID'];
|
|
14839
14958
|
canonicalAccountId: Scalars['ID'];
|
|
@@ -14901,6 +15020,20 @@ export declare type UserGrantPageInfo = {
|
|
|
14901
15020
|
startCursor?: Maybe<Scalars['String']>;
|
|
14902
15021
|
endCursor?: Maybe<Scalars['String']>;
|
|
14903
15022
|
};
|
|
15023
|
+
export declare enum UserInstallationRuleValue {
|
|
15024
|
+
Allow = "allow",
|
|
15025
|
+
Deny = "deny"
|
|
15026
|
+
}
|
|
15027
|
+
export declare type UserInstallationRules = {
|
|
15028
|
+
__typename?: 'UserInstallationRules';
|
|
15029
|
+
rule: UserInstallationRuleValue;
|
|
15030
|
+
};
|
|
15031
|
+
export declare type UserInstallationRulesPayload = Payload & {
|
|
15032
|
+
__typename?: 'UserInstallationRulesPayload';
|
|
15033
|
+
rule?: Maybe<UserInstallationRuleValue>;
|
|
15034
|
+
success: Scalars['Boolean'];
|
|
15035
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15036
|
+
};
|
|
14904
15037
|
export declare type WatchMarketplaceAppPayload = Payload & {
|
|
14905
15038
|
__typename?: 'WatchMarketplaceAppPayload';
|
|
14906
15039
|
success: Scalars['Boolean'];
|