@forge/cli-shared 2.2.0-next.20 → 2.2.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,71 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.2.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [813f8f3]
|
|
8
|
+
- Updated dependencies [5152239]
|
|
9
|
+
- @forge/manifest@3.1.0-next.0
|
|
10
|
+
|
|
11
|
+
## 2.2.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- b63af27: Refactor templates code to be more generic in order to ease implementing other templating methods
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 1dba082: Handle the manifest case of remotes found in the egress permissions section when installing an app
|
|
20
|
+
- Updated dependencies [bd6e025]
|
|
21
|
+
- Updated dependencies [1c196ff]
|
|
22
|
+
- Updated dependencies [271b98a]
|
|
23
|
+
- Updated dependencies [4cfa56d]
|
|
24
|
+
- Updated dependencies [22a488e]
|
|
25
|
+
- Updated dependencies [218fe20]
|
|
26
|
+
- Updated dependencies [2bca1c0]
|
|
27
|
+
- Updated dependencies [689c09b]
|
|
28
|
+
- Updated dependencies [b97660c]
|
|
29
|
+
- Updated dependencies [7c0d2ee]
|
|
30
|
+
- Updated dependencies [1dba082]
|
|
31
|
+
- Updated dependencies [d3afe01]
|
|
32
|
+
- Updated dependencies [dfe9dd8]
|
|
33
|
+
- Updated dependencies [91ea057]
|
|
34
|
+
- Updated dependencies [3010f0e]
|
|
35
|
+
- Updated dependencies [2b7c32b]
|
|
36
|
+
- Updated dependencies [e7ee3a7]
|
|
37
|
+
- Updated dependencies [92d081d]
|
|
38
|
+
- Updated dependencies [d3c8c8d]
|
|
39
|
+
- Updated dependencies [fca240d]
|
|
40
|
+
- Updated dependencies [36c7c8f]
|
|
41
|
+
- Updated dependencies [d2f6992]
|
|
42
|
+
- Updated dependencies [d18c9f1]
|
|
43
|
+
- Updated dependencies [1dba082]
|
|
44
|
+
- Updated dependencies [fa963b1]
|
|
45
|
+
- Updated dependencies [0a7725f]
|
|
46
|
+
- Updated dependencies [1dba082]
|
|
47
|
+
- Updated dependencies [e4a14c7]
|
|
48
|
+
- Updated dependencies [2bb89c5]
|
|
49
|
+
- Updated dependencies [5875eb3]
|
|
50
|
+
- Updated dependencies [0a39c43]
|
|
51
|
+
- @forge/manifest@3.0.0
|
|
52
|
+
|
|
53
|
+
## 2.2.0-next.22
|
|
54
|
+
|
|
55
|
+
### Patch Changes
|
|
56
|
+
|
|
57
|
+
- Updated dependencies [4cfa56d]
|
|
58
|
+
- Updated dependencies [fca240d]
|
|
59
|
+
- @forge/manifest@3.0.0-next.21
|
|
60
|
+
|
|
61
|
+
## 2.2.0-next.21
|
|
62
|
+
|
|
63
|
+
### Patch Changes
|
|
64
|
+
|
|
65
|
+
- Updated dependencies [271b98a]
|
|
66
|
+
- Updated dependencies [2bca1c0]
|
|
67
|
+
- @forge/manifest@2.6.0-next.20
|
|
68
|
+
|
|
3
69
|
## 2.2.0-next.20
|
|
4
70
|
|
|
5
71
|
### Patch Changes
|
|
@@ -454,6 +454,7 @@ export declare type AppEnvironmentVersion = {
|
|
|
454
454
|
requiresLicense: Scalars['Boolean'];
|
|
455
455
|
permissions: Array<AppPermission>;
|
|
456
456
|
migrationKeys?: Maybe<MigrationKeys>;
|
|
457
|
+
storage: Storage;
|
|
457
458
|
};
|
|
458
459
|
export declare type AppEnvironmentVersionConnection = {
|
|
459
460
|
__typename?: 'AppEnvironmentVersionConnection';
|
|
@@ -807,6 +808,7 @@ export declare type AppUnsubscribePayload = Payload & {
|
|
|
807
808
|
export declare type AppUser = User & {
|
|
808
809
|
__typename?: 'AppUser';
|
|
809
810
|
accountId: Scalars['ID'];
|
|
811
|
+
canonicalAccountId: Scalars['ID'];
|
|
810
812
|
accountStatus: AccountStatus;
|
|
811
813
|
name: Scalars['String'];
|
|
812
814
|
picture: Scalars['URL'];
|
|
@@ -866,6 +868,7 @@ export declare type AssignIssueParentOutput = MutationResponse & {
|
|
|
866
868
|
export declare type AtlassianAccountUser = User & LocalizationContext & {
|
|
867
869
|
__typename?: 'AtlassianAccountUser';
|
|
868
870
|
accountId: Scalars['ID'];
|
|
871
|
+
canonicalAccountId: Scalars['ID'];
|
|
869
872
|
accountStatus: AccountStatus;
|
|
870
873
|
name: Scalars['String'];
|
|
871
874
|
picture: Scalars['URL'];
|
|
@@ -1346,6 +1349,11 @@ export declare type ChildCardsMetadata = {
|
|
|
1346
1349
|
complete?: Maybe<Scalars['Int']>;
|
|
1347
1350
|
total?: Maybe<Scalars['Int']>;
|
|
1348
1351
|
};
|
|
1352
|
+
export declare enum Classification {
|
|
1353
|
+
Ugc = "ugc",
|
|
1354
|
+
Pii = "pii",
|
|
1355
|
+
Other = "other"
|
|
1356
|
+
}
|
|
1349
1357
|
export declare type CloudAppScope = {
|
|
1350
1358
|
__typename?: 'CloudAppScope';
|
|
1351
1359
|
id: Scalars['ID'];
|
|
@@ -1430,6 +1438,16 @@ export declare type CompassAcknowledgeAnnouncementPayload = Payload & {
|
|
|
1430
1438
|
success: Scalars['Boolean'];
|
|
1431
1439
|
errors?: Maybe<Array<MutationError>>;
|
|
1432
1440
|
};
|
|
1441
|
+
export declare type CompassAlertEvent = CompassEvent & {
|
|
1442
|
+
__typename?: 'CompassAlertEvent';
|
|
1443
|
+
eventType: CompassEventType;
|
|
1444
|
+
displayName: Scalars['String'];
|
|
1445
|
+
lastUpdated: Scalars['DateTime'];
|
|
1446
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1447
|
+
alertId: Scalars['ID'];
|
|
1448
|
+
description?: Maybe<Scalars['String']>;
|
|
1449
|
+
url?: Maybe<Scalars['URL']>;
|
|
1450
|
+
};
|
|
1433
1451
|
export declare type CompassAnnouncement = {
|
|
1434
1452
|
__typename?: 'CompassAnnouncement';
|
|
1435
1453
|
id: Scalars['ID'];
|
|
@@ -1477,6 +1495,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1477
1495
|
createEventSource?: Maybe<CreateEventSourcePayload>;
|
|
1478
1496
|
deleteEventSource?: Maybe<DeleteEventSourcePayload>;
|
|
1479
1497
|
createDeploymentEvent?: Maybe<CreateDeploymentEventsPayload>;
|
|
1498
|
+
createCompassEvent?: Maybe<CompassCreateEventsPayload>;
|
|
1480
1499
|
attachEventSource?: Maybe<AttachEventSourcePayload>;
|
|
1481
1500
|
detachEventSource?: Maybe<DetachEventSourcePayload>;
|
|
1482
1501
|
createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
|
|
@@ -1592,6 +1611,9 @@ export declare type CompassCatalogMutationApiDeleteEventSourceArgs = {
|
|
|
1592
1611
|
export declare type CompassCatalogMutationApiCreateDeploymentEventArgs = {
|
|
1593
1612
|
input: CreateDeploymentEventInput;
|
|
1594
1613
|
};
|
|
1614
|
+
export declare type CompassCatalogMutationApiCreateCompassEventArgs = {
|
|
1615
|
+
input: CompassEventInput;
|
|
1616
|
+
};
|
|
1595
1617
|
export declare type CompassCatalogMutationApiAttachEventSourceArgs = {
|
|
1596
1618
|
input: AttachEventSourceInput;
|
|
1597
1619
|
};
|
|
@@ -1646,6 +1668,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1646
1668
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
1647
1669
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1648
1670
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1671
|
+
builtinMetricDefinitions: Array<CompassMetricDefinition>;
|
|
1649
1672
|
};
|
|
1650
1673
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
1651
1674
|
id: Scalars['ID'];
|
|
@@ -1763,6 +1786,17 @@ export declare enum CompassComponentType {
|
|
|
1763
1786
|
Service = "SERVICE",
|
|
1764
1787
|
Other = "OTHER"
|
|
1765
1788
|
}
|
|
1789
|
+
export declare type CompassCreateAlertEventInput = {
|
|
1790
|
+
cloudId: Scalars['ID'];
|
|
1791
|
+
eventType: CompassEventType;
|
|
1792
|
+
displayName: Scalars['String'];
|
|
1793
|
+
lastUpdated: Scalars['DateTime'];
|
|
1794
|
+
alertId: Scalars['ID'];
|
|
1795
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1796
|
+
description?: Maybe<Scalars['String']>;
|
|
1797
|
+
url?: Maybe<Scalars['URL']>;
|
|
1798
|
+
externalEventSourceId: Scalars['ID'];
|
|
1799
|
+
};
|
|
1766
1800
|
export declare type CompassCreateAnnouncementInput = {
|
|
1767
1801
|
componentId: Scalars['ID'];
|
|
1768
1802
|
title: Scalars['String'];
|
|
@@ -1775,6 +1809,72 @@ export declare type CompassCreateAnnouncementPayload = Payload & {
|
|
|
1775
1809
|
success: Scalars['Boolean'];
|
|
1776
1810
|
errors?: Maybe<Array<MutationError>>;
|
|
1777
1811
|
};
|
|
1812
|
+
export declare type CompassCreateCustomEventInput = {
|
|
1813
|
+
cloudId: Scalars['ID'];
|
|
1814
|
+
eventType: CompassEventType;
|
|
1815
|
+
displayName: Scalars['String'];
|
|
1816
|
+
lastUpdated: Scalars['DateTime'];
|
|
1817
|
+
customEventId: Scalars['ID'];
|
|
1818
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1819
|
+
description?: Maybe<Scalars['String']>;
|
|
1820
|
+
url?: Maybe<Scalars['URL']>;
|
|
1821
|
+
icon?: Maybe<CompassCustomEventIcon>;
|
|
1822
|
+
externalEventSourceId: Scalars['ID'];
|
|
1823
|
+
};
|
|
1824
|
+
export declare type CompassCreateDeploymentEventInput = {
|
|
1825
|
+
cloudId: Scalars['ID'];
|
|
1826
|
+
deploymentSequenceNumber: Scalars['Long'];
|
|
1827
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1828
|
+
displayName: Scalars['String'];
|
|
1829
|
+
url: Scalars['URL'];
|
|
1830
|
+
description: Scalars['String'];
|
|
1831
|
+
state: CompassDeploymentEventState;
|
|
1832
|
+
lastUpdated: Scalars['DateTime'];
|
|
1833
|
+
pipeline: CompassDeploymentEventPipelineInput;
|
|
1834
|
+
environment: CompassDeploymentEventEnvironmentInput;
|
|
1835
|
+
externalEventSourceId: Scalars['ID'];
|
|
1836
|
+
};
|
|
1837
|
+
export declare type CompassCreateEventsPayload = Payload & {
|
|
1838
|
+
__typename?: 'CompassCreateEventsPayload';
|
|
1839
|
+
success: Scalars['Boolean'];
|
|
1840
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1841
|
+
};
|
|
1842
|
+
export declare type CompassCreateFlagEventInput = {
|
|
1843
|
+
cloudId: Scalars['ID'];
|
|
1844
|
+
eventType: CompassEventType;
|
|
1845
|
+
displayName: Scalars['String'];
|
|
1846
|
+
lastUpdated: Scalars['DateTime'];
|
|
1847
|
+
flagId: Scalars['ID'];
|
|
1848
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1849
|
+
description?: Maybe<Scalars['String']>;
|
|
1850
|
+
url?: Maybe<Scalars['URL']>;
|
|
1851
|
+
status?: Maybe<Scalars['String']>;
|
|
1852
|
+
externalEventSourceId: Scalars['ID'];
|
|
1853
|
+
};
|
|
1854
|
+
export declare type CompassCreateIncidentEventInput = {
|
|
1855
|
+
cloudId: Scalars['ID'];
|
|
1856
|
+
eventType: CompassEventType;
|
|
1857
|
+
displayName: Scalars['String'];
|
|
1858
|
+
lastUpdated: Scalars['DateTime'];
|
|
1859
|
+
incidentId: Scalars['ID'];
|
|
1860
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1861
|
+
description?: Maybe<Scalars['String']>;
|
|
1862
|
+
url?: Maybe<Scalars['URL']>;
|
|
1863
|
+
state?: Maybe<CompassIncidentEventState>;
|
|
1864
|
+
externalEventSourceId: Scalars['ID'];
|
|
1865
|
+
};
|
|
1866
|
+
export declare type CompassCreateLifecycleEventInput = {
|
|
1867
|
+
cloudId: Scalars['ID'];
|
|
1868
|
+
eventType: CompassEventType;
|
|
1869
|
+
displayName: Scalars['String'];
|
|
1870
|
+
lastUpdated: Scalars['DateTime'];
|
|
1871
|
+
lifecycle: Scalars['ID'];
|
|
1872
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1873
|
+
description?: Maybe<Scalars['String']>;
|
|
1874
|
+
url?: Maybe<Scalars['URL']>;
|
|
1875
|
+
stage?: Maybe<CompassLifecycleEventStage>;
|
|
1876
|
+
externalEventSourceId: Scalars['ID'];
|
|
1877
|
+
};
|
|
1778
1878
|
export declare type CompassCreateMetricDefinitionInput = {
|
|
1779
1879
|
cloudId: Scalars['ID'];
|
|
1780
1880
|
name: Scalars['String'];
|
|
@@ -1825,6 +1925,22 @@ export declare enum CompassCriteriaNumberComparatorOptions {
|
|
|
1825
1925
|
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
1826
1926
|
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO"
|
|
1827
1927
|
}
|
|
1928
|
+
export declare type CompassCustomEvent = CompassEvent & {
|
|
1929
|
+
__typename?: 'CompassCustomEvent';
|
|
1930
|
+
eventType: CompassEventType;
|
|
1931
|
+
displayName: Scalars['String'];
|
|
1932
|
+
lastUpdated: Scalars['DateTime'];
|
|
1933
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1934
|
+
customEventId: Scalars['ID'];
|
|
1935
|
+
description?: Maybe<Scalars['String']>;
|
|
1936
|
+
url?: Maybe<Scalars['URL']>;
|
|
1937
|
+
icon?: Maybe<CompassCustomEventIcon>;
|
|
1938
|
+
};
|
|
1939
|
+
export declare enum CompassCustomEventIcon {
|
|
1940
|
+
Info = "INFO",
|
|
1941
|
+
Warning = "WARNING",
|
|
1942
|
+
Checkpoint = "CHECKPOINT"
|
|
1943
|
+
}
|
|
1828
1944
|
export declare type CompassDeleteAnnouncementInput = {
|
|
1829
1945
|
cloudId: Scalars['ID'];
|
|
1830
1946
|
id: Scalars['ID'];
|
|
@@ -1872,7 +1988,7 @@ export declare type CompassDeploymentEvent = CompassEvent & {
|
|
|
1872
1988
|
lastUpdated: Scalars['DateTime'];
|
|
1873
1989
|
displayName: Scalars['String'];
|
|
1874
1990
|
deploymentSequenceNumber?: Maybe<Scalars['Long']>;
|
|
1875
|
-
updateSequenceNumber
|
|
1991
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1876
1992
|
url?: Maybe<Scalars['URL']>;
|
|
1877
1993
|
description?: Maybe<Scalars['String']>;
|
|
1878
1994
|
state?: Maybe<CompassDeploymentEventState>;
|
|
@@ -1934,6 +2050,7 @@ export declare type CompassEvent = {
|
|
|
1934
2050
|
eventType: CompassEventType;
|
|
1935
2051
|
displayName: Scalars['String'];
|
|
1936
2052
|
lastUpdated: Scalars['DateTime'];
|
|
2053
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1937
2054
|
description?: Maybe<Scalars['String']>;
|
|
1938
2055
|
url?: Maybe<Scalars['URL']>;
|
|
1939
2056
|
};
|
|
@@ -1948,12 +2065,25 @@ export declare type CompassEventEdge = {
|
|
|
1948
2065
|
cursor: Scalars['String'];
|
|
1949
2066
|
node?: Maybe<CompassEvent>;
|
|
1950
2067
|
};
|
|
2068
|
+
export declare type CompassEventInput = {
|
|
2069
|
+
deployment?: Maybe<CompassCreateDeploymentEventInput>;
|
|
2070
|
+
incident?: Maybe<CompassCreateIncidentEventInput>;
|
|
2071
|
+
flag?: Maybe<CompassCreateFlagEventInput>;
|
|
2072
|
+
alert?: Maybe<CompassCreateAlertEventInput>;
|
|
2073
|
+
lifecycle?: Maybe<CompassCreateLifecycleEventInput>;
|
|
2074
|
+
custom?: Maybe<CompassCreateCustomEventInput>;
|
|
2075
|
+
};
|
|
1951
2076
|
export declare type CompassEventTimeParameters = {
|
|
1952
2077
|
startFrom?: Maybe<Scalars['DateTime']>;
|
|
1953
2078
|
endAt?: Maybe<Scalars['DateTime']>;
|
|
1954
2079
|
};
|
|
1955
2080
|
export declare enum CompassEventType {
|
|
1956
|
-
Deployment = "DEPLOYMENT"
|
|
2081
|
+
Deployment = "DEPLOYMENT",
|
|
2082
|
+
Incident = "INCIDENT",
|
|
2083
|
+
Flag = "FLAG",
|
|
2084
|
+
Alert = "ALERT",
|
|
2085
|
+
Lifecycle = "LIFECYCLE",
|
|
2086
|
+
Custom = "CUSTOM"
|
|
1957
2087
|
}
|
|
1958
2088
|
export declare type CompassEventsQuery = {
|
|
1959
2089
|
eventTypes?: Maybe<Array<CompassEventType>>;
|
|
@@ -1997,6 +2127,17 @@ export declare enum CompassFieldType {
|
|
|
1997
2127
|
export declare type CompassFieldValueInput = {
|
|
1998
2128
|
enum?: Maybe<CompassEnumFieldValueInput>;
|
|
1999
2129
|
};
|
|
2130
|
+
export declare type CompassFlagEvent = CompassEvent & {
|
|
2131
|
+
__typename?: 'CompassFlagEvent';
|
|
2132
|
+
eventType: CompassEventType;
|
|
2133
|
+
displayName: Scalars['String'];
|
|
2134
|
+
lastUpdated: Scalars['DateTime'];
|
|
2135
|
+
updateSequenceNumber: Scalars['Long'];
|
|
2136
|
+
flagId: Scalars['ID'];
|
|
2137
|
+
description?: Maybe<Scalars['String']>;
|
|
2138
|
+
url?: Maybe<Scalars['URL']>;
|
|
2139
|
+
status?: Maybe<Scalars['String']>;
|
|
2140
|
+
};
|
|
2000
2141
|
export declare type CompassHasDescriptionScorecardCriteria = CompassScorecardCriteria & {
|
|
2001
2142
|
__typename?: 'CompassHasDescriptionScorecardCriteria';
|
|
2002
2143
|
id: Scalars['ID'];
|
|
@@ -2048,6 +2189,23 @@ export declare type CompassHasOwnerScorecardCriteria = CompassScorecardCriteria
|
|
|
2048
2189
|
export declare type CompassHasOwnerScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
2049
2190
|
query?: Maybe<CompassScorecardCriteriaScoreQuery>;
|
|
2050
2191
|
};
|
|
2192
|
+
export declare type CompassIncidentEvent = CompassEvent & {
|
|
2193
|
+
__typename?: 'CompassIncidentEvent';
|
|
2194
|
+
eventType: CompassEventType;
|
|
2195
|
+
displayName: Scalars['String'];
|
|
2196
|
+
lastUpdated: Scalars['DateTime'];
|
|
2197
|
+
updateSequenceNumber: Scalars['Long'];
|
|
2198
|
+
incidentId: Scalars['ID'];
|
|
2199
|
+
description?: Maybe<Scalars['String']>;
|
|
2200
|
+
url?: Maybe<Scalars['URL']>;
|
|
2201
|
+
state?: Maybe<CompassIncidentEventState>;
|
|
2202
|
+
};
|
|
2203
|
+
export declare enum CompassIncidentEventState {
|
|
2204
|
+
Open = "OPEN",
|
|
2205
|
+
Resolved = "RESOLVED",
|
|
2206
|
+
Closed = "CLOSED",
|
|
2207
|
+
Deleted = "DELETED"
|
|
2208
|
+
}
|
|
2051
2209
|
export declare type CompassInsertMetricValueInput = {
|
|
2052
2210
|
metricSourceId: Scalars['ID'];
|
|
2053
2211
|
value: CompassMetricValueInput;
|
|
@@ -2058,6 +2216,23 @@ export declare type CompassInsertMetricValuePayload = Payload & {
|
|
|
2058
2216
|
errors?: Maybe<Array<MutationError>>;
|
|
2059
2217
|
metricSource?: Maybe<CompassMetricSource>;
|
|
2060
2218
|
};
|
|
2219
|
+
export declare type CompassLifecycleEvent = CompassEvent & {
|
|
2220
|
+
__typename?: 'CompassLifecycleEvent';
|
|
2221
|
+
eventType: CompassEventType;
|
|
2222
|
+
displayName: Scalars['String'];
|
|
2223
|
+
lastUpdated: Scalars['DateTime'];
|
|
2224
|
+
updateSequenceNumber: Scalars['Long'];
|
|
2225
|
+
lifecycleId: Scalars['ID'];
|
|
2226
|
+
stage?: Maybe<CompassLifecycleEventStage>;
|
|
2227
|
+
description?: Maybe<Scalars['String']>;
|
|
2228
|
+
url?: Maybe<Scalars['URL']>;
|
|
2229
|
+
};
|
|
2230
|
+
export declare enum CompassLifecycleEventStage {
|
|
2231
|
+
PreRelease = "PRE_RELEASE",
|
|
2232
|
+
Production = "PRODUCTION",
|
|
2233
|
+
Deprecation = "DEPRECATION",
|
|
2234
|
+
EndOfLife = "END_OF_LIFE"
|
|
2235
|
+
}
|
|
2061
2236
|
export declare type CompassLink = {
|
|
2062
2237
|
__typename?: 'CompassLink';
|
|
2063
2238
|
id: Scalars['ID'];
|
|
@@ -2986,6 +3161,7 @@ export declare type ContentPlatformReleaseNote = {
|
|
|
2986
3161
|
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
2987
3162
|
publishStatus?: Maybe<Scalars['String']>;
|
|
2988
3163
|
benefitsList?: Maybe<Scalars['JSON']>;
|
|
3164
|
+
getStarted?: Maybe<Scalars['JSON']>;
|
|
2989
3165
|
};
|
|
2990
3166
|
export declare type ContentPlatformReleaseNoteEntry = {
|
|
2991
3167
|
__typename?: 'ContentPlatformReleaseNoteEntry';
|
|
@@ -3014,6 +3190,7 @@ export declare type ContentPlatformReleaseNoteEntry = {
|
|
|
3014
3190
|
updatedAt: Scalars['String'];
|
|
3015
3191
|
url: Scalars['String'];
|
|
3016
3192
|
benefitsList: Scalars['JSON'];
|
|
3193
|
+
getStarted: Scalars['JSON'];
|
|
3017
3194
|
};
|
|
3018
3195
|
export declare type ContentPlatformReleaseNoteFilterOptions = {
|
|
3019
3196
|
fdIssueLinks?: Maybe<Array<Scalars['String']>>;
|
|
@@ -3630,6 +3807,7 @@ export declare type CustomUiTunnelDefinitionInput = {
|
|
|
3630
3807
|
export declare type CustomerUser = User & LocalizationContext & {
|
|
3631
3808
|
__typename?: 'CustomerUser';
|
|
3632
3809
|
accountId: Scalars['ID'];
|
|
3810
|
+
canonicalAccountId: Scalars['ID'];
|
|
3633
3811
|
accountStatus: AccountStatus;
|
|
3634
3812
|
name: Scalars['String'];
|
|
3635
3813
|
picture: Scalars['URL'];
|
|
@@ -4481,6 +4659,7 @@ export declare type DevOpsToolContainer = Node & {
|
|
|
4481
4659
|
displayName: Scalars['String'];
|
|
4482
4660
|
productKey: Scalars['String'];
|
|
4483
4661
|
url: Scalars['String'];
|
|
4662
|
+
underlyingId: Scalars['String'];
|
|
4484
4663
|
};
|
|
4485
4664
|
export declare type DevOpsToolContainerConnection = {
|
|
4486
4665
|
__typename?: 'DevOpsToolContainerConnection';
|
|
@@ -4514,6 +4693,7 @@ export declare type DevOpsToolNamespace = Node & {
|
|
|
4514
4693
|
displayName: Scalars['String'];
|
|
4515
4694
|
productKey: Scalars['String'];
|
|
4516
4695
|
canCreateContainer: Scalars['Boolean'];
|
|
4696
|
+
underlyingId: Scalars['String'];
|
|
4517
4697
|
containers?: Maybe<DevOpsToolContainerConnection>;
|
|
4518
4698
|
};
|
|
4519
4699
|
export declare type DevOpsToolNamespaceContainersArgs = {
|
|
@@ -4684,8 +4864,10 @@ export declare type EstimationBoardFeatureView = Node & {
|
|
|
4684
4864
|
id: Scalars['ID'];
|
|
4685
4865
|
title?: Maybe<Scalars['String']>;
|
|
4686
4866
|
description?: Maybe<Scalars['String']>;
|
|
4687
|
-
|
|
4867
|
+
status?: Maybe<Scalars['String']>;
|
|
4688
4868
|
canEnable?: Maybe<Scalars['Boolean']>;
|
|
4869
|
+
learnMoreLink?: Maybe<Scalars['String']>;
|
|
4870
|
+
imageUri?: Maybe<Scalars['String']>;
|
|
4689
4871
|
permissibleEstimationTypes?: Maybe<Array<Maybe<PermissibleEstimationType>>>;
|
|
4690
4872
|
selectedEstimationType?: Maybe<PermissibleEstimationType>;
|
|
4691
4873
|
};
|
|
@@ -4700,9 +4882,12 @@ export declare enum EventKnownAvIs {
|
|
|
4700
4882
|
AviBitbucketPrCreated = "AVI_BITBUCKET_PR_CREATED"
|
|
4701
4883
|
}
|
|
4702
4884
|
export declare enum EventMatchingStrategies {
|
|
4885
|
+
JiraByCloud = "JIRA_BY_CLOUD",
|
|
4703
4886
|
JiraByProject = "JIRA_BY_PROJECT",
|
|
4704
4887
|
JiraByIssue = "JIRA_BY_ISSUE",
|
|
4705
|
-
BitbucketByRepo = "BITBUCKET_BY_REPO"
|
|
4888
|
+
BitbucketByRepo = "BITBUCKET_BY_REPO",
|
|
4889
|
+
ByAccount = "BY_ACCOUNT",
|
|
4890
|
+
JiraByCloudByProjectTypeByAccount = "JIRA_BY_CLOUD_BY_PROJECT_TYPE_BY_ACCOUNT"
|
|
4706
4891
|
}
|
|
4707
4892
|
export declare type EventSource = {
|
|
4708
4893
|
__typename?: 'EventSource';
|
|
@@ -4775,6 +4960,7 @@ export declare type ForgeMetricsData = {
|
|
|
4775
4960
|
name: Scalars['String'];
|
|
4776
4961
|
type: ForgeMetricsDataType;
|
|
4777
4962
|
series?: Maybe<Array<ForgeMetricsSeries>>;
|
|
4963
|
+
resolution: ForgeMetricsResolution;
|
|
4778
4964
|
};
|
|
4779
4965
|
export declare enum ForgeMetricsDataType {
|
|
4780
4966
|
DateTime = "DATE_TIME",
|
|
@@ -4786,6 +4972,7 @@ export declare type ForgeMetricsErrorsData = ForgeMetricsData & {
|
|
|
4786
4972
|
name: Scalars['String'];
|
|
4787
4973
|
type: ForgeMetricsDataType;
|
|
4788
4974
|
series: Array<ForgeMetricsErrorsSeries>;
|
|
4975
|
+
resolution: ForgeMetricsResolution;
|
|
4789
4976
|
};
|
|
4790
4977
|
export declare type ForgeMetricsErrorsDataPoint = {
|
|
4791
4978
|
__typename?: 'ForgeMetricsErrorsDataPoint';
|
|
@@ -4812,6 +4999,7 @@ export declare type ForgeMetricsInvocationData = ForgeMetricsData & {
|
|
|
4812
4999
|
name: Scalars['String'];
|
|
4813
5000
|
type: ForgeMetricsDataType;
|
|
4814
5001
|
series: Array<ForgeMetricsInvocationSeries>;
|
|
5002
|
+
resolution: ForgeMetricsResolution;
|
|
4815
5003
|
};
|
|
4816
5004
|
export declare type ForgeMetricsInvocationDataPoint = {
|
|
4817
5005
|
__typename?: 'ForgeMetricsInvocationDataPoint';
|
|
@@ -4857,6 +5045,15 @@ export declare type ForgeMetricsQueryInput = {
|
|
|
4857
5045
|
filters: ForgeMetricsQueryFilters;
|
|
4858
5046
|
groupBy?: Maybe<Array<ForgeMetricsGroupByDimensions>>;
|
|
4859
5047
|
};
|
|
5048
|
+
export declare type ForgeMetricsResolution = {
|
|
5049
|
+
__typename?: 'ForgeMetricsResolution';
|
|
5050
|
+
size: Scalars['Int'];
|
|
5051
|
+
units: ForgeMetricsResolutionUnit;
|
|
5052
|
+
};
|
|
5053
|
+
export declare enum ForgeMetricsResolutionUnit {
|
|
5054
|
+
Hours = "HOURS",
|
|
5055
|
+
Minutes = "MINUTES"
|
|
5056
|
+
}
|
|
4860
5057
|
export declare type ForgeMetricsSeries = {
|
|
4861
5058
|
groups: Array<ForgeMetricsLabelGroup>;
|
|
4862
5059
|
};
|
|
@@ -4865,6 +5062,7 @@ export declare type ForgeMetricsSuccessRateData = ForgeMetricsData & {
|
|
|
4865
5062
|
name: Scalars['String'];
|
|
4866
5063
|
type: ForgeMetricsDataType;
|
|
4867
5064
|
series: Array<ForgeMetricsSuccessRateSeries>;
|
|
5065
|
+
resolution: ForgeMetricsResolution;
|
|
4868
5066
|
};
|
|
4869
5067
|
export declare type ForgeMetricsSuccessRateDataPoint = {
|
|
4870
5068
|
__typename?: 'ForgeMetricsSuccessRateDataPoint';
|
|
@@ -4882,6 +5080,7 @@ export declare type ForgeMetricsSuccessRateValueData = ForgeMetricsData & {
|
|
|
4882
5080
|
name: Scalars['String'];
|
|
4883
5081
|
type: ForgeMetricsDataType;
|
|
4884
5082
|
series: Array<ForgeMetricsSuccessRateSeries>;
|
|
5083
|
+
resolution: ForgeMetricsResolution;
|
|
4885
5084
|
};
|
|
4886
5085
|
export declare type ForgeMetricsSuccessRateValueResult = ForgeMetricsSuccessRateValueData | QueryError;
|
|
4887
5086
|
export declare type FunctionDescription = {
|
|
@@ -4933,6 +5132,11 @@ export declare type HostedResourcePreSignedUrl = {
|
|
|
4933
5132
|
uploadUrl: Scalars['String'];
|
|
4934
5133
|
uploadFormData: Scalars['JSON'];
|
|
4935
5134
|
};
|
|
5135
|
+
export declare type HostedStorage = {
|
|
5136
|
+
__typename?: 'HostedStorage';
|
|
5137
|
+
classifications?: Maybe<Array<Classification>>;
|
|
5138
|
+
locations?: Maybe<Array<Scalars['String']>>;
|
|
5139
|
+
};
|
|
4936
5140
|
export declare type Icon = {
|
|
4937
5141
|
__typename?: 'Icon';
|
|
4938
5142
|
url?: Maybe<Scalars['String']>;
|
|
@@ -5014,6 +5218,11 @@ export declare type InvokePolarisObjectPayload = Payload & {
|
|
|
5014
5218
|
errors?: Maybe<Array<MutationError>>;
|
|
5015
5219
|
response?: Maybe<ResolvedPolarisObject>;
|
|
5016
5220
|
};
|
|
5221
|
+
export declare type IssueAndProject = {
|
|
5222
|
+
__typename?: 'IssueAndProject';
|
|
5223
|
+
issueId: Scalars['ID'];
|
|
5224
|
+
projectId: Scalars['ID'];
|
|
5225
|
+
};
|
|
5017
5226
|
export declare type IssueDevOpsBranchDetails = {
|
|
5018
5227
|
__typename?: 'IssueDevOpsBranchDetails';
|
|
5019
5228
|
name: Scalars['String'];
|
|
@@ -6994,8 +7203,8 @@ export declare type JiraIssueTypeFieldIssueTypesArgs = {
|
|
|
6994
7203
|
};
|
|
6995
7204
|
export declare type JiraIssueTypeHierarchyLevel = {
|
|
6996
7205
|
__typename?: 'JiraIssueTypeHierarchyLevel';
|
|
6997
|
-
level
|
|
6998
|
-
name
|
|
7206
|
+
level?: Maybe<Scalars['Int']>;
|
|
7207
|
+
name?: Maybe<Scalars['String']>;
|
|
6999
7208
|
};
|
|
7000
7209
|
export declare enum JiraJqlAutocompleteType {
|
|
7001
7210
|
None = "NONE",
|
|
@@ -8276,6 +8485,7 @@ export declare type JiraProjectSortInput = {
|
|
|
8276
8485
|
order?: Maybe<SortDirection>;
|
|
8277
8486
|
};
|
|
8278
8487
|
export declare enum JiraProjectStatus {
|
|
8488
|
+
Active = "ACTIVE",
|
|
8279
8489
|
Archived = "ARCHIVED",
|
|
8280
8490
|
Deleted = "DELETED"
|
|
8281
8491
|
}
|
|
@@ -8307,6 +8517,8 @@ export declare type JiraQuery = {
|
|
|
8307
8517
|
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
8308
8518
|
issueByKey?: Maybe<JiraIssue>;
|
|
8309
8519
|
issueById?: Maybe<JiraIssue>;
|
|
8520
|
+
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
8521
|
+
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
8310
8522
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
8311
8523
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
8312
8524
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
@@ -8364,6 +8576,12 @@ export declare type JiraQueryIssueByKeyArgs = {
|
|
|
8364
8576
|
export declare type JiraQueryIssueByIdArgs = {
|
|
8365
8577
|
id: Scalars['ID'];
|
|
8366
8578
|
};
|
|
8579
|
+
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
8580
|
+
issueId: Scalars['ID'];
|
|
8581
|
+
};
|
|
8582
|
+
export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
8583
|
+
issueKey: Scalars['String'];
|
|
8584
|
+
};
|
|
8367
8585
|
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
8368
8586
|
cloudId: Scalars['ID'];
|
|
8369
8587
|
keys: Array<Scalars['String']>;
|
|
@@ -10714,6 +10932,7 @@ export declare type NewCardParent = {
|
|
|
10714
10932
|
export declare type Node = {
|
|
10715
10933
|
id: Scalars['ID'];
|
|
10716
10934
|
};
|
|
10935
|
+
export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection | IssueAndProject;
|
|
10717
10936
|
export declare type OpsgenieAlertCountByPriority = {
|
|
10718
10937
|
__typename?: 'OpsgenieAlertCountByPriority';
|
|
10719
10938
|
priority?: Maybe<Scalars['String']>;
|
|
@@ -12241,6 +12460,13 @@ export declare type RefreshToken = {
|
|
|
12241
12460
|
export declare type RefreshTokenInput = {
|
|
12242
12461
|
refreshTokenRotation: Scalars['Boolean'];
|
|
12243
12462
|
};
|
|
12463
|
+
export declare type Remote = {
|
|
12464
|
+
__typename?: 'Remote';
|
|
12465
|
+
key: Scalars['String'];
|
|
12466
|
+
baseUrl: Scalars['String'];
|
|
12467
|
+
classifications?: Maybe<Array<Classification>>;
|
|
12468
|
+
locations?: Maybe<Array<Scalars['String']>>;
|
|
12469
|
+
};
|
|
12244
12470
|
export declare type RemoveCompassComponentLabelsInput = {
|
|
12245
12471
|
componentId: Scalars['ID'];
|
|
12246
12472
|
labelNames: Array<Scalars['String']>;
|
|
@@ -12522,6 +12748,7 @@ export declare type RoadmapUserConfiguration = {
|
|
|
12522
12748
|
timelineMode: RoadmapTimelineMode;
|
|
12523
12749
|
epicView: RoadmapEpicView;
|
|
12524
12750
|
levelOneView: RoadmapLevelOneView;
|
|
12751
|
+
levelOneViewSettings: RoadmapViewSettings;
|
|
12525
12752
|
};
|
|
12526
12753
|
export declare type RoadmapVersion = {
|
|
12527
12754
|
__typename?: 'RoadmapVersion';
|
|
@@ -12534,6 +12761,11 @@ export declare enum RoadmapVersionStatus {
|
|
|
12534
12761
|
Unreleased = "UNRELEASED",
|
|
12535
12762
|
Archived = "ARCHIVED"
|
|
12536
12763
|
}
|
|
12764
|
+
export declare type RoadmapViewSettings = {
|
|
12765
|
+
__typename?: 'RoadmapViewSettings';
|
|
12766
|
+
period: Scalars['Int'];
|
|
12767
|
+
showCompleted: Scalars['Boolean'];
|
|
12768
|
+
};
|
|
12537
12769
|
export declare type RoadmapsQuery = {
|
|
12538
12770
|
__typename?: 'RoadmapsQuery';
|
|
12539
12771
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
@@ -13157,6 +13389,21 @@ export declare type StartSprintInput = {
|
|
|
13157
13389
|
startDate: Scalars['String'];
|
|
13158
13390
|
endDate: Scalars['String'];
|
|
13159
13391
|
};
|
|
13392
|
+
export declare type Storage = {
|
|
13393
|
+
__typename?: 'Storage';
|
|
13394
|
+
hosted?: Maybe<HostedStorage>;
|
|
13395
|
+
remotes?: Maybe<Array<Remote>>;
|
|
13396
|
+
};
|
|
13397
|
+
export declare type Subscription = {
|
|
13398
|
+
__typename?: 'Subscription';
|
|
13399
|
+
onJiraIssueCreatedForUser?: Maybe<OnJiraIssueCreatedForUserResponseType>;
|
|
13400
|
+
};
|
|
13401
|
+
export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
13402
|
+
cloudId: Scalars['ID'];
|
|
13403
|
+
accountId: Scalars['ID'];
|
|
13404
|
+
projectType?: JiraProjectType;
|
|
13405
|
+
filter?: JiraProjectFilterInput;
|
|
13406
|
+
};
|
|
13160
13407
|
export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
13161
13408
|
__typename?: 'SupportRequest';
|
|
13162
13409
|
id: Scalars['ID'];
|
|
@@ -14151,6 +14398,7 @@ export declare type UpdatePolarisViewTimestampPayload = Payload & {
|
|
|
14151
14398
|
};
|
|
14152
14399
|
export declare type User = {
|
|
14153
14400
|
accountId: Scalars['ID'];
|
|
14401
|
+
canonicalAccountId: Scalars['ID'];
|
|
14154
14402
|
accountStatus: AccountStatus;
|
|
14155
14403
|
name: Scalars['String'];
|
|
14156
14404
|
picture: Scalars['URL'];
|