@forge/cli-shared 2.2.1-next.3 → 2.2.1-next.7
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 +231 -36
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +54 -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.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [037c31a]
|
|
8
|
+
- @forge/manifest@3.1.0-next.7
|
|
9
|
+
- @forge/util@1.1.0-next.0
|
|
10
|
+
|
|
11
|
+
## 2.2.1-next.6
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [7b2d17a]
|
|
16
|
+
- @forge/manifest@3.1.0-next.6
|
|
17
|
+
|
|
18
|
+
## 2.2.1-next.5
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [f6901fd]
|
|
23
|
+
- @forge/manifest@3.1.0-next.5
|
|
24
|
+
|
|
25
|
+
## 2.2.1-next.4
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies [d3ccc04]
|
|
30
|
+
- @forge/manifest@3.1.0-next.4
|
|
31
|
+
|
|
3
32
|
## 2.2.1-next.3
|
|
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;
|
|
@@ -213,7 +219,7 @@ export declare type ActivityFilterArgs = {
|
|
|
213
219
|
products?: Maybe<Array<Scalars['String']>>;
|
|
214
220
|
eventTypes?: Maybe<Array<Scalars['String']>>;
|
|
215
221
|
objectTypes?: Maybe<Array<Scalars['String']>>;
|
|
216
|
-
transitions?: Maybe<Array<
|
|
222
|
+
transitions?: Maybe<Array<TransitionFilter>>;
|
|
217
223
|
containerIds?: Maybe<Array<Scalars['ID']>>;
|
|
218
224
|
earliestStart?: Maybe<Scalars['DateTime']>;
|
|
219
225
|
latestStart?: Maybe<Scalars['DateTime']>;
|
|
@@ -294,6 +300,7 @@ export declare enum ApiContext {
|
|
|
294
300
|
}
|
|
295
301
|
export declare enum ApiGroup {
|
|
296
302
|
Compass = "COMPASS",
|
|
303
|
+
Confluence = "CONFLUENCE",
|
|
297
304
|
Jira = "JIRA",
|
|
298
305
|
Forge = "FORGE",
|
|
299
306
|
Polaris = "POLARIS",
|
|
@@ -1612,7 +1619,7 @@ export declare type CompassCatalogMutationApiCreateDeploymentEventArgs = {
|
|
|
1612
1619
|
input: CreateDeploymentEventInput;
|
|
1613
1620
|
};
|
|
1614
1621
|
export declare type CompassCatalogMutationApiCreateCompassEventArgs = {
|
|
1615
|
-
input:
|
|
1622
|
+
input: CompassCreateEventInput;
|
|
1616
1623
|
};
|
|
1617
1624
|
export declare type CompassCatalogMutationApiAttachEventSourceArgs = {
|
|
1618
1625
|
input: AttachEventSourceInput;
|
|
@@ -1668,7 +1675,6 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1668
1675
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
1669
1676
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1670
1677
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1671
|
-
builtinMetricDefinitions: Array<CompassMetricDefinition>;
|
|
1672
1678
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
1673
1679
|
};
|
|
1674
1680
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
@@ -1793,7 +1799,6 @@ export declare enum CompassComponentType {
|
|
|
1793
1799
|
Other = "OTHER"
|
|
1794
1800
|
}
|
|
1795
1801
|
export declare type CompassCreateAlertEventInput = {
|
|
1796
|
-
cloudId: Scalars['ID'];
|
|
1797
1802
|
eventType: CompassEventType;
|
|
1798
1803
|
displayName: Scalars['String'];
|
|
1799
1804
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -1816,7 +1821,6 @@ export declare type CompassCreateAnnouncementPayload = Payload & {
|
|
|
1816
1821
|
errors?: Maybe<Array<MutationError>>;
|
|
1817
1822
|
};
|
|
1818
1823
|
export declare type CompassCreateCustomEventInput = {
|
|
1819
|
-
cloudId: Scalars['ID'];
|
|
1820
1824
|
eventType: CompassEventType;
|
|
1821
1825
|
displayName: Scalars['String'];
|
|
1822
1826
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -1824,11 +1828,10 @@ export declare type CompassCreateCustomEventInput = {
|
|
|
1824
1828
|
updateSequenceNumber: Scalars['Long'];
|
|
1825
1829
|
description?: Maybe<Scalars['String']>;
|
|
1826
1830
|
url?: Maybe<Scalars['URL']>;
|
|
1827
|
-
icon
|
|
1831
|
+
icon: CompassCustomEventIcon;
|
|
1828
1832
|
externalEventSourceId: Scalars['ID'];
|
|
1829
1833
|
};
|
|
1830
1834
|
export declare type CompassCreateDeploymentEventInput = {
|
|
1831
|
-
cloudId: Scalars['ID'];
|
|
1832
1835
|
deploymentSequenceNumber: Scalars['Long'];
|
|
1833
1836
|
updateSequenceNumber: Scalars['Long'];
|
|
1834
1837
|
displayName: Scalars['String'];
|
|
@@ -1840,13 +1843,16 @@ export declare type CompassCreateDeploymentEventInput = {
|
|
|
1840
1843
|
environment: CompassDeploymentEventEnvironmentInput;
|
|
1841
1844
|
externalEventSourceId: Scalars['ID'];
|
|
1842
1845
|
};
|
|
1846
|
+
export declare type CompassCreateEventInput = {
|
|
1847
|
+
cloudId: Scalars['ID'];
|
|
1848
|
+
event: CompassEventInput;
|
|
1849
|
+
};
|
|
1843
1850
|
export declare type CompassCreateEventsPayload = Payload & {
|
|
1844
1851
|
__typename?: 'CompassCreateEventsPayload';
|
|
1845
1852
|
success: Scalars['Boolean'];
|
|
1846
1853
|
errors?: Maybe<Array<MutationError>>;
|
|
1847
1854
|
};
|
|
1848
1855
|
export declare type CompassCreateFlagEventInput = {
|
|
1849
|
-
cloudId: Scalars['ID'];
|
|
1850
1856
|
eventType: CompassEventType;
|
|
1851
1857
|
displayName: Scalars['String'];
|
|
1852
1858
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -1858,7 +1864,6 @@ export declare type CompassCreateFlagEventInput = {
|
|
|
1858
1864
|
externalEventSourceId: Scalars['ID'];
|
|
1859
1865
|
};
|
|
1860
1866
|
export declare type CompassCreateIncidentEventInput = {
|
|
1861
|
-
cloudId: Scalars['ID'];
|
|
1862
1867
|
eventType: CompassEventType;
|
|
1863
1868
|
displayName: Scalars['String'];
|
|
1864
1869
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -1866,19 +1871,18 @@ export declare type CompassCreateIncidentEventInput = {
|
|
|
1866
1871
|
updateSequenceNumber: Scalars['Long'];
|
|
1867
1872
|
description?: Maybe<Scalars['String']>;
|
|
1868
1873
|
url?: Maybe<Scalars['URL']>;
|
|
1869
|
-
state
|
|
1874
|
+
state: CompassIncidentEventState;
|
|
1870
1875
|
externalEventSourceId: Scalars['ID'];
|
|
1871
1876
|
};
|
|
1872
1877
|
export declare type CompassCreateLifecycleEventInput = {
|
|
1873
|
-
cloudId: Scalars['ID'];
|
|
1874
1878
|
eventType: CompassEventType;
|
|
1875
1879
|
displayName: Scalars['String'];
|
|
1876
1880
|
lastUpdated: Scalars['DateTime'];
|
|
1877
|
-
|
|
1881
|
+
lifecycleId: Scalars['ID'];
|
|
1878
1882
|
updateSequenceNumber: Scalars['Long'];
|
|
1879
1883
|
description?: Maybe<Scalars['String']>;
|
|
1880
1884
|
url?: Maybe<Scalars['URL']>;
|
|
1881
|
-
stage
|
|
1885
|
+
stage: CompassLifecycleEventStage;
|
|
1882
1886
|
externalEventSourceId: Scalars['ID'];
|
|
1883
1887
|
};
|
|
1884
1888
|
export declare type CompassCreateMetricDefinitionInput = {
|
|
@@ -2424,6 +2428,7 @@ export declare type CompassScorecard = Node & {
|
|
|
2424
2428
|
importance: CompassScorecardImportance;
|
|
2425
2429
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
2426
2430
|
appliedToComponents?: Maybe<CompassScorecardAppliedToComponentsQueryResult>;
|
|
2431
|
+
componentLabels?: Maybe<Array<CompassComponentLabel>>;
|
|
2427
2432
|
changeMetadata: CompassChangeMetadata;
|
|
2428
2433
|
};
|
|
2429
2434
|
export declare type CompassScorecardScorecardScoreArgs = {
|
|
@@ -3345,7 +3350,7 @@ export declare type ContentPlatformPracticePage = {
|
|
|
3345
3350
|
__typename?: 'ContentPlatformPracticePage';
|
|
3346
3351
|
name: Scalars['String'];
|
|
3347
3352
|
tagline: Scalars['String'];
|
|
3348
|
-
|
|
3353
|
+
introToPractice: ContentPlatformIntroToPractice;
|
|
3349
3354
|
whatIs: ContentPlatformChunkWhatIs;
|
|
3350
3355
|
benefits?: Maybe<ContentPlatformChunkBenefits>;
|
|
3351
3356
|
deepDive?: Maybe<ContentPlatformChunkDeepDive>;
|
|
@@ -3354,6 +3359,16 @@ export declare type ContentPlatformPracticePage = {
|
|
|
3354
3359
|
howTo?: Maybe<ContentPlatformChunkHowTo>;
|
|
3355
3360
|
practice: ContentPlatformWhatPractice;
|
|
3356
3361
|
};
|
|
3362
|
+
export declare type ContentPlatformPracticePagesConnection = {
|
|
3363
|
+
__typename?: 'ContentPlatformPracticePagesConnection';
|
|
3364
|
+
pageInfo: PageInfo;
|
|
3365
|
+
edges: Array<ContentPlatformPracticePagesEdge>;
|
|
3366
|
+
};
|
|
3367
|
+
export declare type ContentPlatformPracticePagesEdge = {
|
|
3368
|
+
__typename?: 'ContentPlatformPracticePagesEdge';
|
|
3369
|
+
node: ContentPlatformPracticePage;
|
|
3370
|
+
cursor: Scalars['String'];
|
|
3371
|
+
};
|
|
3357
3372
|
export declare type ContentPlatformReleaseNote = {
|
|
3358
3373
|
__typename?: 'ContentPlatformReleaseNote';
|
|
3359
3374
|
releaseNoteId: Scalars['String'];
|
|
@@ -3665,6 +3680,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
3665
3680
|
componentType: CompassComponentType;
|
|
3666
3681
|
importance: CompassScorecardImportance;
|
|
3667
3682
|
criterias?: Maybe<Array<CreateCompassScorecardCriteriaInput>>;
|
|
3683
|
+
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
3668
3684
|
};
|
|
3669
3685
|
export declare type CreateCompassScorecardPayload = Payload & {
|
|
3670
3686
|
__typename?: 'CreateCompassScorecardPayload';
|
|
@@ -3949,6 +3965,10 @@ export declare type CreatePolarisViewSetPayload = Payload & {
|
|
|
3949
3965
|
errors?: Maybe<Array<MutationError>>;
|
|
3950
3966
|
node?: Maybe<PolarisViewSet>;
|
|
3951
3967
|
};
|
|
3968
|
+
export declare type CreateRankingListInput = {
|
|
3969
|
+
listId: Scalars['ID'];
|
|
3970
|
+
items?: Maybe<Array<Scalars['String']>>;
|
|
3971
|
+
};
|
|
3952
3972
|
export declare type CreateSprintInput = {
|
|
3953
3973
|
boardId: Scalars['ID'];
|
|
3954
3974
|
};
|
|
@@ -4364,6 +4384,13 @@ export declare type DetachEventSourcePayload = Payload & {
|
|
|
4364
4384
|
success: Scalars['Boolean'];
|
|
4365
4385
|
errors?: Maybe<Array<MutationError>>;
|
|
4366
4386
|
};
|
|
4387
|
+
export declare type DevOps = {
|
|
4388
|
+
__typename?: 'DevOps';
|
|
4389
|
+
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
4390
|
+
};
|
|
4391
|
+
export declare type DevOpsSummarisedDeploymentsArgs = {
|
|
4392
|
+
ids: Array<Scalars['ID']>;
|
|
4393
|
+
};
|
|
4367
4394
|
export declare type DevOpsAvatar = {
|
|
4368
4395
|
__typename?: 'DevOpsAvatar';
|
|
4369
4396
|
url?: Maybe<Scalars['URL']>;
|
|
@@ -4824,6 +4851,13 @@ export declare type DevOpsServicesFilterInput = {
|
|
|
4824
4851
|
nameContains?: Maybe<Scalars['String']>;
|
|
4825
4852
|
tierLevelIn?: Maybe<Array<Scalars['Int']>>;
|
|
4826
4853
|
};
|
|
4854
|
+
export declare type DevOpsSummarisedDeployments = {
|
|
4855
|
+
__typename?: 'DevOpsSummarisedDeployments';
|
|
4856
|
+
entityId: Scalars['ID'];
|
|
4857
|
+
count?: Maybe<Scalars['Int']>;
|
|
4858
|
+
deploymentState?: Maybe<DeploymentState>;
|
|
4859
|
+
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
4860
|
+
};
|
|
4827
4861
|
export declare type DevOpsThirdPartyRepository = {
|
|
4828
4862
|
__typename?: 'DevOpsThirdPartyRepository';
|
|
4829
4863
|
id: Scalars['ID'];
|
|
@@ -5391,11 +5425,8 @@ export declare type InvokeAuxEffectsInput = {
|
|
|
5391
5425
|
entryPoint?: Maybe<Scalars['String']>;
|
|
5392
5426
|
payload: AuxEffectsInvocationPayload;
|
|
5393
5427
|
};
|
|
5394
|
-
export declare type InvokeAuxEffectsResponse =
|
|
5428
|
+
export declare type InvokeAuxEffectsResponse = Payload & {
|
|
5395
5429
|
__typename?: 'InvokeAuxEffectsResponse';
|
|
5396
|
-
statusCode: Scalars['Int'];
|
|
5397
|
-
message: Scalars['String'];
|
|
5398
|
-
errorDetails?: Maybe<ErrorDetails>;
|
|
5399
5430
|
success: Scalars['Boolean'];
|
|
5400
5431
|
errors?: Maybe<Array<MutationError>>;
|
|
5401
5432
|
result?: Maybe<AuxEffectsResult>;
|
|
@@ -5418,11 +5449,8 @@ export declare type InvokeExtensionPayloadErrorExtensionFields = {
|
|
|
5418
5449
|
__typename?: 'InvokeExtensionPayloadErrorExtensionFields';
|
|
5419
5450
|
authInfoUrl?: Maybe<Scalars['String']>;
|
|
5420
5451
|
};
|
|
5421
|
-
export declare type InvokeExtensionResponse =
|
|
5452
|
+
export declare type InvokeExtensionResponse = Payload & {
|
|
5422
5453
|
__typename?: 'InvokeExtensionResponse';
|
|
5423
|
-
statusCode: Scalars['Int'];
|
|
5424
|
-
message: Scalars['String'];
|
|
5425
|
-
errorDetails?: Maybe<ErrorDetails>;
|
|
5426
5454
|
success: Scalars['Boolean'];
|
|
5427
5455
|
errors?: Maybe<Array<MutationError>>;
|
|
5428
5456
|
response?: Maybe<InvocationResponsePayload>;
|
|
@@ -6840,6 +6868,7 @@ export declare type JiraIssue = Node & {
|
|
|
6840
6868
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
6841
6869
|
childIssues?: Maybe<JiraChildIssues>;
|
|
6842
6870
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
6871
|
+
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
6843
6872
|
};
|
|
6844
6873
|
export declare type JiraIssueFieldsArgs = {
|
|
6845
6874
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -8744,6 +8773,7 @@ export declare type JiraQuery = {
|
|
|
8744
8773
|
issueById?: Maybe<JiraIssue>;
|
|
8745
8774
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
8746
8775
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
8776
|
+
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
8747
8777
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
8748
8778
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
8749
8779
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
@@ -9057,8 +9087,8 @@ export declare enum JiraReviewState {
|
|
|
9057
9087
|
}
|
|
9058
9088
|
export declare type JiraRichText = {
|
|
9059
9089
|
__typename?: 'JiraRichText';
|
|
9060
|
-
plainText?: Maybe<Scalars['String']>;
|
|
9061
9090
|
adfValue?: Maybe<JiraAdf>;
|
|
9091
|
+
plainText?: Maybe<Scalars['String']>;
|
|
9062
9092
|
wikiValue?: Maybe<Scalars['String']>;
|
|
9063
9093
|
};
|
|
9064
9094
|
export declare type JiraRichTextField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
@@ -9854,6 +9884,26 @@ export declare type JiraTeamFieldTeamsArgs = {
|
|
|
9854
9884
|
last?: Maybe<Scalars['Int']>;
|
|
9855
9885
|
before?: Maybe<Scalars['String']>;
|
|
9856
9886
|
};
|
|
9887
|
+
export declare type JiraTeamView = {
|
|
9888
|
+
__typename?: 'JiraTeamView';
|
|
9889
|
+
jiraSuppliedId?: Maybe<Scalars['String']>;
|
|
9890
|
+
jiraSuppliedName?: Maybe<Scalars['String']>;
|
|
9891
|
+
jiraSuppliedAvatar?: Maybe<JiraAvatar>;
|
|
9892
|
+
fullTeam?: Maybe<Team>;
|
|
9893
|
+
};
|
|
9894
|
+
export declare type JiraTeamViewField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9895
|
+
__typename?: 'JiraTeamViewField';
|
|
9896
|
+
id: Scalars['ID'];
|
|
9897
|
+
fieldId: Scalars['String'];
|
|
9898
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
9899
|
+
type: Scalars['String'];
|
|
9900
|
+
name: Scalars['String'];
|
|
9901
|
+
description?: Maybe<Scalars['String']>;
|
|
9902
|
+
selectedTeam?: Maybe<JiraTeamView>;
|
|
9903
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
9904
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9905
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9906
|
+
};
|
|
9857
9907
|
export declare enum JiraTimeFormat {
|
|
9858
9908
|
Pretty = "PRETTY",
|
|
9859
9909
|
Days = "DAYS",
|
|
@@ -9992,6 +10042,7 @@ export declare enum JiraVersionIssuesFilter {
|
|
|
9992
10042
|
InProgress = "IN_PROGRESS",
|
|
9993
10043
|
Done = "DONE",
|
|
9994
10044
|
UnreviewedCode = "UNREVIEWED_CODE",
|
|
10045
|
+
OpenReview = "OPEN_REVIEW",
|
|
9995
10046
|
OpenPullRequest = "OPEN_PULL_REQUEST",
|
|
9996
10047
|
FailingBuild = "FAILING_BUILD"
|
|
9997
10048
|
}
|
|
@@ -10009,6 +10060,7 @@ export declare type JiraVersionUpdatedWarningConfigInput = {
|
|
|
10009
10060
|
export declare type JiraVersionWarningConfig = {
|
|
10010
10061
|
__typename?: 'JiraVersionWarningConfig';
|
|
10011
10062
|
openPullRequest?: Maybe<JiraVersionWarningConfigState>;
|
|
10063
|
+
openReview?: Maybe<JiraVersionWarningConfigState>;
|
|
10012
10064
|
unreviewedCode?: Maybe<JiraVersionWarningConfigState>;
|
|
10013
10065
|
failingBuild?: Maybe<JiraVersionWarningConfigState>;
|
|
10014
10066
|
};
|
|
@@ -10603,8 +10655,10 @@ export declare type Mutation = {
|
|
|
10603
10655
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
10604
10656
|
jira?: Maybe<JiraMutation>;
|
|
10605
10657
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
10658
|
+
roadmaps?: Maybe<RoadmapsMutation>;
|
|
10606
10659
|
appStorage?: Maybe<AppStorageMutation>;
|
|
10607
10660
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
10661
|
+
polaris?: Maybe<PolarisMutationNamespace>;
|
|
10608
10662
|
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
10609
10663
|
deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
|
|
10610
10664
|
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
@@ -11911,6 +11965,10 @@ export declare type PolarisMatrixConfig = {
|
|
|
11911
11965
|
__typename?: 'PolarisMatrixConfig';
|
|
11912
11966
|
axes?: Maybe<Array<PolarisMatrixAxis>>;
|
|
11913
11967
|
};
|
|
11968
|
+
export declare type PolarisMutationNamespace = {
|
|
11969
|
+
__typename?: 'PolarisMutationNamespace';
|
|
11970
|
+
ranking?: Maybe<PolarisRankingMutationNamespace>;
|
|
11971
|
+
};
|
|
11914
11972
|
export declare type PolarisPlay = {
|
|
11915
11973
|
__typename?: 'PolarisPlay';
|
|
11916
11974
|
id: Scalars['ID'];
|
|
@@ -11982,6 +12040,55 @@ export declare type PolarisProjectTemplate = {
|
|
|
11982
12040
|
__typename?: 'PolarisProjectTemplate';
|
|
11983
12041
|
ideas?: Maybe<Scalars['JSON']>;
|
|
11984
12042
|
};
|
|
12043
|
+
export declare type PolarisQueryNamespace = {
|
|
12044
|
+
__typename?: 'PolarisQueryNamespace';
|
|
12045
|
+
ranking?: Maybe<PolarisRankingQueryNamespace>;
|
|
12046
|
+
};
|
|
12047
|
+
export declare type PolarisRankingMutationNamespace = {
|
|
12048
|
+
__typename?: 'PolarisRankingMutationNamespace';
|
|
12049
|
+
createList?: Maybe<RankingDiffPayload>;
|
|
12050
|
+
deleteList?: Maybe<RankingDiffPayload>;
|
|
12051
|
+
makeFirst?: Maybe<RankingDiffPayload>;
|
|
12052
|
+
makeLast?: Maybe<RankingDiffPayload>;
|
|
12053
|
+
makeBefore?: Maybe<RankingDiffPayload>;
|
|
12054
|
+
makeAfter?: Maybe<RankingDiffPayload>;
|
|
12055
|
+
makeUnranked?: Maybe<RankingDiffPayload>;
|
|
12056
|
+
};
|
|
12057
|
+
export declare type PolarisRankingMutationNamespaceCreateListArgs = {
|
|
12058
|
+
input: CreateRankingListInput;
|
|
12059
|
+
};
|
|
12060
|
+
export declare type PolarisRankingMutationNamespaceDeleteListArgs = {
|
|
12061
|
+
listId: Scalars['ID'];
|
|
12062
|
+
};
|
|
12063
|
+
export declare type PolarisRankingMutationNamespaceMakeFirstArgs = {
|
|
12064
|
+
listId: Scalars['ID'];
|
|
12065
|
+
id: Scalars['ID'];
|
|
12066
|
+
};
|
|
12067
|
+
export declare type PolarisRankingMutationNamespaceMakeLastArgs = {
|
|
12068
|
+
listId: Scalars['ID'];
|
|
12069
|
+
id: Scalars['ID'];
|
|
12070
|
+
};
|
|
12071
|
+
export declare type PolarisRankingMutationNamespaceMakeBeforeArgs = {
|
|
12072
|
+
listId: Scalars['ID'];
|
|
12073
|
+
refId: Scalars['ID'];
|
|
12074
|
+
id: Scalars['ID'];
|
|
12075
|
+
};
|
|
12076
|
+
export declare type PolarisRankingMutationNamespaceMakeAfterArgs = {
|
|
12077
|
+
listId: Scalars['ID'];
|
|
12078
|
+
refId: Scalars['ID'];
|
|
12079
|
+
id: Scalars['ID'];
|
|
12080
|
+
};
|
|
12081
|
+
export declare type PolarisRankingMutationNamespaceMakeUnrankedArgs = {
|
|
12082
|
+
listId: Scalars['ID'];
|
|
12083
|
+
id: Scalars['ID'];
|
|
12084
|
+
};
|
|
12085
|
+
export declare type PolarisRankingQueryNamespace = {
|
|
12086
|
+
__typename?: 'PolarisRankingQueryNamespace';
|
|
12087
|
+
list?: Maybe<Array<Maybe<RankItem>>>;
|
|
12088
|
+
};
|
|
12089
|
+
export declare type PolarisRankingQueryNamespaceListArgs = {
|
|
12090
|
+
listId: Scalars['ID'];
|
|
12091
|
+
};
|
|
11985
12092
|
export declare enum PolarisRefreshError {
|
|
11986
12093
|
NeedAuth = "NEED_AUTH",
|
|
11987
12094
|
InvalidSnippet = "INVALID_SNIPPET",
|
|
@@ -12267,7 +12374,7 @@ export declare type Query = {
|
|
|
12267
12374
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
12268
12375
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
12269
12376
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
12270
|
-
practicePages:
|
|
12377
|
+
practicePages: ContentPlatformPracticePagesConnection;
|
|
12271
12378
|
practicePage: ContentPlatformPracticePage;
|
|
12272
12379
|
apps?: Maybe<AppConnection>;
|
|
12273
12380
|
app?: Maybe<App>;
|
|
@@ -12277,6 +12384,7 @@ export declare type Query = {
|
|
|
12277
12384
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
12278
12385
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
12279
12386
|
search?: Maybe<SearchQueryApi>;
|
|
12387
|
+
devOps?: Maybe<DevOps>;
|
|
12280
12388
|
me: AuthenticationContext;
|
|
12281
12389
|
user?: Maybe<User>;
|
|
12282
12390
|
users?: Maybe<Array<User>>;
|
|
@@ -12328,6 +12436,7 @@ export declare type Query = {
|
|
|
12328
12436
|
polarisCollabToken?: Maybe<PolarisDelegationToken>;
|
|
12329
12437
|
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
12330
12438
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
12439
|
+
polaris?: Maybe<PolarisQueryNamespace>;
|
|
12331
12440
|
dvcs?: Maybe<DvcsQuery>;
|
|
12332
12441
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
12333
12442
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
@@ -12379,6 +12488,10 @@ export declare type QueryReleaseNoteArgs = {
|
|
|
12379
12488
|
id: Scalars['String'];
|
|
12380
12489
|
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
12381
12490
|
};
|
|
12491
|
+
export declare type QueryPracticePagesArgs = {
|
|
12492
|
+
after?: Maybe<Scalars['String']>;
|
|
12493
|
+
first?: Maybe<Scalars['Int']>;
|
|
12494
|
+
};
|
|
12382
12495
|
export declare type QueryPracticePageArgs = {
|
|
12383
12496
|
id: Scalars['String'];
|
|
12384
12497
|
};
|
|
@@ -12653,6 +12766,17 @@ export declare type RankColumnOutput = MutationResponse & {
|
|
|
12653
12766
|
success: Scalars['Boolean'];
|
|
12654
12767
|
message: Scalars['String'];
|
|
12655
12768
|
};
|
|
12769
|
+
export declare type RankItem = {
|
|
12770
|
+
__typename?: 'RankItem';
|
|
12771
|
+
id: Scalars['ID'];
|
|
12772
|
+
rank: Scalars['Float'];
|
|
12773
|
+
};
|
|
12774
|
+
export declare type RankingDiffPayload = {
|
|
12775
|
+
__typename?: 'RankingDiffPayload';
|
|
12776
|
+
added?: Maybe<Array<RankItem>>;
|
|
12777
|
+
changed?: Maybe<Array<RankItem>>;
|
|
12778
|
+
deleted?: Maybe<Array<RankItem>>;
|
|
12779
|
+
};
|
|
12656
12780
|
export declare enum RateLimitingCurrency {
|
|
12657
12781
|
TestingService = "TESTING_SERVICE",
|
|
12658
12782
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
@@ -12805,6 +12929,21 @@ export declare type RoadmapExternalConfiguration = {
|
|
|
12805
12929
|
epicNameField?: Maybe<Scalars['ID']>;
|
|
12806
12930
|
sprintField?: Maybe<Scalars['ID']>;
|
|
12807
12931
|
};
|
|
12932
|
+
export declare type RoadmapFeatureToggleInput = {
|
|
12933
|
+
sourceARI: Scalars['ID'];
|
|
12934
|
+
enabled: Scalars['Boolean'];
|
|
12935
|
+
};
|
|
12936
|
+
export declare type RoadmapFeatureToggleOutput = {
|
|
12937
|
+
__typename?: 'RoadmapFeatureToggleOutput';
|
|
12938
|
+
enabled: Scalars['Boolean'];
|
|
12939
|
+
isCrossProject: Scalars['Boolean'];
|
|
12940
|
+
};
|
|
12941
|
+
export declare type RoadmapFeatureTogglePayload = Payload & {
|
|
12942
|
+
__typename?: 'RoadmapFeatureTogglePayload';
|
|
12943
|
+
success: Scalars['Boolean'];
|
|
12944
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12945
|
+
output?: Maybe<RoadmapFeatureToggleOutput>;
|
|
12946
|
+
};
|
|
12808
12947
|
export declare type RoadmapItem = {
|
|
12809
12948
|
__typename?: 'RoadmapItem';
|
|
12810
12949
|
id: Scalars['ID'];
|
|
@@ -12877,6 +13016,11 @@ export declare type RoadmapMetadata = {
|
|
|
12877
13016
|
hasExceededIssueLimit: Scalars['Boolean'];
|
|
12878
13017
|
corruptedIssueCount: Scalars['Int'];
|
|
12879
13018
|
};
|
|
13019
|
+
export declare type RoadmapMutationErrorExtension = MutationErrorExtension & {
|
|
13020
|
+
__typename?: 'RoadmapMutationErrorExtension';
|
|
13021
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
13022
|
+
errorType?: Maybe<Scalars['String']>;
|
|
13023
|
+
};
|
|
12880
13024
|
export declare enum RoadmapPaletteColor {
|
|
12881
13025
|
Purple = "PURPLE",
|
|
12882
13026
|
Blue = "BLUE",
|
|
@@ -12991,6 +13135,13 @@ export declare type RoadmapViewSettings = {
|
|
|
12991
13135
|
period: Scalars['Int'];
|
|
12992
13136
|
showCompleted: Scalars['Boolean'];
|
|
12993
13137
|
};
|
|
13138
|
+
export declare type RoadmapsMutation = {
|
|
13139
|
+
__typename?: 'RoadmapsMutation';
|
|
13140
|
+
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
13141
|
+
};
|
|
13142
|
+
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13143
|
+
input?: Maybe<RoadmapFeatureToggleInput>;
|
|
13144
|
+
};
|
|
12994
13145
|
export declare type RoadmapsQuery = {
|
|
12995
13146
|
__typename?: 'RoadmapsQuery';
|
|
12996
13147
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
@@ -13024,20 +13175,54 @@ export declare enum Scope {
|
|
|
13024
13175
|
ReadCompassMetric = "READ_COMPASS_METRIC",
|
|
13025
13176
|
WriteCompassMetric = "WRITE_COMPASS_METRIC",
|
|
13026
13177
|
ConfluenceAtlassianExternal = "CONFLUENCE_ATLASSIAN_EXTERNAL",
|
|
13027
|
-
|
|
13028
|
-
|
|
13029
|
-
|
|
13030
|
-
|
|
13178
|
+
ReadConfluenceContentAnalytics = "READ_CONFLUENCE_CONTENT_ANALYTICS",
|
|
13179
|
+
ReadConfluenceAuditLog = "READ_CONFLUENCE_AUDIT_LOG",
|
|
13180
|
+
WriteConfluenceAuditLog = "WRITE_CONFLUENCE_AUDIT_LOG",
|
|
13181
|
+
ReadConfluenceConfiguration = "READ_CONFLUENCE_CONFIGURATION",
|
|
13182
|
+
WriteConfluenceConfiguration = "WRITE_CONFLUENCE_CONFIGURATION",
|
|
13183
|
+
ReadConfluencePage = "READ_CONFLUENCE_PAGE",
|
|
13184
|
+
WriteConfluencePage = "WRITE_CONFLUENCE_PAGE",
|
|
13185
|
+
DeleteConfluencePage = "DELETE_CONFLUENCE_PAGE",
|
|
13186
|
+
ReadConfluenceBlogpost = "READ_CONFLUENCE_BLOGPOST",
|
|
13187
|
+
WriteConfluenceBlogpost = "WRITE_CONFLUENCE_BLOGPOST",
|
|
13188
|
+
DeleteConfluenceBlogpost = "DELETE_CONFLUENCE_BLOGPOST",
|
|
13189
|
+
ReadConfluenceCustomContent = "READ_CONFLUENCE_CUSTOM_CONTENT",
|
|
13190
|
+
WriteConfluenceCustomContent = "WRITE_CONFLUENCE_CUSTOM_CONTENT",
|
|
13191
|
+
DeleteConfluenceCustomContent = "DELETE_CONFLUENCE_CUSTOM_CONTENT",
|
|
13192
|
+
ReadConfluenceAttachment = "READ_CONFLUENCE_ATTACHMENT",
|
|
13193
|
+
WriteConfluenceAttachment = "WRITE_CONFLUENCE_ATTACHMENT",
|
|
13194
|
+
DeleteConfluenceAttachment = "DELETE_CONFLUENCE_ATTACHMENT",
|
|
13195
|
+
ReadConfluenceComment = "READ_CONFLUENCE_COMMENT",
|
|
13196
|
+
WriteConfluenceComment = "WRITE_CONFLUENCE_COMMENT",
|
|
13197
|
+
DeleteConfluenceComment = "DELETE_CONFLUENCE_COMMENT",
|
|
13198
|
+
ReadConfluenceTemplate = "READ_CONFLUENCE_TEMPLATE",
|
|
13199
|
+
WriteConfluenceTemplate = "WRITE_CONFLUENCE_TEMPLATE",
|
|
13200
|
+
ReadConfluenceLabel = "READ_CONFLUENCE_LABEL",
|
|
13201
|
+
WriteConfluenceLabel = "WRITE_CONFLUENCE_LABEL",
|
|
13202
|
+
ReadConfluenceContentPermission = "READ_CONFLUENCE_CONTENT_PERMISSION",
|
|
13203
|
+
ReadConfluenceContentProperty = "READ_CONFLUENCE_CONTENT_PROPERTY",
|
|
13204
|
+
WriteConfluenceContentProperty = "WRITE_CONFLUENCE_CONTENT_PROPERTY",
|
|
13205
|
+
ReadConfluenceContentRestriction = "READ_CONFLUENCE_CONTENT_RESTRICTION",
|
|
13206
|
+
WriteConfluenceContentRestriction = "WRITE_CONFLUENCE_CONTENT_RESTRICTION",
|
|
13207
|
+
ReadConfluenceContentMetadata = "READ_CONFLUENCE_CONTENT_METADATA",
|
|
13208
|
+
ReadConfluenceWatcher = "READ_CONFLUENCE_WATCHER",
|
|
13209
|
+
WriteConfluenceWatcher = "WRITE_CONFLUENCE_WATCHER",
|
|
13210
|
+
ReadConfluenceGroup = "READ_CONFLUENCE_GROUP",
|
|
13211
|
+
WriteConfluenceGroup = "WRITE_CONFLUENCE_GROUP",
|
|
13212
|
+
ReadConfluenceInlineTask = "READ_CONFLUENCE_INLINE_TASK",
|
|
13213
|
+
WriteConfluenceInlineTask = "WRITE_CONFLUENCE_INLINE_TASK",
|
|
13214
|
+
ReadConfluenceRelation = "READ_CONFLUENCE_RELATION",
|
|
13215
|
+
WriteConfluenceRelation = "WRITE_CONFLUENCE_RELATION",
|
|
13216
|
+
ReadConfluenceSpace = "READ_CONFLUENCE_SPACE",
|
|
13031
13217
|
WriteConfluenceSpace = "WRITE_CONFLUENCE_SPACE",
|
|
13032
|
-
|
|
13033
|
-
|
|
13034
|
-
|
|
13035
|
-
|
|
13036
|
-
|
|
13037
|
-
|
|
13038
|
-
|
|
13218
|
+
DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
|
|
13219
|
+
ReadConfluenceSpacePermission = "READ_CONFLUENCE_SPACE_PERMISSION",
|
|
13220
|
+
WriteConfluenceSpacePermission = "WRITE_CONFLUENCE_SPACE_PERMISSION",
|
|
13221
|
+
ReadConfluenceSpaceProperty = "READ_CONFLUENCE_SPACE_PROPERTY",
|
|
13222
|
+
WriteConfluenceSpaceProperty = "WRITE_CONFLUENCE_SPACE_PROPERTY",
|
|
13223
|
+
ReadConfluenceSpaceSetting = "READ_CONFLUENCE_SPACE_SETTING",
|
|
13224
|
+
WriteConfluenceSpaceSetting = "WRITE_CONFLUENCE_SPACE_SETTING",
|
|
13039
13225
|
ReadConfluenceUser = "READ_CONFLUENCE_USER",
|
|
13040
|
-
ReadConfluenceContentPermission = "READ_CONFLUENCE_CONTENT_PERMISSION",
|
|
13041
13226
|
ManageApp = "MANAGE_APP",
|
|
13042
13227
|
StorageApp = "STORAGE_APP",
|
|
13043
13228
|
ReadJiraUser = "READ_JIRA_USER",
|
|
@@ -13883,7 +14068,12 @@ export declare type SupportRequestUser = {
|
|
|
13883
14068
|
username?: Maybe<Scalars['String']>;
|
|
13884
14069
|
email?: Maybe<Scalars['String']>;
|
|
13885
14070
|
displayName?: Maybe<Scalars['String']>;
|
|
14071
|
+
userType?: Maybe<SupportRequestUserType>;
|
|
13886
14072
|
};
|
|
14073
|
+
export declare enum SupportRequestUserType {
|
|
14074
|
+
Customer = "CUSTOMER",
|
|
14075
|
+
Partner = "PARTNER"
|
|
14076
|
+
}
|
|
13887
14077
|
export declare type SupportRequestUsers = {
|
|
13888
14078
|
__typename?: 'SupportRequestUsers';
|
|
13889
14079
|
searchUsers: Array<SupportRequestUser>;
|
|
@@ -14162,6 +14352,10 @@ export declare type TownsquareQueryApiGoalSearchArgs = {
|
|
|
14162
14352
|
q?: Maybe<Scalars['String']>;
|
|
14163
14353
|
sort?: Maybe<Array<Maybe<TownsquareGoalSortEnum>>>;
|
|
14164
14354
|
};
|
|
14355
|
+
export declare type TransitionFilter = {
|
|
14356
|
+
from: Scalars['String'];
|
|
14357
|
+
to: Scalars['String'];
|
|
14358
|
+
};
|
|
14165
14359
|
export declare type TunnelDefinitionsInput = {
|
|
14166
14360
|
faasTunnelUrl?: Maybe<Scalars['URL']>;
|
|
14167
14361
|
customUI?: Maybe<Array<Maybe<CustomUiTunnelDefinitionInput>>>;
|
|
@@ -14324,6 +14518,7 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
14324
14518
|
ownerId?: Maybe<Scalars['ID']>;
|
|
14325
14519
|
componentType?: Maybe<CompassComponentType>;
|
|
14326
14520
|
importance?: Maybe<CompassScorecardImportance>;
|
|
14521
|
+
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
14327
14522
|
};
|
|
14328
14523
|
export declare type UpdateCompassScorecardPayload = Payload & {
|
|
14329
14524
|
__typename?: 'UpdateCompassScorecardPayload';
|