@forge/cli-shared 2.2.1-next.4 → 2.2.1-next.8
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 +211 -36
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +53 -13
- package/out/graphql/mutation-aware-graphql-client.d.ts +1 -1
- 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.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [67d2e17c]
|
|
8
|
+
- @forge/manifest@3.1.0-next.8
|
|
9
|
+
|
|
10
|
+
## 2.2.1-next.7
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [037c31a]
|
|
15
|
+
- @forge/manifest@3.1.0-next.7
|
|
16
|
+
- @forge/util@1.1.0-next.0
|
|
17
|
+
|
|
18
|
+
## 2.2.1-next.6
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [7b2d17a]
|
|
23
|
+
- @forge/manifest@3.1.0-next.6
|
|
24
|
+
|
|
25
|
+
## 2.2.1-next.5
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies [f6901fd]
|
|
30
|
+
- @forge/manifest@3.1.0-next.5
|
|
31
|
+
|
|
3
32
|
## 2.2.1-next.4
|
|
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;
|
|
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 = {
|
|
@@ -3345,7 +3352,7 @@ export declare type ContentPlatformPracticePage = {
|
|
|
3345
3352
|
__typename?: 'ContentPlatformPracticePage';
|
|
3346
3353
|
name: Scalars['String'];
|
|
3347
3354
|
tagline: Scalars['String'];
|
|
3348
|
-
|
|
3355
|
+
introToPractice: ContentPlatformIntroToPractice;
|
|
3349
3356
|
whatIs: ContentPlatformChunkWhatIs;
|
|
3350
3357
|
benefits?: Maybe<ContentPlatformChunkBenefits>;
|
|
3351
3358
|
deepDive?: Maybe<ContentPlatformChunkDeepDive>;
|
|
@@ -3354,6 +3361,16 @@ export declare type ContentPlatformPracticePage = {
|
|
|
3354
3361
|
howTo?: Maybe<ContentPlatformChunkHowTo>;
|
|
3355
3362
|
practice: ContentPlatformWhatPractice;
|
|
3356
3363
|
};
|
|
3364
|
+
export declare type ContentPlatformPracticePagesConnection = {
|
|
3365
|
+
__typename?: 'ContentPlatformPracticePagesConnection';
|
|
3366
|
+
pageInfo: PageInfo;
|
|
3367
|
+
edges: Array<ContentPlatformPracticePagesEdge>;
|
|
3368
|
+
};
|
|
3369
|
+
export declare type ContentPlatformPracticePagesEdge = {
|
|
3370
|
+
__typename?: 'ContentPlatformPracticePagesEdge';
|
|
3371
|
+
node: ContentPlatformPracticePage;
|
|
3372
|
+
cursor: Scalars['String'];
|
|
3373
|
+
};
|
|
3357
3374
|
export declare type ContentPlatformReleaseNote = {
|
|
3358
3375
|
__typename?: 'ContentPlatformReleaseNote';
|
|
3359
3376
|
releaseNoteId: Scalars['String'];
|
|
@@ -3665,6 +3682,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
3665
3682
|
componentType: CompassComponentType;
|
|
3666
3683
|
importance: CompassScorecardImportance;
|
|
3667
3684
|
criterias?: Maybe<Array<CreateCompassScorecardCriteriaInput>>;
|
|
3685
|
+
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
3668
3686
|
};
|
|
3669
3687
|
export declare type CreateCompassScorecardPayload = Payload & {
|
|
3670
3688
|
__typename?: 'CreateCompassScorecardPayload';
|
|
@@ -3949,6 +3967,10 @@ export declare type CreatePolarisViewSetPayload = Payload & {
|
|
|
3949
3967
|
errors?: Maybe<Array<MutationError>>;
|
|
3950
3968
|
node?: Maybe<PolarisViewSet>;
|
|
3951
3969
|
};
|
|
3970
|
+
export declare type CreateRankingListInput = {
|
|
3971
|
+
listId: Scalars['ID'];
|
|
3972
|
+
items?: Maybe<Array<Scalars['String']>>;
|
|
3973
|
+
};
|
|
3952
3974
|
export declare type CreateSprintInput = {
|
|
3953
3975
|
boardId: Scalars['ID'];
|
|
3954
3976
|
};
|
|
@@ -5405,11 +5427,8 @@ export declare type InvokeAuxEffectsInput = {
|
|
|
5405
5427
|
entryPoint?: Maybe<Scalars['String']>;
|
|
5406
5428
|
payload: AuxEffectsInvocationPayload;
|
|
5407
5429
|
};
|
|
5408
|
-
export declare type InvokeAuxEffectsResponse =
|
|
5430
|
+
export declare type InvokeAuxEffectsResponse = Payload & {
|
|
5409
5431
|
__typename?: 'InvokeAuxEffectsResponse';
|
|
5410
|
-
statusCode: Scalars['Int'];
|
|
5411
|
-
message: Scalars['String'];
|
|
5412
|
-
errorDetails?: Maybe<ErrorDetails>;
|
|
5413
5432
|
success: Scalars['Boolean'];
|
|
5414
5433
|
errors?: Maybe<Array<MutationError>>;
|
|
5415
5434
|
result?: Maybe<AuxEffectsResult>;
|
|
@@ -5432,11 +5451,8 @@ export declare type InvokeExtensionPayloadErrorExtensionFields = {
|
|
|
5432
5451
|
__typename?: 'InvokeExtensionPayloadErrorExtensionFields';
|
|
5433
5452
|
authInfoUrl?: Maybe<Scalars['String']>;
|
|
5434
5453
|
};
|
|
5435
|
-
export declare type InvokeExtensionResponse =
|
|
5454
|
+
export declare type InvokeExtensionResponse = Payload & {
|
|
5436
5455
|
__typename?: 'InvokeExtensionResponse';
|
|
5437
|
-
statusCode: Scalars['Int'];
|
|
5438
|
-
message: Scalars['String'];
|
|
5439
|
-
errorDetails?: Maybe<ErrorDetails>;
|
|
5440
5456
|
success: Scalars['Boolean'];
|
|
5441
5457
|
errors?: Maybe<Array<MutationError>>;
|
|
5442
5458
|
response?: Maybe<InvocationResponsePayload>;
|
|
@@ -8759,6 +8775,7 @@ export declare type JiraQuery = {
|
|
|
8759
8775
|
issueById?: Maybe<JiraIssue>;
|
|
8760
8776
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
8761
8777
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
8778
|
+
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
8762
8779
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
8763
8780
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
8764
8781
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
@@ -9072,8 +9089,8 @@ export declare enum JiraReviewState {
|
|
|
9072
9089
|
}
|
|
9073
9090
|
export declare type JiraRichText = {
|
|
9074
9091
|
__typename?: 'JiraRichText';
|
|
9075
|
-
plainText?: Maybe<Scalars['String']>;
|
|
9076
9092
|
adfValue?: Maybe<JiraAdf>;
|
|
9093
|
+
plainText?: Maybe<Scalars['String']>;
|
|
9077
9094
|
wikiValue?: Maybe<Scalars['String']>;
|
|
9078
9095
|
};
|
|
9079
9096
|
export declare type JiraRichTextField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
@@ -9869,6 +9886,26 @@ export declare type JiraTeamFieldTeamsArgs = {
|
|
|
9869
9886
|
last?: Maybe<Scalars['Int']>;
|
|
9870
9887
|
before?: Maybe<Scalars['String']>;
|
|
9871
9888
|
};
|
|
9889
|
+
export declare type JiraTeamView = {
|
|
9890
|
+
__typename?: 'JiraTeamView';
|
|
9891
|
+
jiraSuppliedId?: Maybe<Scalars['String']>;
|
|
9892
|
+
jiraSuppliedName?: Maybe<Scalars['String']>;
|
|
9893
|
+
jiraSuppliedAvatar?: Maybe<JiraAvatar>;
|
|
9894
|
+
fullTeam?: Maybe<Team>;
|
|
9895
|
+
};
|
|
9896
|
+
export declare type JiraTeamViewField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9897
|
+
__typename?: 'JiraTeamViewField';
|
|
9898
|
+
id: Scalars['ID'];
|
|
9899
|
+
fieldId: Scalars['String'];
|
|
9900
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
9901
|
+
type: Scalars['String'];
|
|
9902
|
+
name: Scalars['String'];
|
|
9903
|
+
description?: Maybe<Scalars['String']>;
|
|
9904
|
+
selectedTeam?: Maybe<JiraTeamView>;
|
|
9905
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
9906
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9907
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9908
|
+
};
|
|
9872
9909
|
export declare enum JiraTimeFormat {
|
|
9873
9910
|
Pretty = "PRETTY",
|
|
9874
9911
|
Days = "DAYS",
|
|
@@ -10620,8 +10657,10 @@ export declare type Mutation = {
|
|
|
10620
10657
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
10621
10658
|
jira?: Maybe<JiraMutation>;
|
|
10622
10659
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
10660
|
+
roadmaps?: Maybe<RoadmapsMutation>;
|
|
10623
10661
|
appStorage?: Maybe<AppStorageMutation>;
|
|
10624
10662
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
10663
|
+
polaris?: Maybe<PolarisMutationNamespace>;
|
|
10625
10664
|
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
10626
10665
|
deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
|
|
10627
10666
|
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
@@ -11928,6 +11967,10 @@ export declare type PolarisMatrixConfig = {
|
|
|
11928
11967
|
__typename?: 'PolarisMatrixConfig';
|
|
11929
11968
|
axes?: Maybe<Array<PolarisMatrixAxis>>;
|
|
11930
11969
|
};
|
|
11970
|
+
export declare type PolarisMutationNamespace = {
|
|
11971
|
+
__typename?: 'PolarisMutationNamespace';
|
|
11972
|
+
ranking?: Maybe<PolarisRankingMutationNamespace>;
|
|
11973
|
+
};
|
|
11931
11974
|
export declare type PolarisPlay = {
|
|
11932
11975
|
__typename?: 'PolarisPlay';
|
|
11933
11976
|
id: Scalars['ID'];
|
|
@@ -11999,6 +12042,55 @@ export declare type PolarisProjectTemplate = {
|
|
|
11999
12042
|
__typename?: 'PolarisProjectTemplate';
|
|
12000
12043
|
ideas?: Maybe<Scalars['JSON']>;
|
|
12001
12044
|
};
|
|
12045
|
+
export declare type PolarisQueryNamespace = {
|
|
12046
|
+
__typename?: 'PolarisQueryNamespace';
|
|
12047
|
+
ranking?: Maybe<PolarisRankingQueryNamespace>;
|
|
12048
|
+
};
|
|
12049
|
+
export declare type PolarisRankingMutationNamespace = {
|
|
12050
|
+
__typename?: 'PolarisRankingMutationNamespace';
|
|
12051
|
+
createList?: Maybe<RankingDiffPayload>;
|
|
12052
|
+
deleteList?: Maybe<RankingDiffPayload>;
|
|
12053
|
+
makeFirst?: Maybe<RankingDiffPayload>;
|
|
12054
|
+
makeLast?: Maybe<RankingDiffPayload>;
|
|
12055
|
+
makeBefore?: Maybe<RankingDiffPayload>;
|
|
12056
|
+
makeAfter?: Maybe<RankingDiffPayload>;
|
|
12057
|
+
makeUnranked?: Maybe<RankingDiffPayload>;
|
|
12058
|
+
};
|
|
12059
|
+
export declare type PolarisRankingMutationNamespaceCreateListArgs = {
|
|
12060
|
+
input: CreateRankingListInput;
|
|
12061
|
+
};
|
|
12062
|
+
export declare type PolarisRankingMutationNamespaceDeleteListArgs = {
|
|
12063
|
+
listId: Scalars['ID'];
|
|
12064
|
+
};
|
|
12065
|
+
export declare type PolarisRankingMutationNamespaceMakeFirstArgs = {
|
|
12066
|
+
listId: Scalars['ID'];
|
|
12067
|
+
id: Scalars['ID'];
|
|
12068
|
+
};
|
|
12069
|
+
export declare type PolarisRankingMutationNamespaceMakeLastArgs = {
|
|
12070
|
+
listId: Scalars['ID'];
|
|
12071
|
+
id: Scalars['ID'];
|
|
12072
|
+
};
|
|
12073
|
+
export declare type PolarisRankingMutationNamespaceMakeBeforeArgs = {
|
|
12074
|
+
listId: Scalars['ID'];
|
|
12075
|
+
refId: Scalars['ID'];
|
|
12076
|
+
id: Scalars['ID'];
|
|
12077
|
+
};
|
|
12078
|
+
export declare type PolarisRankingMutationNamespaceMakeAfterArgs = {
|
|
12079
|
+
listId: Scalars['ID'];
|
|
12080
|
+
refId: Scalars['ID'];
|
|
12081
|
+
id: Scalars['ID'];
|
|
12082
|
+
};
|
|
12083
|
+
export declare type PolarisRankingMutationNamespaceMakeUnrankedArgs = {
|
|
12084
|
+
listId: Scalars['ID'];
|
|
12085
|
+
id: Scalars['ID'];
|
|
12086
|
+
};
|
|
12087
|
+
export declare type PolarisRankingQueryNamespace = {
|
|
12088
|
+
__typename?: 'PolarisRankingQueryNamespace';
|
|
12089
|
+
list?: Maybe<Array<Maybe<RankItem>>>;
|
|
12090
|
+
};
|
|
12091
|
+
export declare type PolarisRankingQueryNamespaceListArgs = {
|
|
12092
|
+
listId: Scalars['ID'];
|
|
12093
|
+
};
|
|
12002
12094
|
export declare enum PolarisRefreshError {
|
|
12003
12095
|
NeedAuth = "NEED_AUTH",
|
|
12004
12096
|
InvalidSnippet = "INVALID_SNIPPET",
|
|
@@ -12284,7 +12376,7 @@ export declare type Query = {
|
|
|
12284
12376
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
12285
12377
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
12286
12378
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
12287
|
-
practicePages:
|
|
12379
|
+
practicePages: ContentPlatformPracticePagesConnection;
|
|
12288
12380
|
practicePage: ContentPlatformPracticePage;
|
|
12289
12381
|
apps?: Maybe<AppConnection>;
|
|
12290
12382
|
app?: Maybe<App>;
|
|
@@ -12346,6 +12438,7 @@ export declare type Query = {
|
|
|
12346
12438
|
polarisCollabToken?: Maybe<PolarisDelegationToken>;
|
|
12347
12439
|
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
12348
12440
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
12441
|
+
polaris?: Maybe<PolarisQueryNamespace>;
|
|
12349
12442
|
dvcs?: Maybe<DvcsQuery>;
|
|
12350
12443
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
12351
12444
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
@@ -12397,6 +12490,10 @@ export declare type QueryReleaseNoteArgs = {
|
|
|
12397
12490
|
id: Scalars['String'];
|
|
12398
12491
|
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
12399
12492
|
};
|
|
12493
|
+
export declare type QueryPracticePagesArgs = {
|
|
12494
|
+
after?: Maybe<Scalars['String']>;
|
|
12495
|
+
first?: Maybe<Scalars['Int']>;
|
|
12496
|
+
};
|
|
12400
12497
|
export declare type QueryPracticePageArgs = {
|
|
12401
12498
|
id: Scalars['String'];
|
|
12402
12499
|
};
|
|
@@ -12671,6 +12768,17 @@ export declare type RankColumnOutput = MutationResponse & {
|
|
|
12671
12768
|
success: Scalars['Boolean'];
|
|
12672
12769
|
message: Scalars['String'];
|
|
12673
12770
|
};
|
|
12771
|
+
export declare type RankItem = {
|
|
12772
|
+
__typename?: 'RankItem';
|
|
12773
|
+
id: Scalars['ID'];
|
|
12774
|
+
rank: Scalars['Float'];
|
|
12775
|
+
};
|
|
12776
|
+
export declare type RankingDiffPayload = {
|
|
12777
|
+
__typename?: 'RankingDiffPayload';
|
|
12778
|
+
added?: Maybe<Array<RankItem>>;
|
|
12779
|
+
changed?: Maybe<Array<RankItem>>;
|
|
12780
|
+
deleted?: Maybe<Array<RankItem>>;
|
|
12781
|
+
};
|
|
12674
12782
|
export declare enum RateLimitingCurrency {
|
|
12675
12783
|
TestingService = "TESTING_SERVICE",
|
|
12676
12784
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
@@ -12823,6 +12931,21 @@ export declare type RoadmapExternalConfiguration = {
|
|
|
12823
12931
|
epicNameField?: Maybe<Scalars['ID']>;
|
|
12824
12932
|
sprintField?: Maybe<Scalars['ID']>;
|
|
12825
12933
|
};
|
|
12934
|
+
export declare type RoadmapFeatureToggleInput = {
|
|
12935
|
+
sourceARI: Scalars['ID'];
|
|
12936
|
+
enabled: Scalars['Boolean'];
|
|
12937
|
+
};
|
|
12938
|
+
export declare type RoadmapFeatureToggleOutput = {
|
|
12939
|
+
__typename?: 'RoadmapFeatureToggleOutput';
|
|
12940
|
+
enabled: Scalars['Boolean'];
|
|
12941
|
+
isCrossProject: Scalars['Boolean'];
|
|
12942
|
+
};
|
|
12943
|
+
export declare type RoadmapFeatureTogglePayload = Payload & {
|
|
12944
|
+
__typename?: 'RoadmapFeatureTogglePayload';
|
|
12945
|
+
success: Scalars['Boolean'];
|
|
12946
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12947
|
+
output?: Maybe<RoadmapFeatureToggleOutput>;
|
|
12948
|
+
};
|
|
12826
12949
|
export declare type RoadmapItem = {
|
|
12827
12950
|
__typename?: 'RoadmapItem';
|
|
12828
12951
|
id: Scalars['ID'];
|
|
@@ -12895,6 +13018,11 @@ export declare type RoadmapMetadata = {
|
|
|
12895
13018
|
hasExceededIssueLimit: Scalars['Boolean'];
|
|
12896
13019
|
corruptedIssueCount: Scalars['Int'];
|
|
12897
13020
|
};
|
|
13021
|
+
export declare type RoadmapMutationErrorExtension = MutationErrorExtension & {
|
|
13022
|
+
__typename?: 'RoadmapMutationErrorExtension';
|
|
13023
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
13024
|
+
errorType?: Maybe<Scalars['String']>;
|
|
13025
|
+
};
|
|
12898
13026
|
export declare enum RoadmapPaletteColor {
|
|
12899
13027
|
Purple = "PURPLE",
|
|
12900
13028
|
Blue = "BLUE",
|
|
@@ -13009,6 +13137,13 @@ export declare type RoadmapViewSettings = {
|
|
|
13009
13137
|
period: Scalars['Int'];
|
|
13010
13138
|
showCompleted: Scalars['Boolean'];
|
|
13011
13139
|
};
|
|
13140
|
+
export declare type RoadmapsMutation = {
|
|
13141
|
+
__typename?: 'RoadmapsMutation';
|
|
13142
|
+
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
13143
|
+
};
|
|
13144
|
+
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13145
|
+
input?: Maybe<RoadmapFeatureToggleInput>;
|
|
13146
|
+
};
|
|
13012
13147
|
export declare type RoadmapsQuery = {
|
|
13013
13148
|
__typename?: 'RoadmapsQuery';
|
|
13014
13149
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
@@ -13042,20 +13177,54 @@ export declare enum Scope {
|
|
|
13042
13177
|
ReadCompassMetric = "READ_COMPASS_METRIC",
|
|
13043
13178
|
WriteCompassMetric = "WRITE_COMPASS_METRIC",
|
|
13044
13179
|
ConfluenceAtlassianExternal = "CONFLUENCE_ATLASSIAN_EXTERNAL",
|
|
13045
|
-
|
|
13046
|
-
|
|
13047
|
-
|
|
13048
|
-
|
|
13180
|
+
ReadConfluenceContentAnalytics = "READ_CONFLUENCE_CONTENT_ANALYTICS",
|
|
13181
|
+
ReadConfluenceAuditLog = "READ_CONFLUENCE_AUDIT_LOG",
|
|
13182
|
+
WriteConfluenceAuditLog = "WRITE_CONFLUENCE_AUDIT_LOG",
|
|
13183
|
+
ReadConfluenceConfiguration = "READ_CONFLUENCE_CONFIGURATION",
|
|
13184
|
+
WriteConfluenceConfiguration = "WRITE_CONFLUENCE_CONFIGURATION",
|
|
13185
|
+
ReadConfluencePage = "READ_CONFLUENCE_PAGE",
|
|
13186
|
+
WriteConfluencePage = "WRITE_CONFLUENCE_PAGE",
|
|
13187
|
+
DeleteConfluencePage = "DELETE_CONFLUENCE_PAGE",
|
|
13188
|
+
ReadConfluenceBlogpost = "READ_CONFLUENCE_BLOGPOST",
|
|
13189
|
+
WriteConfluenceBlogpost = "WRITE_CONFLUENCE_BLOGPOST",
|
|
13190
|
+
DeleteConfluenceBlogpost = "DELETE_CONFLUENCE_BLOGPOST",
|
|
13191
|
+
ReadConfluenceCustomContent = "READ_CONFLUENCE_CUSTOM_CONTENT",
|
|
13192
|
+
WriteConfluenceCustomContent = "WRITE_CONFLUENCE_CUSTOM_CONTENT",
|
|
13193
|
+
DeleteConfluenceCustomContent = "DELETE_CONFLUENCE_CUSTOM_CONTENT",
|
|
13194
|
+
ReadConfluenceAttachment = "READ_CONFLUENCE_ATTACHMENT",
|
|
13195
|
+
WriteConfluenceAttachment = "WRITE_CONFLUENCE_ATTACHMENT",
|
|
13196
|
+
DeleteConfluenceAttachment = "DELETE_CONFLUENCE_ATTACHMENT",
|
|
13197
|
+
ReadConfluenceComment = "READ_CONFLUENCE_COMMENT",
|
|
13198
|
+
WriteConfluenceComment = "WRITE_CONFLUENCE_COMMENT",
|
|
13199
|
+
DeleteConfluenceComment = "DELETE_CONFLUENCE_COMMENT",
|
|
13200
|
+
ReadConfluenceTemplate = "READ_CONFLUENCE_TEMPLATE",
|
|
13201
|
+
WriteConfluenceTemplate = "WRITE_CONFLUENCE_TEMPLATE",
|
|
13202
|
+
ReadConfluenceLabel = "READ_CONFLUENCE_LABEL",
|
|
13203
|
+
WriteConfluenceLabel = "WRITE_CONFLUENCE_LABEL",
|
|
13204
|
+
ReadConfluenceContentPermission = "READ_CONFLUENCE_CONTENT_PERMISSION",
|
|
13205
|
+
ReadConfluenceContentProperty = "READ_CONFLUENCE_CONTENT_PROPERTY",
|
|
13206
|
+
WriteConfluenceContentProperty = "WRITE_CONFLUENCE_CONTENT_PROPERTY",
|
|
13207
|
+
ReadConfluenceContentRestriction = "READ_CONFLUENCE_CONTENT_RESTRICTION",
|
|
13208
|
+
WriteConfluenceContentRestriction = "WRITE_CONFLUENCE_CONTENT_RESTRICTION",
|
|
13209
|
+
ReadConfluenceContentMetadata = "READ_CONFLUENCE_CONTENT_METADATA",
|
|
13210
|
+
ReadConfluenceWatcher = "READ_CONFLUENCE_WATCHER",
|
|
13211
|
+
WriteConfluenceWatcher = "WRITE_CONFLUENCE_WATCHER",
|
|
13212
|
+
ReadConfluenceGroup = "READ_CONFLUENCE_GROUP",
|
|
13213
|
+
WriteConfluenceGroup = "WRITE_CONFLUENCE_GROUP",
|
|
13214
|
+
ReadConfluenceInlineTask = "READ_CONFLUENCE_INLINE_TASK",
|
|
13215
|
+
WriteConfluenceInlineTask = "WRITE_CONFLUENCE_INLINE_TASK",
|
|
13216
|
+
ReadConfluenceRelation = "READ_CONFLUENCE_RELATION",
|
|
13217
|
+
WriteConfluenceRelation = "WRITE_CONFLUENCE_RELATION",
|
|
13218
|
+
ReadConfluenceSpace = "READ_CONFLUENCE_SPACE",
|
|
13049
13219
|
WriteConfluenceSpace = "WRITE_CONFLUENCE_SPACE",
|
|
13050
|
-
|
|
13051
|
-
|
|
13052
|
-
|
|
13053
|
-
|
|
13054
|
-
|
|
13055
|
-
|
|
13056
|
-
|
|
13220
|
+
DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
|
|
13221
|
+
ReadConfluenceSpacePermission = "READ_CONFLUENCE_SPACE_PERMISSION",
|
|
13222
|
+
WriteConfluenceSpacePermission = "WRITE_CONFLUENCE_SPACE_PERMISSION",
|
|
13223
|
+
ReadConfluenceSpaceProperty = "READ_CONFLUENCE_SPACE_PROPERTY",
|
|
13224
|
+
WriteConfluenceSpaceProperty = "WRITE_CONFLUENCE_SPACE_PROPERTY",
|
|
13225
|
+
ReadConfluenceSpaceSetting = "READ_CONFLUENCE_SPACE_SETTING",
|
|
13226
|
+
WriteConfluenceSpaceSetting = "WRITE_CONFLUENCE_SPACE_SETTING",
|
|
13057
13227
|
ReadConfluenceUser = "READ_CONFLUENCE_USER",
|
|
13058
|
-
ReadConfluenceContentPermission = "READ_CONFLUENCE_CONTENT_PERMISSION",
|
|
13059
13228
|
ManageApp = "MANAGE_APP",
|
|
13060
13229
|
StorageApp = "STORAGE_APP",
|
|
13061
13230
|
ReadJiraUser = "READ_JIRA_USER",
|
|
@@ -13666,6 +13835,7 @@ export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
|
13666
13835
|
transitions?: Maybe<SupportRequestTransitions>;
|
|
13667
13836
|
targetScreen: Scalars['String'];
|
|
13668
13837
|
lastComment: SupportRequestComments;
|
|
13838
|
+
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
13669
13839
|
};
|
|
13670
13840
|
export declare type SupportRequestCommentsArgs = {
|
|
13671
13841
|
offset?: Maybe<Scalars['Int']>;
|
|
@@ -13901,8 +14071,12 @@ export declare type SupportRequestUser = {
|
|
|
13901
14071
|
username?: Maybe<Scalars['String']>;
|
|
13902
14072
|
email?: Maybe<Scalars['String']>;
|
|
13903
14073
|
displayName?: Maybe<Scalars['String']>;
|
|
13904
|
-
userType?: Maybe<
|
|
14074
|
+
userType?: Maybe<SupportRequestUserType>;
|
|
13905
14075
|
};
|
|
14076
|
+
export declare enum SupportRequestUserType {
|
|
14077
|
+
Customer = "CUSTOMER",
|
|
14078
|
+
Partner = "PARTNER"
|
|
14079
|
+
}
|
|
13906
14080
|
export declare type SupportRequestUsers = {
|
|
13907
14081
|
__typename?: 'SupportRequestUsers';
|
|
13908
14082
|
searchUsers: Array<SupportRequestUser>;
|
|
@@ -14347,6 +14521,7 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
14347
14521
|
ownerId?: Maybe<Scalars['ID']>;
|
|
14348
14522
|
componentType?: Maybe<CompassComponentType>;
|
|
14349
14523
|
importance?: Maybe<CompassScorecardImportance>;
|
|
14524
|
+
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
14350
14525
|
};
|
|
14351
14526
|
export declare type UpdateCompassScorecardPayload = Payload & {
|
|
14352
14527
|
__typename?: 'UpdateCompassScorecardPayload';
|