@forge/cli-shared 2.2.0-next.21 → 2.2.0-next.22
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
|
@@ -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';
|
|
@@ -1346,6 +1347,11 @@ export declare type ChildCardsMetadata = {
|
|
|
1346
1347
|
complete?: Maybe<Scalars['Int']>;
|
|
1347
1348
|
total?: Maybe<Scalars['Int']>;
|
|
1348
1349
|
};
|
|
1350
|
+
export declare enum Classification {
|
|
1351
|
+
Ugc = "ugc",
|
|
1352
|
+
Pii = "pii",
|
|
1353
|
+
Other = "other"
|
|
1354
|
+
}
|
|
1349
1355
|
export declare type CloudAppScope = {
|
|
1350
1356
|
__typename?: 'CloudAppScope';
|
|
1351
1357
|
id: Scalars['ID'];
|
|
@@ -1430,6 +1436,16 @@ export declare type CompassAcknowledgeAnnouncementPayload = Payload & {
|
|
|
1430
1436
|
success: Scalars['Boolean'];
|
|
1431
1437
|
errors?: Maybe<Array<MutationError>>;
|
|
1432
1438
|
};
|
|
1439
|
+
export declare type CompassAlertEvent = CompassEvent & {
|
|
1440
|
+
__typename?: 'CompassAlertEvent';
|
|
1441
|
+
eventType: CompassEventType;
|
|
1442
|
+
displayName: Scalars['String'];
|
|
1443
|
+
lastUpdated: Scalars['DateTime'];
|
|
1444
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1445
|
+
alertId: Scalars['ID'];
|
|
1446
|
+
description?: Maybe<Scalars['String']>;
|
|
1447
|
+
url?: Maybe<Scalars['URL']>;
|
|
1448
|
+
};
|
|
1433
1449
|
export declare type CompassAnnouncement = {
|
|
1434
1450
|
__typename?: 'CompassAnnouncement';
|
|
1435
1451
|
id: Scalars['ID'];
|
|
@@ -1477,6 +1493,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1477
1493
|
createEventSource?: Maybe<CreateEventSourcePayload>;
|
|
1478
1494
|
deleteEventSource?: Maybe<DeleteEventSourcePayload>;
|
|
1479
1495
|
createDeploymentEvent?: Maybe<CreateDeploymentEventsPayload>;
|
|
1496
|
+
createCompassEvent?: Maybe<CompassCreateEventsPayload>;
|
|
1480
1497
|
attachEventSource?: Maybe<AttachEventSourcePayload>;
|
|
1481
1498
|
detachEventSource?: Maybe<DetachEventSourcePayload>;
|
|
1482
1499
|
createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
|
|
@@ -1592,6 +1609,9 @@ export declare type CompassCatalogMutationApiDeleteEventSourceArgs = {
|
|
|
1592
1609
|
export declare type CompassCatalogMutationApiCreateDeploymentEventArgs = {
|
|
1593
1610
|
input: CreateDeploymentEventInput;
|
|
1594
1611
|
};
|
|
1612
|
+
export declare type CompassCatalogMutationApiCreateCompassEventArgs = {
|
|
1613
|
+
input: CompassEventInput;
|
|
1614
|
+
};
|
|
1595
1615
|
export declare type CompassCatalogMutationApiAttachEventSourceArgs = {
|
|
1596
1616
|
input: AttachEventSourceInput;
|
|
1597
1617
|
};
|
|
@@ -1763,6 +1783,17 @@ export declare enum CompassComponentType {
|
|
|
1763
1783
|
Service = "SERVICE",
|
|
1764
1784
|
Other = "OTHER"
|
|
1765
1785
|
}
|
|
1786
|
+
export declare type CompassCreateAlertEventInput = {
|
|
1787
|
+
cloudId: Scalars['ID'];
|
|
1788
|
+
eventType: CompassEventType;
|
|
1789
|
+
displayName: Scalars['String'];
|
|
1790
|
+
lastUpdated: Scalars['DateTime'];
|
|
1791
|
+
alertId: Scalars['ID'];
|
|
1792
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1793
|
+
description?: Maybe<Scalars['String']>;
|
|
1794
|
+
url?: Maybe<Scalars['URL']>;
|
|
1795
|
+
externalEventSourceId: Scalars['ID'];
|
|
1796
|
+
};
|
|
1766
1797
|
export declare type CompassCreateAnnouncementInput = {
|
|
1767
1798
|
componentId: Scalars['ID'];
|
|
1768
1799
|
title: Scalars['String'];
|
|
@@ -1775,6 +1806,72 @@ export declare type CompassCreateAnnouncementPayload = Payload & {
|
|
|
1775
1806
|
success: Scalars['Boolean'];
|
|
1776
1807
|
errors?: Maybe<Array<MutationError>>;
|
|
1777
1808
|
};
|
|
1809
|
+
export declare type CompassCreateCustomEventInput = {
|
|
1810
|
+
cloudId: Scalars['ID'];
|
|
1811
|
+
eventType: CompassEventType;
|
|
1812
|
+
displayName: Scalars['String'];
|
|
1813
|
+
lastUpdated: Scalars['DateTime'];
|
|
1814
|
+
customEventId: Scalars['ID'];
|
|
1815
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1816
|
+
description?: Maybe<Scalars['String']>;
|
|
1817
|
+
url?: Maybe<Scalars['URL']>;
|
|
1818
|
+
icon?: Maybe<CompassCustomEventIcon>;
|
|
1819
|
+
externalEventSourceId: Scalars['ID'];
|
|
1820
|
+
};
|
|
1821
|
+
export declare type CompassCreateDeploymentEventInput = {
|
|
1822
|
+
cloudId: Scalars['ID'];
|
|
1823
|
+
deploymentSequenceNumber: Scalars['Long'];
|
|
1824
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1825
|
+
displayName: Scalars['String'];
|
|
1826
|
+
url: Scalars['URL'];
|
|
1827
|
+
description: Scalars['String'];
|
|
1828
|
+
state: CompassDeploymentEventState;
|
|
1829
|
+
lastUpdated: Scalars['DateTime'];
|
|
1830
|
+
pipeline: CompassDeploymentEventPipelineInput;
|
|
1831
|
+
environment: CompassDeploymentEventEnvironmentInput;
|
|
1832
|
+
externalEventSourceId: Scalars['ID'];
|
|
1833
|
+
};
|
|
1834
|
+
export declare type CompassCreateEventsPayload = Payload & {
|
|
1835
|
+
__typename?: 'CompassCreateEventsPayload';
|
|
1836
|
+
success: Scalars['Boolean'];
|
|
1837
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1838
|
+
};
|
|
1839
|
+
export declare type CompassCreateFlagEventInput = {
|
|
1840
|
+
cloudId: Scalars['ID'];
|
|
1841
|
+
eventType: CompassEventType;
|
|
1842
|
+
displayName: Scalars['String'];
|
|
1843
|
+
lastUpdated: Scalars['DateTime'];
|
|
1844
|
+
flagId: Scalars['ID'];
|
|
1845
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1846
|
+
description?: Maybe<Scalars['String']>;
|
|
1847
|
+
url?: Maybe<Scalars['URL']>;
|
|
1848
|
+
status?: Maybe<Scalars['String']>;
|
|
1849
|
+
externalEventSourceId: Scalars['ID'];
|
|
1850
|
+
};
|
|
1851
|
+
export declare type CompassCreateIncidentEventInput = {
|
|
1852
|
+
cloudId: Scalars['ID'];
|
|
1853
|
+
eventType: CompassEventType;
|
|
1854
|
+
displayName: Scalars['String'];
|
|
1855
|
+
lastUpdated: Scalars['DateTime'];
|
|
1856
|
+
incidentId: Scalars['ID'];
|
|
1857
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1858
|
+
description?: Maybe<Scalars['String']>;
|
|
1859
|
+
url?: Maybe<Scalars['URL']>;
|
|
1860
|
+
state?: Maybe<CompassIncidentEventState>;
|
|
1861
|
+
externalEventSourceId: Scalars['ID'];
|
|
1862
|
+
};
|
|
1863
|
+
export declare type CompassCreateLifecycleEventInput = {
|
|
1864
|
+
cloudId: Scalars['ID'];
|
|
1865
|
+
eventType: CompassEventType;
|
|
1866
|
+
displayName: Scalars['String'];
|
|
1867
|
+
lastUpdated: Scalars['DateTime'];
|
|
1868
|
+
lifecycle: Scalars['ID'];
|
|
1869
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1870
|
+
description?: Maybe<Scalars['String']>;
|
|
1871
|
+
url?: Maybe<Scalars['URL']>;
|
|
1872
|
+
stage?: Maybe<CompassLifecycleEventStage>;
|
|
1873
|
+
externalEventSourceId: Scalars['ID'];
|
|
1874
|
+
};
|
|
1778
1875
|
export declare type CompassCreateMetricDefinitionInput = {
|
|
1779
1876
|
cloudId: Scalars['ID'];
|
|
1780
1877
|
name: Scalars['String'];
|
|
@@ -1825,6 +1922,22 @@ export declare enum CompassCriteriaNumberComparatorOptions {
|
|
|
1825
1922
|
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
1826
1923
|
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO"
|
|
1827
1924
|
}
|
|
1925
|
+
export declare type CompassCustomEvent = CompassEvent & {
|
|
1926
|
+
__typename?: 'CompassCustomEvent';
|
|
1927
|
+
eventType: CompassEventType;
|
|
1928
|
+
displayName: Scalars['String'];
|
|
1929
|
+
lastUpdated: Scalars['DateTime'];
|
|
1930
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1931
|
+
customEventId: Scalars['ID'];
|
|
1932
|
+
description?: Maybe<Scalars['String']>;
|
|
1933
|
+
url?: Maybe<Scalars['URL']>;
|
|
1934
|
+
icon?: Maybe<CompassCustomEventIcon>;
|
|
1935
|
+
};
|
|
1936
|
+
export declare enum CompassCustomEventIcon {
|
|
1937
|
+
Info = "INFO",
|
|
1938
|
+
Warning = "WARNING",
|
|
1939
|
+
Checkpoint = "CHECKPOINT"
|
|
1940
|
+
}
|
|
1828
1941
|
export declare type CompassDeleteAnnouncementInput = {
|
|
1829
1942
|
cloudId: Scalars['ID'];
|
|
1830
1943
|
id: Scalars['ID'];
|
|
@@ -1872,7 +1985,7 @@ export declare type CompassDeploymentEvent = CompassEvent & {
|
|
|
1872
1985
|
lastUpdated: Scalars['DateTime'];
|
|
1873
1986
|
displayName: Scalars['String'];
|
|
1874
1987
|
deploymentSequenceNumber?: Maybe<Scalars['Long']>;
|
|
1875
|
-
updateSequenceNumber
|
|
1988
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1876
1989
|
url?: Maybe<Scalars['URL']>;
|
|
1877
1990
|
description?: Maybe<Scalars['String']>;
|
|
1878
1991
|
state?: Maybe<CompassDeploymentEventState>;
|
|
@@ -1934,6 +2047,7 @@ export declare type CompassEvent = {
|
|
|
1934
2047
|
eventType: CompassEventType;
|
|
1935
2048
|
displayName: Scalars['String'];
|
|
1936
2049
|
lastUpdated: Scalars['DateTime'];
|
|
2050
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1937
2051
|
description?: Maybe<Scalars['String']>;
|
|
1938
2052
|
url?: Maybe<Scalars['URL']>;
|
|
1939
2053
|
};
|
|
@@ -1948,12 +2062,25 @@ export declare type CompassEventEdge = {
|
|
|
1948
2062
|
cursor: Scalars['String'];
|
|
1949
2063
|
node?: Maybe<CompassEvent>;
|
|
1950
2064
|
};
|
|
2065
|
+
export declare type CompassEventInput = {
|
|
2066
|
+
deployment?: Maybe<CompassCreateDeploymentEventInput>;
|
|
2067
|
+
incident?: Maybe<CompassCreateIncidentEventInput>;
|
|
2068
|
+
flag?: Maybe<CompassCreateFlagEventInput>;
|
|
2069
|
+
alert?: Maybe<CompassCreateAlertEventInput>;
|
|
2070
|
+
lifecycle?: Maybe<CompassCreateLifecycleEventInput>;
|
|
2071
|
+
custom?: Maybe<CompassCreateCustomEventInput>;
|
|
2072
|
+
};
|
|
1951
2073
|
export declare type CompassEventTimeParameters = {
|
|
1952
2074
|
startFrom?: Maybe<Scalars['DateTime']>;
|
|
1953
2075
|
endAt?: Maybe<Scalars['DateTime']>;
|
|
1954
2076
|
};
|
|
1955
2077
|
export declare enum CompassEventType {
|
|
1956
|
-
Deployment = "DEPLOYMENT"
|
|
2078
|
+
Deployment = "DEPLOYMENT",
|
|
2079
|
+
Incident = "INCIDENT",
|
|
2080
|
+
Flag = "FLAG",
|
|
2081
|
+
Alert = "ALERT",
|
|
2082
|
+
Lifecycle = "LIFECYCLE",
|
|
2083
|
+
Custom = "CUSTOM"
|
|
1957
2084
|
}
|
|
1958
2085
|
export declare type CompassEventsQuery = {
|
|
1959
2086
|
eventTypes?: Maybe<Array<CompassEventType>>;
|
|
@@ -1997,6 +2124,17 @@ export declare enum CompassFieldType {
|
|
|
1997
2124
|
export declare type CompassFieldValueInput = {
|
|
1998
2125
|
enum?: Maybe<CompassEnumFieldValueInput>;
|
|
1999
2126
|
};
|
|
2127
|
+
export declare type CompassFlagEvent = CompassEvent & {
|
|
2128
|
+
__typename?: 'CompassFlagEvent';
|
|
2129
|
+
eventType: CompassEventType;
|
|
2130
|
+
displayName: Scalars['String'];
|
|
2131
|
+
lastUpdated: Scalars['DateTime'];
|
|
2132
|
+
updateSequenceNumber: Scalars['Long'];
|
|
2133
|
+
flagId: Scalars['ID'];
|
|
2134
|
+
description?: Maybe<Scalars['String']>;
|
|
2135
|
+
url?: Maybe<Scalars['URL']>;
|
|
2136
|
+
status?: Maybe<Scalars['String']>;
|
|
2137
|
+
};
|
|
2000
2138
|
export declare type CompassHasDescriptionScorecardCriteria = CompassScorecardCriteria & {
|
|
2001
2139
|
__typename?: 'CompassHasDescriptionScorecardCriteria';
|
|
2002
2140
|
id: Scalars['ID'];
|
|
@@ -2048,6 +2186,23 @@ export declare type CompassHasOwnerScorecardCriteria = CompassScorecardCriteria
|
|
|
2048
2186
|
export declare type CompassHasOwnerScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
2049
2187
|
query?: Maybe<CompassScorecardCriteriaScoreQuery>;
|
|
2050
2188
|
};
|
|
2189
|
+
export declare type CompassIncidentEvent = CompassEvent & {
|
|
2190
|
+
__typename?: 'CompassIncidentEvent';
|
|
2191
|
+
eventType: CompassEventType;
|
|
2192
|
+
displayName: Scalars['String'];
|
|
2193
|
+
lastUpdated: Scalars['DateTime'];
|
|
2194
|
+
updateSequenceNumber: Scalars['Long'];
|
|
2195
|
+
incidentId: Scalars['ID'];
|
|
2196
|
+
description?: Maybe<Scalars['String']>;
|
|
2197
|
+
url?: Maybe<Scalars['URL']>;
|
|
2198
|
+
state?: Maybe<CompassIncidentEventState>;
|
|
2199
|
+
};
|
|
2200
|
+
export declare enum CompassIncidentEventState {
|
|
2201
|
+
Open = "OPEN",
|
|
2202
|
+
Resolved = "RESOLVED",
|
|
2203
|
+
Closed = "CLOSED",
|
|
2204
|
+
Deleted = "DELETED"
|
|
2205
|
+
}
|
|
2051
2206
|
export declare type CompassInsertMetricValueInput = {
|
|
2052
2207
|
metricSourceId: Scalars['ID'];
|
|
2053
2208
|
value: CompassMetricValueInput;
|
|
@@ -2058,6 +2213,23 @@ export declare type CompassInsertMetricValuePayload = Payload & {
|
|
|
2058
2213
|
errors?: Maybe<Array<MutationError>>;
|
|
2059
2214
|
metricSource?: Maybe<CompassMetricSource>;
|
|
2060
2215
|
};
|
|
2216
|
+
export declare type CompassLifecycleEvent = CompassEvent & {
|
|
2217
|
+
__typename?: 'CompassLifecycleEvent';
|
|
2218
|
+
eventType: CompassEventType;
|
|
2219
|
+
displayName: Scalars['String'];
|
|
2220
|
+
lastUpdated: Scalars['DateTime'];
|
|
2221
|
+
updateSequenceNumber: Scalars['Long'];
|
|
2222
|
+
lifecycleId: Scalars['ID'];
|
|
2223
|
+
stage?: Maybe<CompassLifecycleEventStage>;
|
|
2224
|
+
description?: Maybe<Scalars['String']>;
|
|
2225
|
+
url?: Maybe<Scalars['URL']>;
|
|
2226
|
+
};
|
|
2227
|
+
export declare enum CompassLifecycleEventStage {
|
|
2228
|
+
PreRelease = "PRE_RELEASE",
|
|
2229
|
+
Production = "PRODUCTION",
|
|
2230
|
+
Deprecation = "DEPRECATION",
|
|
2231
|
+
EndOfLife = "END_OF_LIFE"
|
|
2232
|
+
}
|
|
2061
2233
|
export declare type CompassLink = {
|
|
2062
2234
|
__typename?: 'CompassLink';
|
|
2063
2235
|
id: Scalars['ID'];
|
|
@@ -4937,6 +5109,11 @@ export declare type HostedResourcePreSignedUrl = {
|
|
|
4937
5109
|
uploadUrl: Scalars['String'];
|
|
4938
5110
|
uploadFormData: Scalars['JSON'];
|
|
4939
5111
|
};
|
|
5112
|
+
export declare type HostedStorage = {
|
|
5113
|
+
__typename?: 'HostedStorage';
|
|
5114
|
+
classifications?: Maybe<Array<Classification>>;
|
|
5115
|
+
locations?: Maybe<Array<Scalars['String']>>;
|
|
5116
|
+
};
|
|
4940
5117
|
export declare type Icon = {
|
|
4941
5118
|
__typename?: 'Icon';
|
|
4942
5119
|
url?: Maybe<Scalars['String']>;
|
|
@@ -8280,6 +8457,7 @@ export declare type JiraProjectSortInput = {
|
|
|
8280
8457
|
order?: Maybe<SortDirection>;
|
|
8281
8458
|
};
|
|
8282
8459
|
export declare enum JiraProjectStatus {
|
|
8460
|
+
Active = "ACTIVE",
|
|
8283
8461
|
Archived = "ARCHIVED",
|
|
8284
8462
|
Deleted = "DELETED"
|
|
8285
8463
|
}
|
|
@@ -12245,6 +12423,13 @@ export declare type RefreshToken = {
|
|
|
12245
12423
|
export declare type RefreshTokenInput = {
|
|
12246
12424
|
refreshTokenRotation: Scalars['Boolean'];
|
|
12247
12425
|
};
|
|
12426
|
+
export declare type Remote = {
|
|
12427
|
+
__typename?: 'Remote';
|
|
12428
|
+
key: Scalars['String'];
|
|
12429
|
+
baseUrl: Scalars['String'];
|
|
12430
|
+
classifications?: Maybe<Array<Classification>>;
|
|
12431
|
+
locations?: Maybe<Array<Scalars['String']>>;
|
|
12432
|
+
};
|
|
12248
12433
|
export declare type RemoveCompassComponentLabelsInput = {
|
|
12249
12434
|
componentId: Scalars['ID'];
|
|
12250
12435
|
labelNames: Array<Scalars['String']>;
|
|
@@ -13161,6 +13346,11 @@ export declare type StartSprintInput = {
|
|
|
13161
13346
|
startDate: Scalars['String'];
|
|
13162
13347
|
endDate: Scalars['String'];
|
|
13163
13348
|
};
|
|
13349
|
+
export declare type Storage = {
|
|
13350
|
+
__typename?: 'Storage';
|
|
13351
|
+
hosted?: Maybe<HostedStorage>;
|
|
13352
|
+
remotes?: Maybe<Array<Remote>>;
|
|
13353
|
+
};
|
|
13164
13354
|
export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
13165
13355
|
__typename?: 'SupportRequest';
|
|
13166
13356
|
id: Scalars['ID'];
|