@forge/cli-shared 2.2.1-next.5 → 2.2.1-next.9
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 +29 -0
- package/out/graphql/graphql-types.d.ts +132 -61
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +53 -13
- 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,34 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.2.1-next.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [8aaa65c]
|
|
8
|
+
- @forge/manifest@3.1.0-next.9
|
|
9
|
+
|
|
10
|
+
## 2.2.1-next.8
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [67d2e17c]
|
|
15
|
+
- @forge/manifest@3.1.0-next.8
|
|
16
|
+
|
|
17
|
+
## 2.2.1-next.7
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [037c31a]
|
|
22
|
+
- @forge/manifest@3.1.0-next.7
|
|
23
|
+
- @forge/util@1.1.0-next.0
|
|
24
|
+
|
|
25
|
+
## 2.2.1-next.6
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies [7b2d17a]
|
|
30
|
+
- @forge/manifest@3.1.0-next.6
|
|
31
|
+
|
|
3
32
|
## 2.2.1-next.5
|
|
4
33
|
|
|
5
34
|
### 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 = {
|
|
@@ -2424,6 +2430,7 @@ export declare type CompassScorecard = Node & {
|
|
|
2424
2430
|
importance: CompassScorecardImportance;
|
|
2425
2431
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
2426
2432
|
appliedToComponents?: Maybe<CompassScorecardAppliedToComponentsQueryResult>;
|
|
2433
|
+
componentLabels?: Maybe<Array<CompassComponentLabel>>;
|
|
2427
2434
|
changeMetadata: CompassChangeMetadata;
|
|
2428
2435
|
};
|
|
2429
2436
|
export declare type CompassScorecardScorecardScoreArgs = {
|
|
@@ -3572,7 +3579,7 @@ export declare type CreateColumnInput = {
|
|
|
3572
3579
|
export declare type CreateColumnOutput = MutationResponse & {
|
|
3573
3580
|
__typename?: 'CreateColumnOutput';
|
|
3574
3581
|
newColumn?: Maybe<Column>;
|
|
3575
|
-
columns?: Maybe<Array<Column
|
|
3582
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
3576
3583
|
statusCode: Scalars['Int'];
|
|
3577
3584
|
success: Scalars['Boolean'];
|
|
3578
3585
|
message: Scalars['String'];
|
|
@@ -3675,6 +3682,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
3675
3682
|
componentType: CompassComponentType;
|
|
3676
3683
|
importance: CompassScorecardImportance;
|
|
3677
3684
|
criterias?: Maybe<Array<CreateCompassScorecardCriteriaInput>>;
|
|
3685
|
+
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
3678
3686
|
};
|
|
3679
3687
|
export declare type CreateCompassScorecardPayload = Payload & {
|
|
3680
3688
|
__typename?: 'CreateCompassScorecardPayload';
|
|
@@ -4101,7 +4109,7 @@ export declare type DeleteColumnInput = {
|
|
|
4101
4109
|
};
|
|
4102
4110
|
export declare type DeleteColumnOutput = MutationResponse & {
|
|
4103
4111
|
__typename?: 'DeleteColumnOutput';
|
|
4104
|
-
columns?: Maybe<Array<Column
|
|
4112
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
4105
4113
|
statusCode: Scalars['Int'];
|
|
4106
4114
|
success: Scalars['Boolean'];
|
|
4107
4115
|
message: Scalars['String'];
|
|
@@ -5419,11 +5427,8 @@ export declare type InvokeAuxEffectsInput = {
|
|
|
5419
5427
|
entryPoint?: Maybe<Scalars['String']>;
|
|
5420
5428
|
payload: AuxEffectsInvocationPayload;
|
|
5421
5429
|
};
|
|
5422
|
-
export declare type InvokeAuxEffectsResponse =
|
|
5430
|
+
export declare type InvokeAuxEffectsResponse = Payload & {
|
|
5423
5431
|
__typename?: 'InvokeAuxEffectsResponse';
|
|
5424
|
-
statusCode: Scalars['Int'];
|
|
5425
|
-
message: Scalars['String'];
|
|
5426
|
-
errorDetails?: Maybe<ErrorDetails>;
|
|
5427
5432
|
success: Scalars['Boolean'];
|
|
5428
5433
|
errors?: Maybe<Array<MutationError>>;
|
|
5429
5434
|
result?: Maybe<AuxEffectsResult>;
|
|
@@ -5446,11 +5451,8 @@ export declare type InvokeExtensionPayloadErrorExtensionFields = {
|
|
|
5446
5451
|
__typename?: 'InvokeExtensionPayloadErrorExtensionFields';
|
|
5447
5452
|
authInfoUrl?: Maybe<Scalars['String']>;
|
|
5448
5453
|
};
|
|
5449
|
-
export declare type InvokeExtensionResponse =
|
|
5454
|
+
export declare type InvokeExtensionResponse = Payload & {
|
|
5450
5455
|
__typename?: 'InvokeExtensionResponse';
|
|
5451
|
-
statusCode: Scalars['Int'];
|
|
5452
|
-
message: Scalars['String'];
|
|
5453
|
-
errorDetails?: Maybe<ErrorDetails>;
|
|
5454
5456
|
success: Scalars['Boolean'];
|
|
5455
5457
|
errors?: Maybe<Array<MutationError>>;
|
|
5456
5458
|
response?: Maybe<InvocationResponsePayload>;
|
|
@@ -8773,6 +8775,7 @@ export declare type JiraQuery = {
|
|
|
8773
8775
|
issueById?: Maybe<JiraIssue>;
|
|
8774
8776
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
8775
8777
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
8778
|
+
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
8776
8779
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
8777
8780
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
8778
8781
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
@@ -9086,8 +9089,8 @@ export declare enum JiraReviewState {
|
|
|
9086
9089
|
}
|
|
9087
9090
|
export declare type JiraRichText = {
|
|
9088
9091
|
__typename?: 'JiraRichText';
|
|
9089
|
-
plainText?: Maybe<Scalars['String']>;
|
|
9090
9092
|
adfValue?: Maybe<JiraAdf>;
|
|
9093
|
+
plainText?: Maybe<Scalars['String']>;
|
|
9091
9094
|
wikiValue?: Maybe<Scalars['String']>;
|
|
9092
9095
|
};
|
|
9093
9096
|
export declare type JiraRichTextField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
@@ -9175,6 +9178,30 @@ export declare type JiraServiceManagementActiveApproval = Node & {
|
|
|
9175
9178
|
approverPrincipals?: Maybe<JiraServiceManagementApproverPrincipalConnection>;
|
|
9176
9179
|
pendingApprovalCount?: Maybe<Scalars['Int']>;
|
|
9177
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
|
+
};
|
|
9178
9205
|
export declare type JiraServiceManagementApprovalCondition = {
|
|
9179
9206
|
__typename?: 'JiraServiceManagementApprovalCondition';
|
|
9180
9207
|
type?: Maybe<Scalars['String']>;
|
|
@@ -9232,7 +9259,7 @@ export declare type JiraServiceManagementApproverEdge = {
|
|
|
9232
9259
|
node?: Maybe<JiraServiceManagementApprover>;
|
|
9233
9260
|
cursor: Scalars['String'];
|
|
9234
9261
|
};
|
|
9235
|
-
export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal |
|
|
9262
|
+
export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal | JiraServiceManagementGroupApproverPrincipal;
|
|
9236
9263
|
export declare type JiraServiceManagementApproverPrincipalConnection = {
|
|
9237
9264
|
__typename?: 'JiraServiceManagementApproverPrincipalConnection';
|
|
9238
9265
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -9292,6 +9319,12 @@ export declare type JiraServiceManagementCompletedApproval = Node & {
|
|
|
9292
9319
|
completedDate?: Maybe<Scalars['DateTime']>;
|
|
9293
9320
|
status?: Maybe<JiraServiceManagementApprovalStatus>;
|
|
9294
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
|
+
};
|
|
9295
9328
|
export declare type JiraServiceManagementCompletedApprovalConnection = {
|
|
9296
9329
|
__typename?: 'JiraServiceManagementCompletedApprovalConnection';
|
|
9297
9330
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -9342,17 +9375,6 @@ export declare type JiraServiceManagementGroupApproverPrincipal = {
|
|
|
9342
9375
|
memberCount?: Maybe<Scalars['Int']>;
|
|
9343
9376
|
approvedCount?: Maybe<Scalars['Int']>;
|
|
9344
9377
|
};
|
|
9345
|
-
export declare type JiraServiceManagementGroupApproverPrincipalConnection = {
|
|
9346
|
-
__typename?: 'JiraServiceManagementGroupApproverPrincipalConnection';
|
|
9347
|
-
totalCount?: Maybe<Scalars['Int']>;
|
|
9348
|
-
pageInfo: PageInfo;
|
|
9349
|
-
edges?: Maybe<Array<Maybe<JiraServiceManagementGroupApproverPrincipalEdge>>>;
|
|
9350
|
-
};
|
|
9351
|
-
export declare type JiraServiceManagementGroupApproverPrincipalEdge = {
|
|
9352
|
-
__typename?: 'JiraServiceManagementGroupApproverPrincipalEdge';
|
|
9353
|
-
node?: Maybe<JiraServiceManagementGroupApproverPrincipal>;
|
|
9354
|
-
cursor: Scalars['String'];
|
|
9355
|
-
};
|
|
9356
9378
|
export declare type JiraServiceManagementIncident = {
|
|
9357
9379
|
__typename?: 'JiraServiceManagementIncident';
|
|
9358
9380
|
hasLinkedIncidents?: Maybe<Scalars['Boolean']>;
|
|
@@ -9612,17 +9634,6 @@ export declare type JiraServiceManagementUserApproverPrincipal = {
|
|
|
9612
9634
|
user?: Maybe<User>;
|
|
9613
9635
|
jiraRest?: Maybe<Scalars['URL']>;
|
|
9614
9636
|
};
|
|
9615
|
-
export declare type JiraServiceManagementUserApproverPrincipalConnection = {
|
|
9616
|
-
__typename?: 'JiraServiceManagementUserApproverPrincipalConnection';
|
|
9617
|
-
totalCount?: Maybe<Scalars['Int']>;
|
|
9618
|
-
pageInfo: PageInfo;
|
|
9619
|
-
edges?: Maybe<Array<Maybe<JiraServiceManagementUserApproverPrincipalEdge>>>;
|
|
9620
|
-
};
|
|
9621
|
-
export declare type JiraServiceManagementUserApproverPrincipalEdge = {
|
|
9622
|
-
__typename?: 'JiraServiceManagementUserApproverPrincipalEdge';
|
|
9623
|
-
node?: Maybe<JiraServiceManagementUserApproverPrincipal>;
|
|
9624
|
-
cursor: Scalars['String'];
|
|
9625
|
-
};
|
|
9626
9637
|
export declare type JiraServiceManagementUserResponder = {
|
|
9627
9638
|
__typename?: 'JiraServiceManagementUserResponder';
|
|
9628
9639
|
user?: Maybe<User>;
|
|
@@ -9883,6 +9894,26 @@ export declare type JiraTeamFieldTeamsArgs = {
|
|
|
9883
9894
|
last?: Maybe<Scalars['Int']>;
|
|
9884
9895
|
before?: Maybe<Scalars['String']>;
|
|
9885
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
|
+
};
|
|
9886
9917
|
export declare enum JiraTimeFormat {
|
|
9887
9918
|
Pretty = "PRETTY",
|
|
9888
9919
|
Days = "DAYS",
|
|
@@ -12740,7 +12771,7 @@ export declare type RankColumnInput = {
|
|
|
12740
12771
|
};
|
|
12741
12772
|
export declare type RankColumnOutput = MutationResponse & {
|
|
12742
12773
|
__typename?: 'RankColumnOutput';
|
|
12743
|
-
columns?: Maybe<Array<Column
|
|
12774
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
12744
12775
|
statusCode: Scalars['Int'];
|
|
12745
12776
|
success: Scalars['Boolean'];
|
|
12746
12777
|
message: Scalars['String'];
|
|
@@ -13154,20 +13185,54 @@ export declare enum Scope {
|
|
|
13154
13185
|
ReadCompassMetric = "READ_COMPASS_METRIC",
|
|
13155
13186
|
WriteCompassMetric = "WRITE_COMPASS_METRIC",
|
|
13156
13187
|
ConfluenceAtlassianExternal = "CONFLUENCE_ATLASSIAN_EXTERNAL",
|
|
13157
|
-
|
|
13158
|
-
|
|
13159
|
-
|
|
13160
|
-
|
|
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",
|
|
13161
13227
|
WriteConfluenceSpace = "WRITE_CONFLUENCE_SPACE",
|
|
13162
|
-
|
|
13163
|
-
|
|
13164
|
-
|
|
13165
|
-
|
|
13166
|
-
|
|
13167
|
-
|
|
13168
|
-
|
|
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",
|
|
13169
13235
|
ReadConfluenceUser = "READ_CONFLUENCE_USER",
|
|
13170
|
-
ReadConfluenceContentPermission = "READ_CONFLUENCE_CONTENT_PERMISSION",
|
|
13171
13236
|
ManageApp = "MANAGE_APP",
|
|
13172
13237
|
StorageApp = "STORAGE_APP",
|
|
13173
13238
|
ReadJiraUser = "READ_JIRA_USER",
|
|
@@ -13319,7 +13384,7 @@ export declare type SetColumnLimitInput = {
|
|
|
13319
13384
|
};
|
|
13320
13385
|
export declare type SetColumnLimitOutput = MutationResponse & {
|
|
13321
13386
|
__typename?: 'SetColumnLimitOutput';
|
|
13322
|
-
columns?: Maybe<Array<Column
|
|
13387
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
13323
13388
|
statusCode: Scalars['Int'];
|
|
13324
13389
|
success: Scalars['Boolean'];
|
|
13325
13390
|
message: Scalars['String'];
|
|
@@ -13778,6 +13843,7 @@ export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
|
13778
13843
|
transitions?: Maybe<SupportRequestTransitions>;
|
|
13779
13844
|
targetScreen: Scalars['String'];
|
|
13780
13845
|
lastComment: SupportRequestComments;
|
|
13846
|
+
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
13781
13847
|
};
|
|
13782
13848
|
export declare type SupportRequestCommentsArgs = {
|
|
13783
13849
|
offset?: Maybe<Scalars['Int']>;
|
|
@@ -14013,8 +14079,12 @@ export declare type SupportRequestUser = {
|
|
|
14013
14079
|
username?: Maybe<Scalars['String']>;
|
|
14014
14080
|
email?: Maybe<Scalars['String']>;
|
|
14015
14081
|
displayName?: Maybe<Scalars['String']>;
|
|
14016
|
-
userType?: Maybe<
|
|
14082
|
+
userType?: Maybe<SupportRequestUserType>;
|
|
14017
14083
|
};
|
|
14084
|
+
export declare enum SupportRequestUserType {
|
|
14085
|
+
Customer = "CUSTOMER",
|
|
14086
|
+
Partner = "PARTNER"
|
|
14087
|
+
}
|
|
14018
14088
|
export declare type SupportRequestUsers = {
|
|
14019
14089
|
__typename?: 'SupportRequestUsers';
|
|
14020
14090
|
searchUsers: Array<SupportRequestUser>;
|
|
@@ -14459,6 +14529,7 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
14459
14529
|
ownerId?: Maybe<Scalars['ID']>;
|
|
14460
14530
|
componentType?: Maybe<CompassComponentType>;
|
|
14461
14531
|
importance?: Maybe<CompassScorecardImportance>;
|
|
14532
|
+
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
14462
14533
|
};
|
|
14463
14534
|
export declare type UpdateCompassScorecardPayload = Payload & {
|
|
14464
14535
|
__typename?: 'UpdateCompassScorecardPayload';
|