@forge/cli-shared 2.2.1-next.6 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +40 -0
- package/out/graphql/graphql-types.d.ts +148 -85
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +50 -15
- package/out/shared/index.d.ts +1 -1
- package/out/shared/index.d.ts.map +1 -1
- package/out/ui/text.d.ts +4 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +7 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [debe251]
|
|
8
|
+
- Updated dependencies [037c31a5]
|
|
9
|
+
- Updated dependencies [f6901fd]
|
|
10
|
+
- Updated dependencies [813f8f3]
|
|
11
|
+
- Updated dependencies [8ee1c58]
|
|
12
|
+
- Updated dependencies [67d2e17]
|
|
13
|
+
- Updated dependencies [14102be]
|
|
14
|
+
- Updated dependencies [7b2d17a]
|
|
15
|
+
- Updated dependencies [8aaa65c]
|
|
16
|
+
- Updated dependencies [d3ccc04]
|
|
17
|
+
- Updated dependencies [5152239]
|
|
18
|
+
- @forge/manifest@3.1.0
|
|
19
|
+
- @forge/util@1.1.0
|
|
20
|
+
|
|
21
|
+
## 2.2.1-next.9
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies [8aaa65c]
|
|
26
|
+
- @forge/manifest@3.1.0-next.9
|
|
27
|
+
|
|
28
|
+
## 2.2.1-next.8
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- Updated dependencies [67d2e17c]
|
|
33
|
+
- @forge/manifest@3.1.0-next.8
|
|
34
|
+
|
|
35
|
+
## 2.2.1-next.7
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- Updated dependencies [037c31a]
|
|
40
|
+
- @forge/manifest@3.1.0-next.7
|
|
41
|
+
- @forge/util@1.1.0-next.0
|
|
42
|
+
|
|
3
43
|
## 2.2.1-next.6
|
|
4
44
|
|
|
5
45
|
### Patch Changes
|
|
@@ -4,6 +4,12 @@ export declare type Exact<T extends {
|
|
|
4
4
|
}> = {
|
|
5
5
|
[K in keyof T]: T[K];
|
|
6
6
|
};
|
|
7
|
+
export declare type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
8
|
+
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
9
|
+
};
|
|
10
|
+
export declare type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
11
|
+
[SubKey in K]: Maybe<T[SubKey]>;
|
|
12
|
+
};
|
|
7
13
|
export declare type Scalars = {
|
|
8
14
|
ID: string;
|
|
9
15
|
String: string;
|
|
@@ -237,7 +243,9 @@ export declare type ActivityObject = {
|
|
|
237
243
|
product?: Maybe<Scalars['String']>;
|
|
238
244
|
subProduct?: Maybe<Scalars['String']>;
|
|
239
245
|
contributors?: Maybe<Array<ActivitiesContributor>>;
|
|
246
|
+
data?: Maybe<ActivityObjectData>;
|
|
240
247
|
};
|
|
248
|
+
export declare type ActivityObjectData = TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
241
249
|
export declare enum ActivityObjectType {
|
|
242
250
|
Site = "SITE",
|
|
243
251
|
Project = "PROJECT",
|
|
@@ -294,6 +302,7 @@ export declare enum ApiContext {
|
|
|
294
302
|
}
|
|
295
303
|
export declare enum ApiGroup {
|
|
296
304
|
Compass = "COMPASS",
|
|
305
|
+
Confluence = "CONFLUENCE",
|
|
297
306
|
Jira = "JIRA",
|
|
298
307
|
Forge = "FORGE",
|
|
299
308
|
Polaris = "POLARIS",
|
|
@@ -1612,7 +1621,7 @@ export declare type CompassCatalogMutationApiCreateDeploymentEventArgs = {
|
|
|
1612
1621
|
input: CreateDeploymentEventInput;
|
|
1613
1622
|
};
|
|
1614
1623
|
export declare type CompassCatalogMutationApiCreateCompassEventArgs = {
|
|
1615
|
-
input:
|
|
1624
|
+
input: CompassCreateEventInput;
|
|
1616
1625
|
};
|
|
1617
1626
|
export declare type CompassCatalogMutationApiAttachEventSourceArgs = {
|
|
1618
1627
|
input: AttachEventSourceInput;
|
|
@@ -1668,7 +1677,6 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1668
1677
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
1669
1678
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1670
1679
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1671
|
-
builtinMetricDefinitions: Array<CompassMetricDefinition>;
|
|
1672
1680
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
1673
1681
|
};
|
|
1674
1682
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
@@ -1793,7 +1801,6 @@ export declare enum CompassComponentType {
|
|
|
1793
1801
|
Other = "OTHER"
|
|
1794
1802
|
}
|
|
1795
1803
|
export declare type CompassCreateAlertEventInput = {
|
|
1796
|
-
cloudId: Scalars['ID'];
|
|
1797
1804
|
eventType: CompassEventType;
|
|
1798
1805
|
displayName: Scalars['String'];
|
|
1799
1806
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -1816,7 +1823,6 @@ export declare type CompassCreateAnnouncementPayload = Payload & {
|
|
|
1816
1823
|
errors?: Maybe<Array<MutationError>>;
|
|
1817
1824
|
};
|
|
1818
1825
|
export declare type CompassCreateCustomEventInput = {
|
|
1819
|
-
cloudId: Scalars['ID'];
|
|
1820
1826
|
eventType: CompassEventType;
|
|
1821
1827
|
displayName: Scalars['String'];
|
|
1822
1828
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -1824,11 +1830,10 @@ export declare type CompassCreateCustomEventInput = {
|
|
|
1824
1830
|
updateSequenceNumber: Scalars['Long'];
|
|
1825
1831
|
description?: Maybe<Scalars['String']>;
|
|
1826
1832
|
url?: Maybe<Scalars['URL']>;
|
|
1827
|
-
icon
|
|
1833
|
+
icon: CompassCustomEventIcon;
|
|
1828
1834
|
externalEventSourceId: Scalars['ID'];
|
|
1829
1835
|
};
|
|
1830
1836
|
export declare type CompassCreateDeploymentEventInput = {
|
|
1831
|
-
cloudId: Scalars['ID'];
|
|
1832
1837
|
deploymentSequenceNumber: Scalars['Long'];
|
|
1833
1838
|
updateSequenceNumber: Scalars['Long'];
|
|
1834
1839
|
displayName: Scalars['String'];
|
|
@@ -1840,13 +1845,16 @@ export declare type CompassCreateDeploymentEventInput = {
|
|
|
1840
1845
|
environment: CompassDeploymentEventEnvironmentInput;
|
|
1841
1846
|
externalEventSourceId: Scalars['ID'];
|
|
1842
1847
|
};
|
|
1848
|
+
export declare type CompassCreateEventInput = {
|
|
1849
|
+
cloudId: Scalars['ID'];
|
|
1850
|
+
event: CompassEventInput;
|
|
1851
|
+
};
|
|
1843
1852
|
export declare type CompassCreateEventsPayload = Payload & {
|
|
1844
1853
|
__typename?: 'CompassCreateEventsPayload';
|
|
1845
1854
|
success: Scalars['Boolean'];
|
|
1846
1855
|
errors?: Maybe<Array<MutationError>>;
|
|
1847
1856
|
};
|
|
1848
1857
|
export declare type CompassCreateFlagEventInput = {
|
|
1849
|
-
cloudId: Scalars['ID'];
|
|
1850
1858
|
eventType: CompassEventType;
|
|
1851
1859
|
displayName: Scalars['String'];
|
|
1852
1860
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -1858,7 +1866,6 @@ export declare type CompassCreateFlagEventInput = {
|
|
|
1858
1866
|
externalEventSourceId: Scalars['ID'];
|
|
1859
1867
|
};
|
|
1860
1868
|
export declare type CompassCreateIncidentEventInput = {
|
|
1861
|
-
cloudId: Scalars['ID'];
|
|
1862
1869
|
eventType: CompassEventType;
|
|
1863
1870
|
displayName: Scalars['String'];
|
|
1864
1871
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -1866,19 +1873,18 @@ export declare type CompassCreateIncidentEventInput = {
|
|
|
1866
1873
|
updateSequenceNumber: Scalars['Long'];
|
|
1867
1874
|
description?: Maybe<Scalars['String']>;
|
|
1868
1875
|
url?: Maybe<Scalars['URL']>;
|
|
1869
|
-
state
|
|
1876
|
+
state: CompassIncidentEventState;
|
|
1870
1877
|
externalEventSourceId: Scalars['ID'];
|
|
1871
1878
|
};
|
|
1872
1879
|
export declare type CompassCreateLifecycleEventInput = {
|
|
1873
|
-
cloudId: Scalars['ID'];
|
|
1874
1880
|
eventType: CompassEventType;
|
|
1875
1881
|
displayName: Scalars['String'];
|
|
1876
1882
|
lastUpdated: Scalars['DateTime'];
|
|
1877
|
-
|
|
1883
|
+
lifecycleId: Scalars['ID'];
|
|
1878
1884
|
updateSequenceNumber: Scalars['Long'];
|
|
1879
1885
|
description?: Maybe<Scalars['String']>;
|
|
1880
1886
|
url?: Maybe<Scalars['URL']>;
|
|
1881
|
-
stage
|
|
1887
|
+
stage: CompassLifecycleEventStage;
|
|
1882
1888
|
externalEventSourceId: Scalars['ID'];
|
|
1883
1889
|
};
|
|
1884
1890
|
export declare type CompassCreateMetricDefinitionInput = {
|
|
@@ -3573,7 +3579,7 @@ export declare type CreateColumnInput = {
|
|
|
3573
3579
|
export declare type CreateColumnOutput = MutationResponse & {
|
|
3574
3580
|
__typename?: 'CreateColumnOutput';
|
|
3575
3581
|
newColumn?: Maybe<Column>;
|
|
3576
|
-
columns?: Maybe<Array<Column
|
|
3582
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
3577
3583
|
statusCode: Scalars['Int'];
|
|
3578
3584
|
success: Scalars['Boolean'];
|
|
3579
3585
|
message: Scalars['String'];
|
|
@@ -4103,7 +4109,7 @@ export declare type DeleteColumnInput = {
|
|
|
4103
4109
|
};
|
|
4104
4110
|
export declare type DeleteColumnOutput = MutationResponse & {
|
|
4105
4111
|
__typename?: 'DeleteColumnOutput';
|
|
4106
|
-
columns?: Maybe<Array<Column
|
|
4112
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
4107
4113
|
statusCode: Scalars['Int'];
|
|
4108
4114
|
success: Scalars['Boolean'];
|
|
4109
4115
|
message: Scalars['String'];
|
|
@@ -4970,9 +4976,9 @@ export declare type DevOpsToolNavbarConnectionState = {
|
|
|
4970
4976
|
pagesTab: DevOpsToolConnectionState;
|
|
4971
4977
|
};
|
|
4972
4978
|
export declare enum DevOpsToolNavbarConnectionStateTab {
|
|
4973
|
-
CodeTab = "
|
|
4974
|
-
OncallTab = "
|
|
4975
|
-
PagesTab = "
|
|
4979
|
+
CodeTab = "CODE_TAB",
|
|
4980
|
+
OncallTab = "ONCALL_TAB",
|
|
4981
|
+
PagesTab = "PAGES_TAB"
|
|
4976
4982
|
}
|
|
4977
4983
|
export declare type DevOpsToolSupportedContainerType = {
|
|
4978
4984
|
__typename?: 'DevOpsToolSupportedContainerType';
|
|
@@ -4997,7 +5003,7 @@ export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenPayload = Payloa
|
|
|
4997
5003
|
__typename?: 'DevOpsToolUpdateNavbarConnectionStateTabSeenPayload';
|
|
4998
5004
|
success: Scalars['Boolean'];
|
|
4999
5005
|
errors?: Maybe<Array<MutationError>>;
|
|
5000
|
-
updatedNavbarConnectionState
|
|
5006
|
+
updatedNavbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
5001
5007
|
};
|
|
5002
5008
|
export declare type DevOpsTools = {
|
|
5003
5009
|
__typename?: 'DevOpsTools';
|
|
@@ -5421,11 +5427,8 @@ export declare type InvokeAuxEffectsInput = {
|
|
|
5421
5427
|
entryPoint?: Maybe<Scalars['String']>;
|
|
5422
5428
|
payload: AuxEffectsInvocationPayload;
|
|
5423
5429
|
};
|
|
5424
|
-
export declare type InvokeAuxEffectsResponse =
|
|
5430
|
+
export declare type InvokeAuxEffectsResponse = Payload & {
|
|
5425
5431
|
__typename?: 'InvokeAuxEffectsResponse';
|
|
5426
|
-
statusCode: Scalars['Int'];
|
|
5427
|
-
message: Scalars['String'];
|
|
5428
|
-
errorDetails?: Maybe<ErrorDetails>;
|
|
5429
5432
|
success: Scalars['Boolean'];
|
|
5430
5433
|
errors?: Maybe<Array<MutationError>>;
|
|
5431
5434
|
result?: Maybe<AuxEffectsResult>;
|
|
@@ -5448,11 +5451,8 @@ export declare type InvokeExtensionPayloadErrorExtensionFields = {
|
|
|
5448
5451
|
__typename?: 'InvokeExtensionPayloadErrorExtensionFields';
|
|
5449
5452
|
authInfoUrl?: Maybe<Scalars['String']>;
|
|
5450
5453
|
};
|
|
5451
|
-
export declare type InvokeExtensionResponse =
|
|
5454
|
+
export declare type InvokeExtensionResponse = Payload & {
|
|
5452
5455
|
__typename?: 'InvokeExtensionResponse';
|
|
5453
|
-
statusCode: Scalars['Int'];
|
|
5454
|
-
message: Scalars['String'];
|
|
5455
|
-
errorDetails?: Maybe<ErrorDetails>;
|
|
5456
5456
|
success: Scalars['Boolean'];
|
|
5457
5457
|
errors?: Maybe<Array<MutationError>>;
|
|
5458
5458
|
response?: Maybe<InvocationResponsePayload>;
|
|
@@ -9089,8 +9089,8 @@ export declare enum JiraReviewState {
|
|
|
9089
9089
|
}
|
|
9090
9090
|
export declare type JiraRichText = {
|
|
9091
9091
|
__typename?: 'JiraRichText';
|
|
9092
|
-
plainText?: Maybe<Scalars['String']>;
|
|
9093
9092
|
adfValue?: Maybe<JiraAdf>;
|
|
9093
|
+
plainText?: Maybe<Scalars['String']>;
|
|
9094
9094
|
wikiValue?: Maybe<Scalars['String']>;
|
|
9095
9095
|
};
|
|
9096
9096
|
export declare type JiraRichTextField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
@@ -9178,6 +9178,30 @@ export declare type JiraServiceManagementActiveApproval = Node & {
|
|
|
9178
9178
|
approverPrincipals?: Maybe<JiraServiceManagementApproverPrincipalConnection>;
|
|
9179
9179
|
pendingApprovalCount?: Maybe<Scalars['Int']>;
|
|
9180
9180
|
};
|
|
9181
|
+
export declare type JiraServiceManagementActiveApprovalApproversArgs = {
|
|
9182
|
+
first?: Maybe<Scalars['Int']>;
|
|
9183
|
+
after?: Maybe<Scalars['String']>;
|
|
9184
|
+
last?: Maybe<Scalars['Int']>;
|
|
9185
|
+
before?: Maybe<Scalars['String']>;
|
|
9186
|
+
};
|
|
9187
|
+
export declare type JiraServiceManagementActiveApprovalExcludedApproversArgs = {
|
|
9188
|
+
first?: Maybe<Scalars['Int']>;
|
|
9189
|
+
after?: Maybe<Scalars['String']>;
|
|
9190
|
+
last?: Maybe<Scalars['Int']>;
|
|
9191
|
+
before?: Maybe<Scalars['String']>;
|
|
9192
|
+
};
|
|
9193
|
+
export declare type JiraServiceManagementActiveApprovalDecisionsArgs = {
|
|
9194
|
+
first?: Maybe<Scalars['Int']>;
|
|
9195
|
+
after?: Maybe<Scalars['String']>;
|
|
9196
|
+
last?: Maybe<Scalars['Int']>;
|
|
9197
|
+
before?: Maybe<Scalars['String']>;
|
|
9198
|
+
};
|
|
9199
|
+
export declare type JiraServiceManagementActiveApprovalApproverPrincipalsArgs = {
|
|
9200
|
+
first?: Maybe<Scalars['Int']>;
|
|
9201
|
+
after?: Maybe<Scalars['String']>;
|
|
9202
|
+
last?: Maybe<Scalars['Int']>;
|
|
9203
|
+
before?: Maybe<Scalars['String']>;
|
|
9204
|
+
};
|
|
9181
9205
|
export declare type JiraServiceManagementApprovalCondition = {
|
|
9182
9206
|
__typename?: 'JiraServiceManagementApprovalCondition';
|
|
9183
9207
|
type?: Maybe<Scalars['String']>;
|
|
@@ -9235,7 +9259,7 @@ export declare type JiraServiceManagementApproverEdge = {
|
|
|
9235
9259
|
node?: Maybe<JiraServiceManagementApprover>;
|
|
9236
9260
|
cursor: Scalars['String'];
|
|
9237
9261
|
};
|
|
9238
|
-
export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal |
|
|
9262
|
+
export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal | JiraServiceManagementGroupApproverPrincipal;
|
|
9239
9263
|
export declare type JiraServiceManagementApproverPrincipalConnection = {
|
|
9240
9264
|
__typename?: 'JiraServiceManagementApproverPrincipalConnection';
|
|
9241
9265
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -9295,6 +9319,12 @@ export declare type JiraServiceManagementCompletedApproval = Node & {
|
|
|
9295
9319
|
completedDate?: Maybe<Scalars['DateTime']>;
|
|
9296
9320
|
status?: Maybe<JiraServiceManagementApprovalStatus>;
|
|
9297
9321
|
};
|
|
9322
|
+
export declare type JiraServiceManagementCompletedApprovalApproversArgs = {
|
|
9323
|
+
first?: Maybe<Scalars['Int']>;
|
|
9324
|
+
after?: Maybe<Scalars['String']>;
|
|
9325
|
+
last?: Maybe<Scalars['Int']>;
|
|
9326
|
+
before?: Maybe<Scalars['String']>;
|
|
9327
|
+
};
|
|
9298
9328
|
export declare type JiraServiceManagementCompletedApprovalConnection = {
|
|
9299
9329
|
__typename?: 'JiraServiceManagementCompletedApprovalConnection';
|
|
9300
9330
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -9345,17 +9375,6 @@ export declare type JiraServiceManagementGroupApproverPrincipal = {
|
|
|
9345
9375
|
memberCount?: Maybe<Scalars['Int']>;
|
|
9346
9376
|
approvedCount?: Maybe<Scalars['Int']>;
|
|
9347
9377
|
};
|
|
9348
|
-
export declare type JiraServiceManagementGroupApproverPrincipalConnection = {
|
|
9349
|
-
__typename?: 'JiraServiceManagementGroupApproverPrincipalConnection';
|
|
9350
|
-
totalCount?: Maybe<Scalars['Int']>;
|
|
9351
|
-
pageInfo: PageInfo;
|
|
9352
|
-
edges?: Maybe<Array<Maybe<JiraServiceManagementGroupApproverPrincipalEdge>>>;
|
|
9353
|
-
};
|
|
9354
|
-
export declare type JiraServiceManagementGroupApproverPrincipalEdge = {
|
|
9355
|
-
__typename?: 'JiraServiceManagementGroupApproverPrincipalEdge';
|
|
9356
|
-
node?: Maybe<JiraServiceManagementGroupApproverPrincipal>;
|
|
9357
|
-
cursor: Scalars['String'];
|
|
9358
|
-
};
|
|
9359
9378
|
export declare type JiraServiceManagementIncident = {
|
|
9360
9379
|
__typename?: 'JiraServiceManagementIncident';
|
|
9361
9380
|
hasLinkedIncidents?: Maybe<Scalars['Boolean']>;
|
|
@@ -9615,17 +9634,6 @@ export declare type JiraServiceManagementUserApproverPrincipal = {
|
|
|
9615
9634
|
user?: Maybe<User>;
|
|
9616
9635
|
jiraRest?: Maybe<Scalars['URL']>;
|
|
9617
9636
|
};
|
|
9618
|
-
export declare type JiraServiceManagementUserApproverPrincipalConnection = {
|
|
9619
|
-
__typename?: 'JiraServiceManagementUserApproverPrincipalConnection';
|
|
9620
|
-
totalCount?: Maybe<Scalars['Int']>;
|
|
9621
|
-
pageInfo: PageInfo;
|
|
9622
|
-
edges?: Maybe<Array<Maybe<JiraServiceManagementUserApproverPrincipalEdge>>>;
|
|
9623
|
-
};
|
|
9624
|
-
export declare type JiraServiceManagementUserApproverPrincipalEdge = {
|
|
9625
|
-
__typename?: 'JiraServiceManagementUserApproverPrincipalEdge';
|
|
9626
|
-
node?: Maybe<JiraServiceManagementUserApproverPrincipal>;
|
|
9627
|
-
cursor: Scalars['String'];
|
|
9628
|
-
};
|
|
9629
9637
|
export declare type JiraServiceManagementUserResponder = {
|
|
9630
9638
|
__typename?: 'JiraServiceManagementUserResponder';
|
|
9631
9639
|
user?: Maybe<User>;
|
|
@@ -9886,6 +9894,26 @@ export declare type JiraTeamFieldTeamsArgs = {
|
|
|
9886
9894
|
last?: Maybe<Scalars['Int']>;
|
|
9887
9895
|
before?: Maybe<Scalars['String']>;
|
|
9888
9896
|
};
|
|
9897
|
+
export declare type JiraTeamView = {
|
|
9898
|
+
__typename?: 'JiraTeamView';
|
|
9899
|
+
jiraSuppliedId?: Maybe<Scalars['String']>;
|
|
9900
|
+
jiraSuppliedName?: Maybe<Scalars['String']>;
|
|
9901
|
+
jiraSuppliedAvatar?: Maybe<JiraAvatar>;
|
|
9902
|
+
fullTeam?: Maybe<Team>;
|
|
9903
|
+
};
|
|
9904
|
+
export declare type JiraTeamViewField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9905
|
+
__typename?: 'JiraTeamViewField';
|
|
9906
|
+
id: Scalars['ID'];
|
|
9907
|
+
fieldId: Scalars['String'];
|
|
9908
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
9909
|
+
type: Scalars['String'];
|
|
9910
|
+
name: Scalars['String'];
|
|
9911
|
+
description?: Maybe<Scalars['String']>;
|
|
9912
|
+
selectedTeam?: Maybe<JiraTeamView>;
|
|
9913
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
9914
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9915
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9916
|
+
};
|
|
9889
9917
|
export declare enum JiraTimeFormat {
|
|
9890
9918
|
Pretty = "PRETTY",
|
|
9891
9919
|
Days = "DAYS",
|
|
@@ -12348,9 +12376,6 @@ export declare type Query = {
|
|
|
12348
12376
|
activities?: Maybe<Activities>;
|
|
12349
12377
|
activity?: Maybe<Activity>;
|
|
12350
12378
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
12351
|
-
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12352
|
-
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12353
|
-
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
12354
12379
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
12355
12380
|
shepherd?: Maybe<ShepherdQuery>;
|
|
12356
12381
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
@@ -12371,6 +12396,9 @@ export declare type Query = {
|
|
|
12371
12396
|
user?: Maybe<User>;
|
|
12372
12397
|
users?: Maybe<Array<User>>;
|
|
12373
12398
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
12399
|
+
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12400
|
+
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12401
|
+
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
12374
12402
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
12375
12403
|
devOpsServiceRelationshipsForOpsgenieTeam?: Maybe<DevOpsServiceAndOpsgenieTeamRelationshipConnection>;
|
|
12376
12404
|
devOpsServiceAndOpsgenieTeamRelationship?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
@@ -12441,24 +12469,6 @@ export declare type Query = {
|
|
|
12441
12469
|
export declare type QueryNodeArgs = {
|
|
12442
12470
|
id: Scalars['ID'];
|
|
12443
12471
|
};
|
|
12444
|
-
export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
|
|
12445
|
-
id: Scalars['ID'];
|
|
12446
|
-
cloudId: Scalars['ID'];
|
|
12447
|
-
first?: Maybe<Scalars['Int']>;
|
|
12448
|
-
after?: Maybe<Scalars['String']>;
|
|
12449
|
-
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
12450
|
-
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
12451
|
-
};
|
|
12452
|
-
export declare type QueryRepositoryRelationshipsForJiraProjectArgs = {
|
|
12453
|
-
id: Scalars['ID'];
|
|
12454
|
-
first?: Maybe<Scalars['Int']>;
|
|
12455
|
-
after?: Maybe<Scalars['String']>;
|
|
12456
|
-
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
12457
|
-
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
12458
|
-
};
|
|
12459
|
-
export declare type QueryJiraProjectAndRepositoryRelationshipArgs = {
|
|
12460
|
-
id: Scalars['ID'];
|
|
12461
|
-
};
|
|
12462
12472
|
export declare type QueryReleaseNotesArgs = {
|
|
12463
12473
|
after?: Maybe<Scalars['String']>;
|
|
12464
12474
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -12502,6 +12512,24 @@ export declare type QueryUserArgs = {
|
|
|
12502
12512
|
export declare type QueryUsersArgs = {
|
|
12503
12513
|
accountIds: Array<Scalars['ID']>;
|
|
12504
12514
|
};
|
|
12515
|
+
export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
|
|
12516
|
+
id: Scalars['ID'];
|
|
12517
|
+
cloudId: Scalars['ID'];
|
|
12518
|
+
first?: Maybe<Scalars['Int']>;
|
|
12519
|
+
after?: Maybe<Scalars['String']>;
|
|
12520
|
+
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
12521
|
+
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
12522
|
+
};
|
|
12523
|
+
export declare type QueryRepositoryRelationshipsForJiraProjectArgs = {
|
|
12524
|
+
id: Scalars['ID'];
|
|
12525
|
+
first?: Maybe<Scalars['Int']>;
|
|
12526
|
+
after?: Maybe<Scalars['String']>;
|
|
12527
|
+
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
12528
|
+
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
12529
|
+
};
|
|
12530
|
+
export declare type QueryJiraProjectAndRepositoryRelationshipArgs = {
|
|
12531
|
+
id: Scalars['ID'];
|
|
12532
|
+
};
|
|
12505
12533
|
export declare type QueryOpsgenieTeamRelationshipForDevOpsServiceArgs = {
|
|
12506
12534
|
id: Scalars['ID'];
|
|
12507
12535
|
};
|
|
@@ -12743,7 +12771,7 @@ export declare type RankColumnInput = {
|
|
|
12743
12771
|
};
|
|
12744
12772
|
export declare type RankColumnOutput = MutationResponse & {
|
|
12745
12773
|
__typename?: 'RankColumnOutput';
|
|
12746
|
-
columns?: Maybe<Array<Column
|
|
12774
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
12747
12775
|
statusCode: Scalars['Int'];
|
|
12748
12776
|
success: Scalars['Boolean'];
|
|
12749
12777
|
message: Scalars['String'];
|
|
@@ -13157,20 +13185,54 @@ export declare enum Scope {
|
|
|
13157
13185
|
ReadCompassMetric = "READ_COMPASS_METRIC",
|
|
13158
13186
|
WriteCompassMetric = "WRITE_COMPASS_METRIC",
|
|
13159
13187
|
ConfluenceAtlassianExternal = "CONFLUENCE_ATLASSIAN_EXTERNAL",
|
|
13160
|
-
|
|
13161
|
-
|
|
13162
|
-
|
|
13163
|
-
|
|
13188
|
+
ReadConfluenceContentAnalytics = "READ_CONFLUENCE_CONTENT_ANALYTICS",
|
|
13189
|
+
ReadConfluenceAuditLog = "READ_CONFLUENCE_AUDIT_LOG",
|
|
13190
|
+
WriteConfluenceAuditLog = "WRITE_CONFLUENCE_AUDIT_LOG",
|
|
13191
|
+
ReadConfluenceConfiguration = "READ_CONFLUENCE_CONFIGURATION",
|
|
13192
|
+
WriteConfluenceConfiguration = "WRITE_CONFLUENCE_CONFIGURATION",
|
|
13193
|
+
ReadConfluencePage = "READ_CONFLUENCE_PAGE",
|
|
13194
|
+
WriteConfluencePage = "WRITE_CONFLUENCE_PAGE",
|
|
13195
|
+
DeleteConfluencePage = "DELETE_CONFLUENCE_PAGE",
|
|
13196
|
+
ReadConfluenceBlogpost = "READ_CONFLUENCE_BLOGPOST",
|
|
13197
|
+
WriteConfluenceBlogpost = "WRITE_CONFLUENCE_BLOGPOST",
|
|
13198
|
+
DeleteConfluenceBlogpost = "DELETE_CONFLUENCE_BLOGPOST",
|
|
13199
|
+
ReadConfluenceCustomContent = "READ_CONFLUENCE_CUSTOM_CONTENT",
|
|
13200
|
+
WriteConfluenceCustomContent = "WRITE_CONFLUENCE_CUSTOM_CONTENT",
|
|
13201
|
+
DeleteConfluenceCustomContent = "DELETE_CONFLUENCE_CUSTOM_CONTENT",
|
|
13202
|
+
ReadConfluenceAttachment = "READ_CONFLUENCE_ATTACHMENT",
|
|
13203
|
+
WriteConfluenceAttachment = "WRITE_CONFLUENCE_ATTACHMENT",
|
|
13204
|
+
DeleteConfluenceAttachment = "DELETE_CONFLUENCE_ATTACHMENT",
|
|
13205
|
+
ReadConfluenceComment = "READ_CONFLUENCE_COMMENT",
|
|
13206
|
+
WriteConfluenceComment = "WRITE_CONFLUENCE_COMMENT",
|
|
13207
|
+
DeleteConfluenceComment = "DELETE_CONFLUENCE_COMMENT",
|
|
13208
|
+
ReadConfluenceTemplate = "READ_CONFLUENCE_TEMPLATE",
|
|
13209
|
+
WriteConfluenceTemplate = "WRITE_CONFLUENCE_TEMPLATE",
|
|
13210
|
+
ReadConfluenceLabel = "READ_CONFLUENCE_LABEL",
|
|
13211
|
+
WriteConfluenceLabel = "WRITE_CONFLUENCE_LABEL",
|
|
13212
|
+
ReadConfluenceContentPermission = "READ_CONFLUENCE_CONTENT_PERMISSION",
|
|
13213
|
+
ReadConfluenceContentProperty = "READ_CONFLUENCE_CONTENT_PROPERTY",
|
|
13214
|
+
WriteConfluenceContentProperty = "WRITE_CONFLUENCE_CONTENT_PROPERTY",
|
|
13215
|
+
ReadConfluenceContentRestriction = "READ_CONFLUENCE_CONTENT_RESTRICTION",
|
|
13216
|
+
WriteConfluenceContentRestriction = "WRITE_CONFLUENCE_CONTENT_RESTRICTION",
|
|
13217
|
+
ReadConfluenceContentMetadata = "READ_CONFLUENCE_CONTENT_METADATA",
|
|
13218
|
+
ReadConfluenceWatcher = "READ_CONFLUENCE_WATCHER",
|
|
13219
|
+
WriteConfluenceWatcher = "WRITE_CONFLUENCE_WATCHER",
|
|
13220
|
+
ReadConfluenceGroup = "READ_CONFLUENCE_GROUP",
|
|
13221
|
+
WriteConfluenceGroup = "WRITE_CONFLUENCE_GROUP",
|
|
13222
|
+
ReadConfluenceInlineTask = "READ_CONFLUENCE_INLINE_TASK",
|
|
13223
|
+
WriteConfluenceInlineTask = "WRITE_CONFLUENCE_INLINE_TASK",
|
|
13224
|
+
ReadConfluenceRelation = "READ_CONFLUENCE_RELATION",
|
|
13225
|
+
WriteConfluenceRelation = "WRITE_CONFLUENCE_RELATION",
|
|
13226
|
+
ReadConfluenceSpace = "READ_CONFLUENCE_SPACE",
|
|
13164
13227
|
WriteConfluenceSpace = "WRITE_CONFLUENCE_SPACE",
|
|
13165
|
-
|
|
13166
|
-
|
|
13167
|
-
|
|
13168
|
-
|
|
13169
|
-
|
|
13170
|
-
|
|
13171
|
-
|
|
13228
|
+
DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
|
|
13229
|
+
ReadConfluenceSpacePermission = "READ_CONFLUENCE_SPACE_PERMISSION",
|
|
13230
|
+
WriteConfluenceSpacePermission = "WRITE_CONFLUENCE_SPACE_PERMISSION",
|
|
13231
|
+
ReadConfluenceSpaceProperty = "READ_CONFLUENCE_SPACE_PROPERTY",
|
|
13232
|
+
WriteConfluenceSpaceProperty = "WRITE_CONFLUENCE_SPACE_PROPERTY",
|
|
13233
|
+
ReadConfluenceSpaceSetting = "READ_CONFLUENCE_SPACE_SETTING",
|
|
13234
|
+
WriteConfluenceSpaceSetting = "WRITE_CONFLUENCE_SPACE_SETTING",
|
|
13172
13235
|
ReadConfluenceUser = "READ_CONFLUENCE_USER",
|
|
13173
|
-
ReadConfluenceContentPermission = "READ_CONFLUENCE_CONTENT_PERMISSION",
|
|
13174
13236
|
ManageApp = "MANAGE_APP",
|
|
13175
13237
|
StorageApp = "STORAGE_APP",
|
|
13176
13238
|
ReadJiraUser = "READ_JIRA_USER",
|
|
@@ -13322,7 +13384,7 @@ export declare type SetColumnLimitInput = {
|
|
|
13322
13384
|
};
|
|
13323
13385
|
export declare type SetColumnLimitOutput = MutationResponse & {
|
|
13324
13386
|
__typename?: 'SetColumnLimitOutput';
|
|
13325
|
-
columns?: Maybe<Array<Column
|
|
13387
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
13326
13388
|
statusCode: Scalars['Int'];
|
|
13327
13389
|
success: Scalars['Boolean'];
|
|
13328
13390
|
message: Scalars['String'];
|
|
@@ -13781,6 +13843,7 @@ export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
|
13781
13843
|
transitions?: Maybe<SupportRequestTransitions>;
|
|
13782
13844
|
targetScreen: Scalars['String'];
|
|
13783
13845
|
lastComment: SupportRequestComments;
|
|
13846
|
+
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
13784
13847
|
};
|
|
13785
13848
|
export declare type SupportRequestCommentsArgs = {
|
|
13786
13849
|
offset?: Maybe<Scalars['Int']>;
|