@forge/cli-shared 0.0.0-experimental-64caa5a → 0.0.0-experimental-490cfcf
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 +353 -10
- package/out/apps/template.d.ts +4 -2
- package/out/apps/template.d.ts.map +1 -1
- package/out/apps/template.js +33 -21
- package/out/config/config-file.js +8 -8
- package/out/config/config.d.ts +2 -1
- package/out/config/config.d.ts.map +1 -1
- package/out/config/config.js +3 -2
- package/out/graphql/graphql-types.d.ts +2112 -199
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +216 -37
- 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/shared/product.d.ts +1 -3
- package/out/shared/product.d.ts.map +1 -1
- package/out/shared/product.js +5 -9
- package/out/ui/text.d.ts +5 -2
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +8 -2
- package/package.json +5 -5
|
@@ -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;
|
|
@@ -157,11 +163,40 @@ export declare type ActivitiesUser = {
|
|
|
157
163
|
__typename?: 'ActivitiesUser';
|
|
158
164
|
profile?: Maybe<User>;
|
|
159
165
|
};
|
|
166
|
+
export declare type Activity = {
|
|
167
|
+
__typename?: 'Activity';
|
|
168
|
+
all: ActivityConnection;
|
|
169
|
+
workedOn: ActivityConnection;
|
|
170
|
+
myActivity?: Maybe<MyActivity>;
|
|
171
|
+
};
|
|
172
|
+
export declare type ActivityAllArgs = {
|
|
173
|
+
filter?: Maybe<ActivityFilter>;
|
|
174
|
+
first?: Maybe<Scalars['Int']>;
|
|
175
|
+
after?: Maybe<Scalars['String']>;
|
|
176
|
+
};
|
|
177
|
+
export declare type ActivityWorkedOnArgs = {
|
|
178
|
+
filter?: Maybe<ActivityFilter>;
|
|
179
|
+
first?: Maybe<Scalars['Int']>;
|
|
180
|
+
after?: Maybe<Scalars['String']>;
|
|
181
|
+
};
|
|
182
|
+
export declare type ActivityConnection = {
|
|
183
|
+
__typename?: 'ActivityConnection';
|
|
184
|
+
edges?: Maybe<Array<Maybe<ActivityItemEdge>>>;
|
|
185
|
+
pageInfo: ActivityPageInfo;
|
|
186
|
+
};
|
|
160
187
|
export declare type ActivityEdge = {
|
|
161
188
|
__typename?: 'ActivityEdge';
|
|
162
189
|
cursor: Scalars['String'];
|
|
163
190
|
node?: Maybe<ActivitiesItem>;
|
|
164
191
|
};
|
|
192
|
+
export declare type ActivityEvent = {
|
|
193
|
+
__typename?: 'ActivityEvent';
|
|
194
|
+
id: Scalars['ID'];
|
|
195
|
+
timestamp: Scalars['DateTime'];
|
|
196
|
+
eventType: Scalars['String'];
|
|
197
|
+
actor?: Maybe<User>;
|
|
198
|
+
extension?: Maybe<ActivitiesEventExtension>;
|
|
199
|
+
};
|
|
165
200
|
export declare enum ActivityEventType {
|
|
166
201
|
Assigned = "ASSIGNED",
|
|
167
202
|
Unassigned = "UNASSIGNED",
|
|
@@ -174,6 +209,43 @@ export declare enum ActivityEventType {
|
|
|
174
209
|
Published = "PUBLISHED",
|
|
175
210
|
Edited = "EDITED"
|
|
176
211
|
}
|
|
212
|
+
export declare type ActivityFilter = {
|
|
213
|
+
actors?: Maybe<Array<Scalars['ID']>>;
|
|
214
|
+
rootContainerIds?: Maybe<Array<Scalars['ID']>>;
|
|
215
|
+
type?: Maybe<ActivitiesFilterType>;
|
|
216
|
+
arguments?: Maybe<ActivityFilterArgs>;
|
|
217
|
+
};
|
|
218
|
+
export declare type ActivityFilterArgs = {
|
|
219
|
+
products?: Maybe<Array<Scalars['String']>>;
|
|
220
|
+
eventTypes?: Maybe<Array<Scalars['String']>>;
|
|
221
|
+
objectTypes?: Maybe<Array<Scalars['String']>>;
|
|
222
|
+
transitions?: Maybe<Array<TransitionFilter>>;
|
|
223
|
+
containerIds?: Maybe<Array<Scalars['ID']>>;
|
|
224
|
+
earliestStart?: Maybe<Scalars['DateTime']>;
|
|
225
|
+
latestStart?: Maybe<Scalars['DateTime']>;
|
|
226
|
+
};
|
|
227
|
+
export declare type ActivityItemEdge = {
|
|
228
|
+
__typename?: 'ActivityItemEdge';
|
|
229
|
+
cursor: Scalars['String'];
|
|
230
|
+
node?: Maybe<ActivityNode>;
|
|
231
|
+
};
|
|
232
|
+
export declare type ActivityNode = Node & {
|
|
233
|
+
__typename?: 'ActivityNode';
|
|
234
|
+
id: Scalars['ID'];
|
|
235
|
+
object: ActivityObject;
|
|
236
|
+
event: ActivityEvent;
|
|
237
|
+
};
|
|
238
|
+
export declare type ActivityObject = {
|
|
239
|
+
__typename?: 'ActivityObject';
|
|
240
|
+
id: Scalars['ID'];
|
|
241
|
+
rootContainerId: Scalars['ID'];
|
|
242
|
+
type: Scalars['String'];
|
|
243
|
+
product: Scalars['String'];
|
|
244
|
+
subProduct?: Maybe<Scalars['String']>;
|
|
245
|
+
contributors?: Maybe<Array<ActivitiesContributor>>;
|
|
246
|
+
data?: Maybe<ActivityObjectData>;
|
|
247
|
+
};
|
|
248
|
+
export declare type ActivityObjectData = TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
177
249
|
export declare enum ActivityObjectType {
|
|
178
250
|
Site = "SITE",
|
|
179
251
|
Project = "PROJECT",
|
|
@@ -230,6 +302,7 @@ export declare enum ApiContext {
|
|
|
230
302
|
}
|
|
231
303
|
export declare enum ApiGroup {
|
|
232
304
|
Compass = "COMPASS",
|
|
305
|
+
Confluence = "CONFLUENCE",
|
|
233
306
|
Jira = "JIRA",
|
|
234
307
|
Forge = "FORGE",
|
|
235
308
|
Polaris = "POLARIS",
|
|
@@ -390,6 +463,7 @@ export declare type AppEnvironmentVersion = {
|
|
|
390
463
|
requiresLicense: Scalars['Boolean'];
|
|
391
464
|
permissions: Array<AppPermission>;
|
|
392
465
|
migrationKeys?: Maybe<MigrationKeys>;
|
|
466
|
+
storage: Storage;
|
|
393
467
|
};
|
|
394
468
|
export declare type AppEnvironmentVersionConnection = {
|
|
395
469
|
__typename?: 'AppEnvironmentVersionConnection';
|
|
@@ -470,6 +544,7 @@ export declare type AppInstallationInput = {
|
|
|
470
544
|
environmentKey: Scalars['String'];
|
|
471
545
|
async?: Maybe<Scalars['Boolean']>;
|
|
472
546
|
licenseOverride?: Maybe<LicenseOverrideState>;
|
|
547
|
+
provisionRequestId?: Maybe<Scalars['ID']>;
|
|
473
548
|
};
|
|
474
549
|
export declare type AppInstallationLicense = {
|
|
475
550
|
__typename?: 'AppInstallationLicense';
|
|
@@ -743,6 +818,7 @@ export declare type AppUnsubscribePayload = Payload & {
|
|
|
743
818
|
export declare type AppUser = User & {
|
|
744
819
|
__typename?: 'AppUser';
|
|
745
820
|
accountId: Scalars['ID'];
|
|
821
|
+
canonicalAccountId: Scalars['ID'];
|
|
746
822
|
accountStatus: AccountStatus;
|
|
747
823
|
name: Scalars['String'];
|
|
748
824
|
picture: Scalars['URL'];
|
|
@@ -802,6 +878,7 @@ export declare type AssignIssueParentOutput = MutationResponse & {
|
|
|
802
878
|
export declare type AtlassianAccountUser = User & LocalizationContext & {
|
|
803
879
|
__typename?: 'AtlassianAccountUser';
|
|
804
880
|
accountId: Scalars['ID'];
|
|
881
|
+
canonicalAccountId: Scalars['ID'];
|
|
805
882
|
accountStatus: AccountStatus;
|
|
806
883
|
name: Scalars['String'];
|
|
807
884
|
picture: Scalars['URL'];
|
|
@@ -882,11 +959,13 @@ export declare type AuxEffectsInvocationPayload = {
|
|
|
882
959
|
effects: Array<Scalars['JSON']>;
|
|
883
960
|
context: Scalars['JSON'];
|
|
884
961
|
contextToken?: Maybe<Scalars['String']>;
|
|
962
|
+
extensionPayload?: Maybe<Scalars['JSON']>;
|
|
885
963
|
config?: Maybe<Scalars['JSON']>;
|
|
886
964
|
};
|
|
887
965
|
export declare type AuxEffectsResult = {
|
|
888
966
|
__typename?: 'AuxEffectsResult';
|
|
889
967
|
effects: Array<Scalars['JSON']>;
|
|
968
|
+
contextToken?: Maybe<ForgeContextToken>;
|
|
890
969
|
};
|
|
891
970
|
export declare type AvailableEstimations = {
|
|
892
971
|
__typename?: 'AvailableEstimations';
|
|
@@ -923,6 +1002,7 @@ export declare type BasicBoardFeatureView = Node & {
|
|
|
923
1002
|
status?: Maybe<Scalars['String']>;
|
|
924
1003
|
canEnable?: Maybe<Scalars['Boolean']>;
|
|
925
1004
|
learnMoreLink?: Maybe<Scalars['String']>;
|
|
1005
|
+
learnMoreArticleId?: Maybe<Scalars['String']>;
|
|
926
1006
|
imageUri?: Maybe<Scalars['String']>;
|
|
927
1007
|
};
|
|
928
1008
|
export declare enum BitbucketPermission {
|
|
@@ -1282,6 +1362,11 @@ export declare type ChildCardsMetadata = {
|
|
|
1282
1362
|
complete?: Maybe<Scalars['Int']>;
|
|
1283
1363
|
total?: Maybe<Scalars['Int']>;
|
|
1284
1364
|
};
|
|
1365
|
+
export declare enum Classification {
|
|
1366
|
+
Ugc = "ugc",
|
|
1367
|
+
Pii = "pii",
|
|
1368
|
+
Other = "other"
|
|
1369
|
+
}
|
|
1285
1370
|
export declare type CloudAppScope = {
|
|
1286
1371
|
__typename?: 'CloudAppScope';
|
|
1287
1372
|
id: Scalars['ID'];
|
|
@@ -1366,6 +1451,23 @@ export declare type CompassAcknowledgeAnnouncementPayload = Payload & {
|
|
|
1366
1451
|
success: Scalars['Boolean'];
|
|
1367
1452
|
errors?: Maybe<Array<MutationError>>;
|
|
1368
1453
|
};
|
|
1454
|
+
export declare type CompassAlertEvent = CompassEvent & {
|
|
1455
|
+
__typename?: 'CompassAlertEvent';
|
|
1456
|
+
eventType: CompassEventType;
|
|
1457
|
+
displayName: Scalars['String'];
|
|
1458
|
+
lastUpdated: Scalars['DateTime'];
|
|
1459
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1460
|
+
description?: Maybe<Scalars['String']>;
|
|
1461
|
+
url?: Maybe<Scalars['URL']>;
|
|
1462
|
+
alertProperties: CompassAlertEventProperties;
|
|
1463
|
+
};
|
|
1464
|
+
export declare type CompassAlertEventProperties = {
|
|
1465
|
+
__typename?: 'CompassAlertEventProperties';
|
|
1466
|
+
id: Scalars['ID'];
|
|
1467
|
+
};
|
|
1468
|
+
export declare type CompassAlertEventPropertiesInput = {
|
|
1469
|
+
id: Scalars['ID'];
|
|
1470
|
+
};
|
|
1369
1471
|
export declare type CompassAnnouncement = {
|
|
1370
1472
|
__typename?: 'CompassAnnouncement';
|
|
1371
1473
|
id: Scalars['ID'];
|
|
@@ -1380,6 +1482,49 @@ export declare type CompassAnnouncementAcknowledgement = {
|
|
|
1380
1482
|
component?: Maybe<CompassComponent>;
|
|
1381
1483
|
hasAcknowledged?: Maybe<Scalars['Boolean']>;
|
|
1382
1484
|
};
|
|
1485
|
+
export declare type CompassBuildEvent = CompassEvent & {
|
|
1486
|
+
__typename?: 'CompassBuildEvent';
|
|
1487
|
+
eventType: CompassEventType;
|
|
1488
|
+
lastUpdated: Scalars['DateTime'];
|
|
1489
|
+
displayName: Scalars['String'];
|
|
1490
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1491
|
+
url?: Maybe<Scalars['URL']>;
|
|
1492
|
+
description?: Maybe<Scalars['String']>;
|
|
1493
|
+
buildProperties: CompassBuildEventProperties;
|
|
1494
|
+
};
|
|
1495
|
+
export declare type CompassBuildEventPipeline = {
|
|
1496
|
+
__typename?: 'CompassBuildEventPipeline';
|
|
1497
|
+
pipelineId: Scalars['String'];
|
|
1498
|
+
url: Scalars['String'];
|
|
1499
|
+
displayName: Scalars['String'];
|
|
1500
|
+
};
|
|
1501
|
+
export declare type CompassBuildEventPipelineInput = {
|
|
1502
|
+
pipelineId: Scalars['String'];
|
|
1503
|
+
url: Scalars['String'];
|
|
1504
|
+
displayName: Scalars['String'];
|
|
1505
|
+
};
|
|
1506
|
+
export declare type CompassBuildEventProperties = {
|
|
1507
|
+
__typename?: 'CompassBuildEventProperties';
|
|
1508
|
+
state: CompassBuildEventState;
|
|
1509
|
+
pipeline?: Maybe<CompassBuildEventPipeline>;
|
|
1510
|
+
startedAt: Scalars['DateTime'];
|
|
1511
|
+
completedAt?: Maybe<Scalars['DateTime']>;
|
|
1512
|
+
};
|
|
1513
|
+
export declare type CompassBuildEventPropertiesInput = {
|
|
1514
|
+
state: CompassBuildEventState;
|
|
1515
|
+
pipeline: CompassBuildEventPipelineInput;
|
|
1516
|
+
startedAt: Scalars['DateTime'];
|
|
1517
|
+
completedAt?: Maybe<Scalars['DateTime']>;
|
|
1518
|
+
};
|
|
1519
|
+
export declare enum CompassBuildEventState {
|
|
1520
|
+
InProgress = "IN_PROGRESS",
|
|
1521
|
+
Successful = "SUCCESSFUL",
|
|
1522
|
+
Cancelled = "CANCELLED",
|
|
1523
|
+
Failed = "FAILED",
|
|
1524
|
+
Error = "ERROR",
|
|
1525
|
+
TimedOut = "TIMED_OUT",
|
|
1526
|
+
Unknown = "UNKNOWN"
|
|
1527
|
+
}
|
|
1383
1528
|
export declare type CompassCatalogMutationApi = {
|
|
1384
1529
|
__typename?: 'CompassCatalogMutationApi';
|
|
1385
1530
|
createComponent?: Maybe<CreateCompassComponentPayload>;
|
|
@@ -1413,6 +1558,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1413
1558
|
createEventSource?: Maybe<CreateEventSourcePayload>;
|
|
1414
1559
|
deleteEventSource?: Maybe<DeleteEventSourcePayload>;
|
|
1415
1560
|
createDeploymentEvent?: Maybe<CreateDeploymentEventsPayload>;
|
|
1561
|
+
createCompassEvent?: Maybe<CompassCreateEventsPayload>;
|
|
1416
1562
|
attachEventSource?: Maybe<AttachEventSourcePayload>;
|
|
1417
1563
|
detachEventSource?: Maybe<DetachEventSourcePayload>;
|
|
1418
1564
|
createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
|
|
@@ -1426,6 +1572,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1426
1572
|
createMetricSource?: Maybe<CompassCreateMetricSourcePayload>;
|
|
1427
1573
|
deleteMetricSource?: Maybe<CompassDeleteMetricSourcePayload>;
|
|
1428
1574
|
insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
|
|
1575
|
+
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
1429
1576
|
};
|
|
1430
1577
|
export declare type CompassCatalogMutationApiCreateComponentArgs = {
|
|
1431
1578
|
cloudId: Scalars['ID'];
|
|
@@ -1528,6 +1675,9 @@ export declare type CompassCatalogMutationApiDeleteEventSourceArgs = {
|
|
|
1528
1675
|
export declare type CompassCatalogMutationApiCreateDeploymentEventArgs = {
|
|
1529
1676
|
input: CreateDeploymentEventInput;
|
|
1530
1677
|
};
|
|
1678
|
+
export declare type CompassCatalogMutationApiCreateCompassEventArgs = {
|
|
1679
|
+
input: CompassCreateEventInput;
|
|
1680
|
+
};
|
|
1531
1681
|
export declare type CompassCatalogMutationApiAttachEventSourceArgs = {
|
|
1532
1682
|
input: AttachEventSourceInput;
|
|
1533
1683
|
};
|
|
@@ -1569,6 +1719,9 @@ export declare type CompassCatalogMutationApiDeleteMetricSourceArgs = {
|
|
|
1569
1719
|
export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
|
|
1570
1720
|
input: CompassInsertMetricValueInput;
|
|
1571
1721
|
};
|
|
1722
|
+
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
1723
|
+
input?: Maybe<CompassSynchronizeLinkAssociationsInput>;
|
|
1724
|
+
};
|
|
1572
1725
|
export declare type CompassCatalogQueryApi = {
|
|
1573
1726
|
__typename?: 'CompassCatalogQueryApi';
|
|
1574
1727
|
component?: Maybe<CompassComponentResult>;
|
|
@@ -1582,6 +1735,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1582
1735
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
1583
1736
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1584
1737
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1738
|
+
eventSource?: Maybe<CompassEventSourceResult>;
|
|
1585
1739
|
};
|
|
1586
1740
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
1587
1741
|
id: Scalars['ID'];
|
|
@@ -1624,6 +1778,11 @@ export declare type CompassCatalogQueryApiMetricDefinitionArgs = {
|
|
|
1624
1778
|
cloudId: Scalars['ID'];
|
|
1625
1779
|
metricDefinitionId: Scalars['ID'];
|
|
1626
1780
|
};
|
|
1781
|
+
export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
1782
|
+
cloudId: Scalars['ID'];
|
|
1783
|
+
eventType: CompassEventType;
|
|
1784
|
+
externalEventSourceId: Scalars['ID'];
|
|
1785
|
+
};
|
|
1627
1786
|
export declare type CompassChangeMetadata = {
|
|
1628
1787
|
__typename?: 'CompassChangeMetadata';
|
|
1629
1788
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -1699,6 +1858,15 @@ export declare enum CompassComponentType {
|
|
|
1699
1858
|
Service = "SERVICE",
|
|
1700
1859
|
Other = "OTHER"
|
|
1701
1860
|
}
|
|
1861
|
+
export declare type CompassCreateAlertEventInput = {
|
|
1862
|
+
displayName: Scalars['String'];
|
|
1863
|
+
lastUpdated: Scalars['DateTime'];
|
|
1864
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1865
|
+
description: Scalars['String'];
|
|
1866
|
+
url: Scalars['URL'];
|
|
1867
|
+
externalEventSourceId: Scalars['ID'];
|
|
1868
|
+
alertProperties: CompassAlertEventPropertiesInput;
|
|
1869
|
+
};
|
|
1702
1870
|
export declare type CompassCreateAnnouncementInput = {
|
|
1703
1871
|
componentId: Scalars['ID'];
|
|
1704
1872
|
title: Scalars['String'];
|
|
@@ -1711,6 +1879,83 @@ export declare type CompassCreateAnnouncementPayload = Payload & {
|
|
|
1711
1879
|
success: Scalars['Boolean'];
|
|
1712
1880
|
errors?: Maybe<Array<MutationError>>;
|
|
1713
1881
|
};
|
|
1882
|
+
export declare type CompassCreateBuildEventInput = {
|
|
1883
|
+
displayName: Scalars['String'];
|
|
1884
|
+
lastUpdated: Scalars['DateTime'];
|
|
1885
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1886
|
+
description: Scalars['String'];
|
|
1887
|
+
url: Scalars['URL'];
|
|
1888
|
+
externalEventSourceId: Scalars['ID'];
|
|
1889
|
+
buildProperties: CompassBuildEventPropertiesInput;
|
|
1890
|
+
};
|
|
1891
|
+
export declare type CompassCreateCustomEventInput = {
|
|
1892
|
+
displayName: Scalars['String'];
|
|
1893
|
+
lastUpdated: Scalars['DateTime'];
|
|
1894
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1895
|
+
description: Scalars['String'];
|
|
1896
|
+
url: Scalars['URL'];
|
|
1897
|
+
externalEventSourceId: Scalars['ID'];
|
|
1898
|
+
customEventProperties: CompassCustomEventPropertiesInput;
|
|
1899
|
+
};
|
|
1900
|
+
export declare type CompassCreateDeploymentEventInput = {
|
|
1901
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1902
|
+
displayName: Scalars['String'];
|
|
1903
|
+
url: Scalars['URL'];
|
|
1904
|
+
description: Scalars['String'];
|
|
1905
|
+
lastUpdated: Scalars['DateTime'];
|
|
1906
|
+
externalEventSourceId: Scalars['ID'];
|
|
1907
|
+
deploymentProperties: CompassCreateDeploymentEventPropertiesInput;
|
|
1908
|
+
};
|
|
1909
|
+
export declare type CompassCreateDeploymentEventPropertiesInput = {
|
|
1910
|
+
sequenceNumber: Scalars['Long'];
|
|
1911
|
+
state: CompassDeploymentEventState;
|
|
1912
|
+
pipeline: CompassDeploymentEventPipelineInput;
|
|
1913
|
+
environment: CompassDeploymentEventEnvironmentInput;
|
|
1914
|
+
};
|
|
1915
|
+
export declare type CompassCreateEventInput = {
|
|
1916
|
+
cloudId: Scalars['ID'];
|
|
1917
|
+
event: CompassEventInput;
|
|
1918
|
+
};
|
|
1919
|
+
export declare type CompassCreateEventsPayload = Payload & {
|
|
1920
|
+
__typename?: 'CompassCreateEventsPayload';
|
|
1921
|
+
success: Scalars['Boolean'];
|
|
1922
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1923
|
+
};
|
|
1924
|
+
export declare type CompassCreateFlagEventInput = {
|
|
1925
|
+
displayName: Scalars['String'];
|
|
1926
|
+
lastUpdated: Scalars['DateTime'];
|
|
1927
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1928
|
+
description: Scalars['String'];
|
|
1929
|
+
url: Scalars['URL'];
|
|
1930
|
+
externalEventSourceId: Scalars['ID'];
|
|
1931
|
+
flagProperties: CompassCreateFlagEventPropertiesInput;
|
|
1932
|
+
};
|
|
1933
|
+
export declare type CompassCreateFlagEventPropertiesInput = {
|
|
1934
|
+
id: Scalars['ID'];
|
|
1935
|
+
status?: Maybe<Scalars['String']>;
|
|
1936
|
+
};
|
|
1937
|
+
export declare type CompassCreateIncidentEventInput = {
|
|
1938
|
+
displayName: Scalars['String'];
|
|
1939
|
+
lastUpdated: Scalars['DateTime'];
|
|
1940
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1941
|
+
description: Scalars['String'];
|
|
1942
|
+
url: Scalars['URL'];
|
|
1943
|
+
externalEventSourceId: Scalars['ID'];
|
|
1944
|
+
incidentProperties: CompassCreateIncidentEventPropertiesInput;
|
|
1945
|
+
};
|
|
1946
|
+
export declare type CompassCreateIncidentEventPropertiesInput = {
|
|
1947
|
+
id: Scalars['ID'];
|
|
1948
|
+
state: CompassIncidentEventState;
|
|
1949
|
+
};
|
|
1950
|
+
export declare type CompassCreateLifecycleEventInput = {
|
|
1951
|
+
displayName: Scalars['String'];
|
|
1952
|
+
lastUpdated: Scalars['DateTime'];
|
|
1953
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1954
|
+
description: Scalars['String'];
|
|
1955
|
+
url: Scalars['URL'];
|
|
1956
|
+
externalEventSourceId: Scalars['ID'];
|
|
1957
|
+
lifecycleProperties: CompassLifecycleEventInputProperties;
|
|
1958
|
+
};
|
|
1714
1959
|
export declare type CompassCreateMetricDefinitionInput = {
|
|
1715
1960
|
cloudId: Scalars['ID'];
|
|
1716
1961
|
name: Scalars['String'];
|
|
@@ -1761,6 +2006,30 @@ export declare enum CompassCriteriaNumberComparatorOptions {
|
|
|
1761
2006
|
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
1762
2007
|
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO"
|
|
1763
2008
|
}
|
|
2009
|
+
export declare type CompassCustomEvent = CompassEvent & {
|
|
2010
|
+
__typename?: 'CompassCustomEvent';
|
|
2011
|
+
eventType: CompassEventType;
|
|
2012
|
+
displayName: Scalars['String'];
|
|
2013
|
+
lastUpdated: Scalars['DateTime'];
|
|
2014
|
+
updateSequenceNumber: Scalars['Long'];
|
|
2015
|
+
description?: Maybe<Scalars['String']>;
|
|
2016
|
+
url?: Maybe<Scalars['URL']>;
|
|
2017
|
+
customEventProperties: CompassCustomEventProperties;
|
|
2018
|
+
};
|
|
2019
|
+
export declare enum CompassCustomEventIcon {
|
|
2020
|
+
Info = "INFO",
|
|
2021
|
+
Warning = "WARNING",
|
|
2022
|
+
Checkpoint = "CHECKPOINT"
|
|
2023
|
+
}
|
|
2024
|
+
export declare type CompassCustomEventProperties = {
|
|
2025
|
+
__typename?: 'CompassCustomEventProperties';
|
|
2026
|
+
id: Scalars['ID'];
|
|
2027
|
+
icon?: Maybe<CompassCustomEventIcon>;
|
|
2028
|
+
};
|
|
2029
|
+
export declare type CompassCustomEventPropertiesInput = {
|
|
2030
|
+
id: Scalars['ID'];
|
|
2031
|
+
icon: CompassCustomEventIcon;
|
|
2032
|
+
};
|
|
1764
2033
|
export declare type CompassDeleteAnnouncementInput = {
|
|
1765
2034
|
cloudId: Scalars['ID'];
|
|
1766
2035
|
id: Scalars['ID'];
|
|
@@ -1808,12 +2077,13 @@ export declare type CompassDeploymentEvent = CompassEvent & {
|
|
|
1808
2077
|
lastUpdated: Scalars['DateTime'];
|
|
1809
2078
|
displayName: Scalars['String'];
|
|
1810
2079
|
deploymentSequenceNumber?: Maybe<Scalars['Long']>;
|
|
1811
|
-
updateSequenceNumber
|
|
2080
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1812
2081
|
url?: Maybe<Scalars['URL']>;
|
|
1813
2082
|
description?: Maybe<Scalars['String']>;
|
|
1814
2083
|
state?: Maybe<CompassDeploymentEventState>;
|
|
1815
2084
|
pipeline?: Maybe<CompassDeploymentEventPipeline>;
|
|
1816
2085
|
environment?: Maybe<CompassDeploymentEventEnvironment>;
|
|
2086
|
+
deploymentProperties: CompassDeploymentEventProperties;
|
|
1817
2087
|
};
|
|
1818
2088
|
export declare type CompassDeploymentEventEnvironment = {
|
|
1819
2089
|
__typename?: 'CompassDeploymentEventEnvironment';
|
|
@@ -1844,6 +2114,13 @@ export declare type CompassDeploymentEventPipelineInput = {
|
|
|
1844
2114
|
url: Scalars['String'];
|
|
1845
2115
|
displayName: Scalars['String'];
|
|
1846
2116
|
};
|
|
2117
|
+
export declare type CompassDeploymentEventProperties = {
|
|
2118
|
+
__typename?: 'CompassDeploymentEventProperties';
|
|
2119
|
+
sequenceNumber?: Maybe<Scalars['Long']>;
|
|
2120
|
+
state?: Maybe<CompassDeploymentEventState>;
|
|
2121
|
+
pipeline?: Maybe<CompassDeploymentEventPipeline>;
|
|
2122
|
+
environment?: Maybe<CompassDeploymentEventEnvironment>;
|
|
2123
|
+
};
|
|
1847
2124
|
export declare enum CompassDeploymentEventState {
|
|
1848
2125
|
Pending = "PENDING",
|
|
1849
2126
|
InProgress = "IN_PROGRESS",
|
|
@@ -1870,6 +2147,7 @@ export declare type CompassEvent = {
|
|
|
1870
2147
|
eventType: CompassEventType;
|
|
1871
2148
|
displayName: Scalars['String'];
|
|
1872
2149
|
lastUpdated: Scalars['DateTime'];
|
|
2150
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1873
2151
|
description?: Maybe<Scalars['String']>;
|
|
1874
2152
|
url?: Maybe<Scalars['URL']>;
|
|
1875
2153
|
};
|
|
@@ -1884,13 +2162,34 @@ export declare type CompassEventEdge = {
|
|
|
1884
2162
|
cursor: Scalars['String'];
|
|
1885
2163
|
node?: Maybe<CompassEvent>;
|
|
1886
2164
|
};
|
|
2165
|
+
export declare type CompassEventInput = {
|
|
2166
|
+
deployment?: Maybe<CompassCreateDeploymentEventInput>;
|
|
2167
|
+
build?: Maybe<CompassCreateBuildEventInput>;
|
|
2168
|
+
incident?: Maybe<CompassCreateIncidentEventInput>;
|
|
2169
|
+
flag?: Maybe<CompassCreateFlagEventInput>;
|
|
2170
|
+
alert?: Maybe<CompassCreateAlertEventInput>;
|
|
2171
|
+
lifecycle?: Maybe<CompassCreateLifecycleEventInput>;
|
|
2172
|
+
custom?: Maybe<CompassCreateCustomEventInput>;
|
|
2173
|
+
};
|
|
2174
|
+
export declare type CompassEventSourceResult = EventSource | QueryError;
|
|
1887
2175
|
export declare type CompassEventTimeParameters = {
|
|
1888
2176
|
startFrom?: Maybe<Scalars['DateTime']>;
|
|
1889
2177
|
endAt?: Maybe<Scalars['DateTime']>;
|
|
1890
2178
|
};
|
|
1891
2179
|
export declare enum CompassEventType {
|
|
1892
|
-
Deployment = "DEPLOYMENT"
|
|
2180
|
+
Deployment = "DEPLOYMENT",
|
|
2181
|
+
Build = "BUILD",
|
|
2182
|
+
Incident = "INCIDENT",
|
|
2183
|
+
Flag = "FLAG",
|
|
2184
|
+
Alert = "ALERT",
|
|
2185
|
+
Lifecycle = "LIFECYCLE",
|
|
2186
|
+
Custom = "CUSTOM"
|
|
1893
2187
|
}
|
|
2188
|
+
export declare type CompassEventsInEventSourceQuery = {
|
|
2189
|
+
first?: Maybe<Scalars['Int']>;
|
|
2190
|
+
after?: Maybe<Scalars['String']>;
|
|
2191
|
+
timeParameters?: Maybe<CompassEventTimeParameters>;
|
|
2192
|
+
};
|
|
1894
2193
|
export declare type CompassEventsQuery = {
|
|
1895
2194
|
eventTypes?: Maybe<Array<CompassEventType>>;
|
|
1896
2195
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -1933,6 +2232,21 @@ export declare enum CompassFieldType {
|
|
|
1933
2232
|
export declare type CompassFieldValueInput = {
|
|
1934
2233
|
enum?: Maybe<CompassEnumFieldValueInput>;
|
|
1935
2234
|
};
|
|
2235
|
+
export declare type CompassFlagEvent = CompassEvent & {
|
|
2236
|
+
__typename?: 'CompassFlagEvent';
|
|
2237
|
+
eventType: CompassEventType;
|
|
2238
|
+
displayName: Scalars['String'];
|
|
2239
|
+
lastUpdated: Scalars['DateTime'];
|
|
2240
|
+
updateSequenceNumber: Scalars['Long'];
|
|
2241
|
+
description?: Maybe<Scalars['String']>;
|
|
2242
|
+
url?: Maybe<Scalars['URL']>;
|
|
2243
|
+
flagProperties: CompassFlagEventProperties;
|
|
2244
|
+
};
|
|
2245
|
+
export declare type CompassFlagEventProperties = {
|
|
2246
|
+
__typename?: 'CompassFlagEventProperties';
|
|
2247
|
+
id: Scalars['ID'];
|
|
2248
|
+
status?: Maybe<Scalars['String']>;
|
|
2249
|
+
};
|
|
1936
2250
|
export declare type CompassHasDescriptionScorecardCriteria = CompassScorecardCriteria & {
|
|
1937
2251
|
__typename?: 'CompassHasDescriptionScorecardCriteria';
|
|
1938
2252
|
id: Scalars['ID'];
|
|
@@ -1984,6 +2298,27 @@ export declare type CompassHasOwnerScorecardCriteria = CompassScorecardCriteria
|
|
|
1984
2298
|
export declare type CompassHasOwnerScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
1985
2299
|
query?: Maybe<CompassScorecardCriteriaScoreQuery>;
|
|
1986
2300
|
};
|
|
2301
|
+
export declare type CompassIncidentEvent = CompassEvent & {
|
|
2302
|
+
__typename?: 'CompassIncidentEvent';
|
|
2303
|
+
eventType: CompassEventType;
|
|
2304
|
+
displayName: Scalars['String'];
|
|
2305
|
+
lastUpdated: Scalars['DateTime'];
|
|
2306
|
+
updateSequenceNumber: Scalars['Long'];
|
|
2307
|
+
description?: Maybe<Scalars['String']>;
|
|
2308
|
+
url?: Maybe<Scalars['URL']>;
|
|
2309
|
+
incidentProperties: CompassIncidentEventProperties;
|
|
2310
|
+
};
|
|
2311
|
+
export declare type CompassIncidentEventProperties = {
|
|
2312
|
+
__typename?: 'CompassIncidentEventProperties';
|
|
2313
|
+
id: Scalars['ID'];
|
|
2314
|
+
state?: Maybe<CompassIncidentEventState>;
|
|
2315
|
+
};
|
|
2316
|
+
export declare enum CompassIncidentEventState {
|
|
2317
|
+
Open = "OPEN",
|
|
2318
|
+
Resolved = "RESOLVED",
|
|
2319
|
+
Closed = "CLOSED",
|
|
2320
|
+
Deleted = "DELETED"
|
|
2321
|
+
}
|
|
1987
2322
|
export declare type CompassInsertMetricValueInput = {
|
|
1988
2323
|
metricSourceId: Scalars['ID'];
|
|
1989
2324
|
value: CompassMetricValueInput;
|
|
@@ -1994,6 +2329,31 @@ export declare type CompassInsertMetricValuePayload = Payload & {
|
|
|
1994
2329
|
errors?: Maybe<Array<MutationError>>;
|
|
1995
2330
|
metricSource?: Maybe<CompassMetricSource>;
|
|
1996
2331
|
};
|
|
2332
|
+
export declare type CompassLifecycleEvent = CompassEvent & {
|
|
2333
|
+
__typename?: 'CompassLifecycleEvent';
|
|
2334
|
+
eventType: CompassEventType;
|
|
2335
|
+
displayName: Scalars['String'];
|
|
2336
|
+
lastUpdated: Scalars['DateTime'];
|
|
2337
|
+
updateSequenceNumber: Scalars['Long'];
|
|
2338
|
+
description?: Maybe<Scalars['String']>;
|
|
2339
|
+
url?: Maybe<Scalars['URL']>;
|
|
2340
|
+
lifecycleProperties: CompassLifecycleEventProperties;
|
|
2341
|
+
};
|
|
2342
|
+
export declare type CompassLifecycleEventInputProperties = {
|
|
2343
|
+
id: Scalars['ID'];
|
|
2344
|
+
stage: CompassLifecycleEventStage;
|
|
2345
|
+
};
|
|
2346
|
+
export declare type CompassLifecycleEventProperties = {
|
|
2347
|
+
__typename?: 'CompassLifecycleEventProperties';
|
|
2348
|
+
id: Scalars['ID'];
|
|
2349
|
+
stage?: Maybe<CompassLifecycleEventStage>;
|
|
2350
|
+
};
|
|
2351
|
+
export declare enum CompassLifecycleEventStage {
|
|
2352
|
+
PreRelease = "PRE_RELEASE",
|
|
2353
|
+
Production = "PRODUCTION",
|
|
2354
|
+
Deprecation = "DEPRECATION",
|
|
2355
|
+
EndOfLife = "END_OF_LIFE"
|
|
2356
|
+
}
|
|
1997
2357
|
export declare type CompassLink = {
|
|
1998
2358
|
__typename?: 'CompassLink';
|
|
1999
2359
|
id: Scalars['ID'];
|
|
@@ -2173,6 +2533,7 @@ export declare type CompassScorecard = Node & {
|
|
|
2173
2533
|
importance: CompassScorecardImportance;
|
|
2174
2534
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
2175
2535
|
appliedToComponents?: Maybe<CompassScorecardAppliedToComponentsQueryResult>;
|
|
2536
|
+
componentLabels?: Maybe<Array<CompassComponentLabel>>;
|
|
2176
2537
|
changeMetadata: CompassChangeMetadata;
|
|
2177
2538
|
};
|
|
2178
2539
|
export declare type CompassScorecardScorecardScoreArgs = {
|
|
@@ -2307,6 +2668,15 @@ export declare type CompassStarredComponentQuery = {
|
|
|
2307
2668
|
after?: Maybe<Scalars['String']>;
|
|
2308
2669
|
};
|
|
2309
2670
|
export declare type CompassStarredComponentQueryResult = CompassStarredComponentConnection | QueryError;
|
|
2671
|
+
export declare type CompassSynchronizeLinkAssociationsInput = {
|
|
2672
|
+
cloudId: Scalars['ID'];
|
|
2673
|
+
forgeAppId: Scalars['ID'];
|
|
2674
|
+
};
|
|
2675
|
+
export declare type CompassSynchronizeLinkAssociationsPayload = Payload & {
|
|
2676
|
+
__typename?: 'CompassSynchronizeLinkAssociationsPayload';
|
|
2677
|
+
success: Scalars['Boolean'];
|
|
2678
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2679
|
+
};
|
|
2310
2680
|
export declare type CompassTeamCheckin = {
|
|
2311
2681
|
__typename?: 'CompassTeamCheckin';
|
|
2312
2682
|
teamId?: Maybe<Scalars['ID']>;
|
|
@@ -2451,22 +2821,14 @@ export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
|
2451
2821
|
errors?: Maybe<Array<MutationError>>;
|
|
2452
2822
|
node?: Maybe<Scalars['Int']>;
|
|
2453
2823
|
};
|
|
2454
|
-
export declare type
|
|
2455
|
-
id?: Maybe<Scalars['ID']>;
|
|
2456
|
-
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2457
|
-
space?: Maybe<ConfluenceSpace>;
|
|
2458
|
-
status?: Maybe<ConfluenceContentStatus>;
|
|
2459
|
-
title?: Maybe<Scalars['String']>;
|
|
2460
|
-
type?: Maybe<ConfluenceContentType>;
|
|
2461
|
-
};
|
|
2462
|
-
export declare type ConfluenceBlogPost = ConfluenceAbstractPage & {
|
|
2824
|
+
export declare type ConfluenceBlogPost = {
|
|
2463
2825
|
__typename?: 'ConfluenceBlogPost';
|
|
2464
2826
|
blogPostId: Scalars['ID'];
|
|
2465
|
-
id
|
|
2827
|
+
id: Scalars['ID'];
|
|
2466
2828
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
2467
2829
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2468
2830
|
space?: Maybe<ConfluenceSpace>;
|
|
2469
|
-
status?: Maybe<
|
|
2831
|
+
status?: Maybe<ConfluenceBlogPostStatus>;
|
|
2470
2832
|
title?: Maybe<Scalars['String']>;
|
|
2471
2833
|
type?: Maybe<ConfluenceContentType>;
|
|
2472
2834
|
};
|
|
@@ -2475,20 +2837,34 @@ export declare type ConfluenceBlogPostLinks = {
|
|
|
2475
2837
|
base?: Maybe<Scalars['String']>;
|
|
2476
2838
|
webUi?: Maybe<Scalars['String']>;
|
|
2477
2839
|
};
|
|
2840
|
+
export declare enum ConfluenceBlogPostStatus {
|
|
2841
|
+
Archived = "ARCHIVED",
|
|
2842
|
+
Current = "CURRENT",
|
|
2843
|
+
Deleted = "DELETED",
|
|
2844
|
+
Draft = "DRAFT",
|
|
2845
|
+
Historical = "HISTORICAL",
|
|
2846
|
+
Trashed = "TRASHED"
|
|
2847
|
+
}
|
|
2478
2848
|
export declare type ConfluenceComment = {
|
|
2479
2849
|
__typename?: 'ConfluenceComment';
|
|
2480
2850
|
author?: Maybe<ConfluenceUserInfo>;
|
|
2481
2851
|
commentId?: Maybe<Scalars['ID']>;
|
|
2482
|
-
container?: Maybe<
|
|
2483
|
-
id
|
|
2852
|
+
container?: Maybe<ConfluenceCommentContainer>;
|
|
2853
|
+
id: Scalars['ID'];
|
|
2484
2854
|
links?: Maybe<ConfluenceCommentLinks>;
|
|
2485
2855
|
name?: Maybe<Scalars['String']>;
|
|
2856
|
+
status?: Maybe<ConfluenceCommentStatus>;
|
|
2486
2857
|
};
|
|
2858
|
+
export declare type ConfluenceCommentContainer = ConfluenceBlogPost | ConfluencePage;
|
|
2487
2859
|
export declare type ConfluenceCommentLinks = {
|
|
2488
2860
|
__typename?: 'ConfluenceCommentLinks';
|
|
2489
2861
|
base?: Maybe<Scalars['String']>;
|
|
2490
2862
|
webUi?: Maybe<Scalars['String']>;
|
|
2491
2863
|
};
|
|
2864
|
+
export declare enum ConfluenceCommentStatus {
|
|
2865
|
+
Current = "CURRENT",
|
|
2866
|
+
Draft = "DRAFT"
|
|
2867
|
+
}
|
|
2492
2868
|
export declare type ConfluenceContentBody = {
|
|
2493
2869
|
__typename?: 'ConfluenceContentBody';
|
|
2494
2870
|
adf?: Maybe<Scalars['String']>;
|
|
@@ -2499,18 +2875,26 @@ export declare type ConfluenceContentBody = {
|
|
|
2499
2875
|
styledView?: Maybe<Scalars['String']>;
|
|
2500
2876
|
view?: Maybe<Scalars['String']>;
|
|
2501
2877
|
};
|
|
2878
|
+
export declare type ConfluenceContentBodyInput = {
|
|
2879
|
+
representation: ConfluenceContentRepresentation;
|
|
2880
|
+
value: Scalars['String'];
|
|
2881
|
+
};
|
|
2502
2882
|
export declare type ConfluenceContentMetadata = {
|
|
2503
2883
|
__typename?: 'ConfluenceContentMetadata';
|
|
2504
2884
|
titleEmojiDraft?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2505
2885
|
titleEmojiPublished?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2506
2886
|
};
|
|
2507
|
-
export declare enum
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2887
|
+
export declare enum ConfluenceContentRepresentation {
|
|
2888
|
+
AtlasDocFormat = "ATLAS_DOC_FORMAT",
|
|
2889
|
+
Editor = "EDITOR",
|
|
2890
|
+
Editor2 = "EDITOR2",
|
|
2891
|
+
ExportView = "EXPORT_VIEW",
|
|
2892
|
+
Plain = "PLAIN",
|
|
2893
|
+
Raw = "RAW",
|
|
2894
|
+
Storage = "STORAGE",
|
|
2895
|
+
StyledView = "STYLED_VIEW",
|
|
2896
|
+
View = "VIEW",
|
|
2897
|
+
Wiki = "WIKI"
|
|
2514
2898
|
}
|
|
2515
2899
|
export declare type ConfluenceContentTitleEmoji = {
|
|
2516
2900
|
__typename?: 'ConfluenceContentTitleEmoji';
|
|
@@ -2524,6 +2908,30 @@ export declare enum ConfluenceContentType {
|
|
|
2524
2908
|
Comment = "COMMENT",
|
|
2525
2909
|
Page = "PAGE"
|
|
2526
2910
|
}
|
|
2911
|
+
export declare type ConfluenceCreateBlogPostInput = {
|
|
2912
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
2913
|
+
spaceId: Scalars['ID'];
|
|
2914
|
+
status?: Maybe<ConfluenceMutationContentStatus>;
|
|
2915
|
+
title?: Maybe<Scalars['String']>;
|
|
2916
|
+
};
|
|
2917
|
+
export declare type ConfluenceCreateBlogPostPayload = Payload & {
|
|
2918
|
+
__typename?: 'ConfluenceCreateBlogPostPayload';
|
|
2919
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
2920
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2921
|
+
success: Scalars['Boolean'];
|
|
2922
|
+
};
|
|
2923
|
+
export declare type ConfluenceCreatePageInput = {
|
|
2924
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
2925
|
+
spaceId: Scalars['ID'];
|
|
2926
|
+
status?: Maybe<ConfluenceMutationContentStatus>;
|
|
2927
|
+
title?: Maybe<Scalars['String']>;
|
|
2928
|
+
};
|
|
2929
|
+
export declare type ConfluenceCreatePagePayload = Payload & {
|
|
2930
|
+
__typename?: 'ConfluenceCreatePagePayload';
|
|
2931
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
2932
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2933
|
+
success: Scalars['Boolean'];
|
|
2934
|
+
};
|
|
2527
2935
|
export declare type ConfluenceCreateSpaceInput = {
|
|
2528
2936
|
key: Scalars['String'];
|
|
2529
2937
|
name: Scalars['String'];
|
|
@@ -2535,18 +2943,53 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
|
2535
2943
|
errors?: Maybe<Array<MutationError>>;
|
|
2536
2944
|
success: Scalars['Boolean'];
|
|
2537
2945
|
};
|
|
2538
|
-
export declare type
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2946
|
+
export declare type ConfluenceCreateUserPropertyInput = {
|
|
2947
|
+
key: Scalars['String'];
|
|
2948
|
+
userId: Scalars['String'];
|
|
2949
|
+
value: Scalars['String'];
|
|
2950
|
+
};
|
|
2951
|
+
export declare type ConfluenceCreateUserPropertyPayload = Payload & {
|
|
2952
|
+
__typename?: 'ConfluenceCreateUserPropertyPayload';
|
|
2953
|
+
confluenceUserProperty?: Maybe<ConfluenceUserProperty>;
|
|
2954
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2955
|
+
success: Scalars['Boolean'];
|
|
2956
|
+
};
|
|
2957
|
+
export declare type ConfluenceDeleteDraftBlogPostInput = {
|
|
2958
|
+
id: Scalars['ID'];
|
|
2959
|
+
};
|
|
2960
|
+
export declare type ConfluenceDeleteDraftBlogPostPayload = Payload & {
|
|
2961
|
+
__typename?: 'ConfluenceDeleteDraftBlogPostPayload';
|
|
2962
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2963
|
+
success: Scalars['Boolean'];
|
|
2964
|
+
};
|
|
2965
|
+
export declare type ConfluenceDeleteDraftPageInput = {
|
|
2966
|
+
id: Scalars['ID'];
|
|
2967
|
+
};
|
|
2968
|
+
export declare type ConfluenceDeleteDraftPagePayload = Payload & {
|
|
2969
|
+
__typename?: 'ConfluenceDeleteDraftPagePayload';
|
|
2970
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2971
|
+
success: Scalars['Boolean'];
|
|
2972
|
+
};
|
|
2973
|
+
export declare type ConfluenceDeleteUserPropertyInput = {
|
|
2974
|
+
id: Scalars['ID'];
|
|
2975
|
+
};
|
|
2976
|
+
export declare type ConfluenceDeleteUserPropertyPayload = Payload & {
|
|
2977
|
+
__typename?: 'ConfluenceDeleteUserPropertyPayload';
|
|
2978
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2979
|
+
success: Scalars['Boolean'];
|
|
2980
|
+
};
|
|
2981
|
+
export declare type ConfluenceInlineTask = {
|
|
2982
|
+
__typename?: 'ConfluenceInlineTask';
|
|
2983
|
+
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
2984
|
+
body?: Maybe<ConfluenceContentBody>;
|
|
2985
|
+
completedBy?: Maybe<ConfluenceUserInfo>;
|
|
2986
|
+
container?: Maybe<ConfluenceInlineTaskContainer>;
|
|
2987
|
+
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
2988
|
+
createdOn?: Maybe<Scalars['String']>;
|
|
2989
|
+
dueOn?: Maybe<Scalars['String']>;
|
|
2990
|
+
globalId?: Maybe<Scalars['ID']>;
|
|
2991
|
+
id: Scalars['ID'];
|
|
2992
|
+
status?: Maybe<ConfluenceInlineTaskStatus>;
|
|
2550
2993
|
taskId?: Maybe<Scalars['ID']>;
|
|
2551
2994
|
updatedOn?: Maybe<Scalars['String']>;
|
|
2552
2995
|
};
|
|
@@ -2563,15 +3006,91 @@ export declare type ConfluenceLabel = {
|
|
|
2563
3006
|
};
|
|
2564
3007
|
export declare type ConfluenceMutationApi = {
|
|
2565
3008
|
__typename?: 'ConfluenceMutationApi';
|
|
3009
|
+
confluenceCreateBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
3010
|
+
confluenceCreatePage?: Maybe<ConfluenceCreatePagePayload>;
|
|
2566
3011
|
confluenceCreateSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
3012
|
+
confluenceDeleteDraftBlogPost?: Maybe<ConfluenceDeleteDraftBlogPostPayload>;
|
|
3013
|
+
confluenceDeleteDraftPage?: Maybe<ConfluenceDeleteDraftPagePayload>;
|
|
3014
|
+
confluencePublishBlogPost?: Maybe<ConfluencePublishBlogPostPayload>;
|
|
3015
|
+
confluencePublishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
3016
|
+
confluencePurgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
3017
|
+
confluencePurgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
3018
|
+
confluenceTrashBlogPost?: Maybe<ConfluenceTrashBlogPostPayload>;
|
|
3019
|
+
confluenceTrashPage?: Maybe<ConfluenceTrashPagePayload>;
|
|
3020
|
+
confluenceUpdateCurrentBlogPost?: Maybe<ConfluenceUpdateCurrentBlogPostPayload>;
|
|
3021
|
+
confluenceUpdateCurrentPage?: Maybe<ConfluenceUpdateCurrentPagePayload>;
|
|
3022
|
+
confluenceUpdateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
3023
|
+
confluenceUpdateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
2567
3024
|
confluenceUpdateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
3025
|
+
confluenceCreateUserProperty?: Maybe<ConfluenceCreateUserPropertyPayload>;
|
|
3026
|
+
confluenceUpdateValueUserProperty?: Maybe<ConfluenceUpdateValueUserPropertyPayload>;
|
|
3027
|
+
confluenceDeleteUserProperty?: Maybe<ConfluenceDeleteUserPropertyPayload>;
|
|
3028
|
+
};
|
|
3029
|
+
export declare type ConfluenceMutationApiConfluenceCreateBlogPostArgs = {
|
|
3030
|
+
cloudId: Scalars['ID'];
|
|
3031
|
+
input: ConfluenceCreateBlogPostInput;
|
|
3032
|
+
};
|
|
3033
|
+
export declare type ConfluenceMutationApiConfluenceCreatePageArgs = {
|
|
3034
|
+
cloudId: Scalars['ID'];
|
|
3035
|
+
input: ConfluenceCreatePageInput;
|
|
2568
3036
|
};
|
|
2569
3037
|
export declare type ConfluenceMutationApiConfluenceCreateSpaceArgs = {
|
|
3038
|
+
cloudId: Scalars['ID'];
|
|
2570
3039
|
input: ConfluenceCreateSpaceInput;
|
|
2571
3040
|
};
|
|
3041
|
+
export declare type ConfluenceMutationApiConfluenceDeleteDraftBlogPostArgs = {
|
|
3042
|
+
input: ConfluenceDeleteDraftBlogPostInput;
|
|
3043
|
+
};
|
|
3044
|
+
export declare type ConfluenceMutationApiConfluenceDeleteDraftPageArgs = {
|
|
3045
|
+
input: ConfluenceDeleteDraftPageInput;
|
|
3046
|
+
};
|
|
3047
|
+
export declare type ConfluenceMutationApiConfluencePublishBlogPostArgs = {
|
|
3048
|
+
input: ConfluencePublishBlogPostInput;
|
|
3049
|
+
};
|
|
3050
|
+
export declare type ConfluenceMutationApiConfluencePublishPageArgs = {
|
|
3051
|
+
input: ConfluencePublishPageInput;
|
|
3052
|
+
};
|
|
3053
|
+
export declare type ConfluenceMutationApiConfluencePurgeBlogPostArgs = {
|
|
3054
|
+
input: ConfluencePurgeBlogPostInput;
|
|
3055
|
+
};
|
|
3056
|
+
export declare type ConfluenceMutationApiConfluencePurgePageArgs = {
|
|
3057
|
+
input: ConfluencePurgePageInput;
|
|
3058
|
+
};
|
|
3059
|
+
export declare type ConfluenceMutationApiConfluenceTrashBlogPostArgs = {
|
|
3060
|
+
input: ConfluenceTrashBlogPostInput;
|
|
3061
|
+
};
|
|
3062
|
+
export declare type ConfluenceMutationApiConfluenceTrashPageArgs = {
|
|
3063
|
+
input: ConfluenceTrashPageInput;
|
|
3064
|
+
};
|
|
3065
|
+
export declare type ConfluenceMutationApiConfluenceUpdateCurrentBlogPostArgs = {
|
|
3066
|
+
input: ConfluenceUpdateCurrentBlogPostInput;
|
|
3067
|
+
};
|
|
3068
|
+
export declare type ConfluenceMutationApiConfluenceUpdateCurrentPageArgs = {
|
|
3069
|
+
input: ConfluenceUpdateCurrentPageInput;
|
|
3070
|
+
};
|
|
3071
|
+
export declare type ConfluenceMutationApiConfluenceUpdateDraftBlogPostArgs = {
|
|
3072
|
+
input: ConfluenceUpdateDraftBlogPostInput;
|
|
3073
|
+
};
|
|
3074
|
+
export declare type ConfluenceMutationApiConfluenceUpdateDraftPageArgs = {
|
|
3075
|
+
input: ConfluenceUpdateDraftPageInput;
|
|
3076
|
+
};
|
|
2572
3077
|
export declare type ConfluenceMutationApiConfluenceUpdateSpaceArgs = {
|
|
2573
3078
|
input: ConfluenceUpdateSpaceInput;
|
|
2574
3079
|
};
|
|
3080
|
+
export declare type ConfluenceMutationApiConfluenceCreateUserPropertyArgs = {
|
|
3081
|
+
cloudId: Scalars['String'];
|
|
3082
|
+
input: ConfluenceCreateUserPropertyInput;
|
|
3083
|
+
};
|
|
3084
|
+
export declare type ConfluenceMutationApiConfluenceUpdateValueUserPropertyArgs = {
|
|
3085
|
+
input: ConfluenceUpdateValueUserPropertyInput;
|
|
3086
|
+
};
|
|
3087
|
+
export declare type ConfluenceMutationApiConfluenceDeleteUserPropertyArgs = {
|
|
3088
|
+
input: ConfluenceDeleteUserPropertyInput;
|
|
3089
|
+
};
|
|
3090
|
+
export declare enum ConfluenceMutationContentStatus {
|
|
3091
|
+
Current = "CURRENT",
|
|
3092
|
+
Draft = "DRAFT"
|
|
3093
|
+
}
|
|
2575
3094
|
export declare type ConfluenceOperationCheck = {
|
|
2576
3095
|
__typename?: 'ConfluenceOperationCheck';
|
|
2577
3096
|
operation?: Maybe<ConfluenceOperationName>;
|
|
@@ -2603,14 +3122,14 @@ export declare enum ConfluenceOperationTarget {
|
|
|
2603
3122
|
Space = "SPACE",
|
|
2604
3123
|
UserProfile = "USER_PROFILE"
|
|
2605
3124
|
}
|
|
2606
|
-
export declare type ConfluencePage =
|
|
3125
|
+
export declare type ConfluencePage = {
|
|
2607
3126
|
__typename?: 'ConfluencePage';
|
|
2608
|
-
id
|
|
3127
|
+
id: Scalars['ID'];
|
|
2609
3128
|
links?: Maybe<ConfluencePageLinks>;
|
|
2610
3129
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2611
3130
|
pageId: Scalars['ID'];
|
|
2612
3131
|
space?: Maybe<ConfluenceSpace>;
|
|
2613
|
-
status?: Maybe<
|
|
3132
|
+
status?: Maybe<ConfluencePageStatus>;
|
|
2614
3133
|
title?: Maybe<Scalars['String']>;
|
|
2615
3134
|
type?: Maybe<ConfluenceContentType>;
|
|
2616
3135
|
};
|
|
@@ -2619,17 +3138,69 @@ export declare type ConfluencePageLinks = {
|
|
|
2619
3138
|
base?: Maybe<Scalars['String']>;
|
|
2620
3139
|
webUi?: Maybe<Scalars['String']>;
|
|
2621
3140
|
};
|
|
3141
|
+
export declare enum ConfluencePageStatus {
|
|
3142
|
+
Archived = "ARCHIVED",
|
|
3143
|
+
Current = "CURRENT",
|
|
3144
|
+
Deleted = "DELETED",
|
|
3145
|
+
Draft = "DRAFT",
|
|
3146
|
+
Historical = "HISTORICAL",
|
|
3147
|
+
Trashed = "TRASHED"
|
|
3148
|
+
}
|
|
3149
|
+
export declare type ConfluencePublishBlogPostInput = {
|
|
3150
|
+
id: Scalars['ID'];
|
|
3151
|
+
publishTitle?: Maybe<Scalars['String']>;
|
|
3152
|
+
};
|
|
3153
|
+
export declare type ConfluencePublishBlogPostPayload = Payload & {
|
|
3154
|
+
__typename?: 'ConfluencePublishBlogPostPayload';
|
|
3155
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3156
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3157
|
+
success: Scalars['Boolean'];
|
|
3158
|
+
};
|
|
3159
|
+
export declare type ConfluencePublishPageInput = {
|
|
3160
|
+
id: Scalars['ID'];
|
|
3161
|
+
publishTitle?: Maybe<Scalars['String']>;
|
|
3162
|
+
};
|
|
3163
|
+
export declare type ConfluencePublishPagePayload = Payload & {
|
|
3164
|
+
__typename?: 'ConfluencePublishPagePayload';
|
|
3165
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3166
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3167
|
+
success: Scalars['Boolean'];
|
|
3168
|
+
};
|
|
3169
|
+
export declare type ConfluencePurgeBlogPostInput = {
|
|
3170
|
+
id: Scalars['ID'];
|
|
3171
|
+
};
|
|
3172
|
+
export declare type ConfluencePurgeBlogPostPayload = Payload & {
|
|
3173
|
+
__typename?: 'ConfluencePurgeBlogPostPayload';
|
|
3174
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3175
|
+
success: Scalars['Boolean'];
|
|
3176
|
+
};
|
|
3177
|
+
export declare type ConfluencePurgePageInput = {
|
|
3178
|
+
id: Scalars['ID'];
|
|
3179
|
+
};
|
|
3180
|
+
export declare type ConfluencePurgePagePayload = Payload & {
|
|
3181
|
+
__typename?: 'ConfluencePurgePagePayload';
|
|
3182
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3183
|
+
success: Scalars['Boolean'];
|
|
3184
|
+
};
|
|
2622
3185
|
export declare type ConfluenceQueryApi = {
|
|
2623
3186
|
__typename?: 'ConfluenceQueryApi';
|
|
3187
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3188
|
+
confluenceBlogPosts?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
2624
3189
|
confluenceComment?: Maybe<ConfluenceComment>;
|
|
2625
3190
|
confluenceComments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
2626
3191
|
confluenceInlineTask?: Maybe<ConfluenceInlineTask>;
|
|
2627
|
-
confluencePage?: Maybe<
|
|
2628
|
-
|
|
2629
|
-
confluencePages?: Maybe<Array<Maybe<ConfluenceAbstractPage>>>;
|
|
2630
|
-
confluencePagesWithFilters?: Maybe<Array<Maybe<ConfluenceAbstractPage>>>;
|
|
3192
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3193
|
+
confluencePages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
2631
3194
|
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
2632
3195
|
confluenceSpaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
3196
|
+
confluenceUserProperty?: Maybe<ConfluenceUserProperty>;
|
|
3197
|
+
confluenceUserProperties?: Maybe<Array<Maybe<ConfluenceUserProperty>>>;
|
|
3198
|
+
};
|
|
3199
|
+
export declare type ConfluenceQueryApiConfluenceBlogPostArgs = {
|
|
3200
|
+
id: Scalars['ID'];
|
|
3201
|
+
};
|
|
3202
|
+
export declare type ConfluenceQueryApiConfluenceBlogPostsArgs = {
|
|
3203
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
2633
3204
|
};
|
|
2634
3205
|
export declare type ConfluenceQueryApiConfluenceCommentArgs = {
|
|
2635
3206
|
id: Scalars['ID'];
|
|
@@ -2643,36 +3214,35 @@ export declare type ConfluenceQueryApiConfluenceInlineTaskArgs = {
|
|
|
2643
3214
|
export declare type ConfluenceQueryApiConfluencePageArgs = {
|
|
2644
3215
|
id: Scalars['ID'];
|
|
2645
3216
|
};
|
|
2646
|
-
export declare type ConfluenceQueryApiConfluencePageWithFiltersArgs = {
|
|
2647
|
-
id: Scalars['ID'];
|
|
2648
|
-
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
2649
|
-
};
|
|
2650
3217
|
export declare type ConfluenceQueryApiConfluencePagesArgs = {
|
|
2651
3218
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
2652
3219
|
};
|
|
2653
|
-
export declare type ConfluenceQueryApiConfluencePagesWithFiltersArgs = {
|
|
2654
|
-
ids: Array<Maybe<Scalars['ID']>>;
|
|
2655
|
-
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
2656
|
-
};
|
|
2657
3220
|
export declare type ConfluenceQueryApiConfluenceSpaceArgs = {
|
|
2658
3221
|
id: Scalars['ID'];
|
|
2659
3222
|
};
|
|
2660
3223
|
export declare type ConfluenceQueryApiConfluenceSpacesArgs = {
|
|
2661
3224
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
2662
3225
|
};
|
|
3226
|
+
export declare type ConfluenceQueryApiConfluenceUserPropertyArgs = {
|
|
3227
|
+
id: Scalars['ID'];
|
|
3228
|
+
};
|
|
3229
|
+
export declare type ConfluenceQueryApiConfluenceUserPropertiesArgs = {
|
|
3230
|
+
ids: Array<Scalars['ID']>;
|
|
3231
|
+
};
|
|
2663
3232
|
export declare type ConfluenceSpace = {
|
|
2664
3233
|
__typename?: 'ConfluenceSpace';
|
|
3234
|
+
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
3235
|
+
createdDate?: Maybe<Scalars['String']>;
|
|
2665
3236
|
description?: Maybe<ConfluenceSpaceDescription>;
|
|
2666
|
-
|
|
2667
|
-
homepage?: Maybe<ConfluenceAbstractPage>;
|
|
3237
|
+
homepage?: Maybe<ConfluencePage>;
|
|
2668
3238
|
icon?: Maybe<ConfluenceSpaceIcon>;
|
|
2669
|
-
id
|
|
3239
|
+
id: Scalars['ID'];
|
|
2670
3240
|
key?: Maybe<Scalars['String']>;
|
|
2671
3241
|
links?: Maybe<ConfluenceSpaceLinks>;
|
|
2672
3242
|
metadata?: Maybe<ConfluenceSpaceMetadata>;
|
|
2673
3243
|
name?: Maybe<Scalars['String']>;
|
|
2674
3244
|
operations?: Maybe<Array<Maybe<ConfluenceOperationCheck>>>;
|
|
2675
|
-
spaceId
|
|
3245
|
+
spaceId: Scalars['ID'];
|
|
2676
3246
|
status?: Maybe<ConfluenceSpaceStatus>;
|
|
2677
3247
|
type?: Maybe<ConfluenceSpaceType>;
|
|
2678
3248
|
};
|
|
@@ -2681,11 +3251,6 @@ export declare type ConfluenceSpaceDescription = {
|
|
|
2681
3251
|
plain?: Maybe<Scalars['String']>;
|
|
2682
3252
|
view?: Maybe<Scalars['String']>;
|
|
2683
3253
|
};
|
|
2684
|
-
export declare type ConfluenceSpaceHistory = {
|
|
2685
|
-
__typename?: 'ConfluenceSpaceHistory';
|
|
2686
|
-
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
2687
|
-
createdDate?: Maybe<Scalars['String']>;
|
|
2688
|
-
};
|
|
2689
3254
|
export declare type ConfluenceSpaceIcon = {
|
|
2690
3255
|
__typename?: 'ConfluenceSpaceIcon';
|
|
2691
3256
|
height?: Maybe<Scalars['Int']>;
|
|
@@ -2715,6 +3280,66 @@ export declare enum ConfluenceSpaceType {
|
|
|
2715
3280
|
Global = "GLOBAL",
|
|
2716
3281
|
Personal = "PERSONAL"
|
|
2717
3282
|
}
|
|
3283
|
+
export declare type ConfluenceTrashBlogPostInput = {
|
|
3284
|
+
id: Scalars['ID'];
|
|
3285
|
+
};
|
|
3286
|
+
export declare type ConfluenceTrashBlogPostPayload = Payload & {
|
|
3287
|
+
__typename?: 'ConfluenceTrashBlogPostPayload';
|
|
3288
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3289
|
+
success: Scalars['Boolean'];
|
|
3290
|
+
};
|
|
3291
|
+
export declare type ConfluenceTrashPageInput = {
|
|
3292
|
+
id: Scalars['ID'];
|
|
3293
|
+
};
|
|
3294
|
+
export declare type ConfluenceTrashPagePayload = Payload & {
|
|
3295
|
+
__typename?: 'ConfluenceTrashPagePayload';
|
|
3296
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3297
|
+
success: Scalars['Boolean'];
|
|
3298
|
+
};
|
|
3299
|
+
export declare type ConfluenceUpdateCurrentBlogPostInput = {
|
|
3300
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3301
|
+
id: Scalars['ID'];
|
|
3302
|
+
title?: Maybe<Scalars['String']>;
|
|
3303
|
+
};
|
|
3304
|
+
export declare type ConfluenceUpdateCurrentBlogPostPayload = Payload & {
|
|
3305
|
+
__typename?: 'ConfluenceUpdateCurrentBlogPostPayload';
|
|
3306
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3307
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3308
|
+
success: Scalars['Boolean'];
|
|
3309
|
+
};
|
|
3310
|
+
export declare type ConfluenceUpdateCurrentPageInput = {
|
|
3311
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3312
|
+
id: Scalars['ID'];
|
|
3313
|
+
title?: Maybe<Scalars['String']>;
|
|
3314
|
+
};
|
|
3315
|
+
export declare type ConfluenceUpdateCurrentPagePayload = Payload & {
|
|
3316
|
+
__typename?: 'ConfluenceUpdateCurrentPagePayload';
|
|
3317
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3318
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3319
|
+
success: Scalars['Boolean'];
|
|
3320
|
+
};
|
|
3321
|
+
export declare type ConfluenceUpdateDraftBlogPostInput = {
|
|
3322
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3323
|
+
id: Scalars['ID'];
|
|
3324
|
+
title?: Maybe<Scalars['String']>;
|
|
3325
|
+
};
|
|
3326
|
+
export declare type ConfluenceUpdateDraftBlogPostPayload = Payload & {
|
|
3327
|
+
__typename?: 'ConfluenceUpdateDraftBlogPostPayload';
|
|
3328
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3329
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3330
|
+
success: Scalars['Boolean'];
|
|
3331
|
+
};
|
|
3332
|
+
export declare type ConfluenceUpdateDraftPageInput = {
|
|
3333
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3334
|
+
id: Scalars['ID'];
|
|
3335
|
+
title?: Maybe<Scalars['String']>;
|
|
3336
|
+
};
|
|
3337
|
+
export declare type ConfluenceUpdateDraftPagePayload = Payload & {
|
|
3338
|
+
__typename?: 'ConfluenceUpdateDraftPagePayload';
|
|
3339
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3340
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3341
|
+
success: Scalars['Boolean'];
|
|
3342
|
+
};
|
|
2718
3343
|
export declare type ConfluenceUpdateSpaceInput = {
|
|
2719
3344
|
id: Scalars['ID'];
|
|
2720
3345
|
name?: Maybe<Scalars['String']>;
|
|
@@ -2725,11 +3350,30 @@ export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
|
2725
3350
|
errors?: Maybe<Array<MutationError>>;
|
|
2726
3351
|
success: Scalars['Boolean'];
|
|
2727
3352
|
};
|
|
3353
|
+
export declare type ConfluenceUpdateValueUserPropertyInput = {
|
|
3354
|
+
id: Scalars['ID'];
|
|
3355
|
+
value: Scalars['String'];
|
|
3356
|
+
};
|
|
3357
|
+
export declare type ConfluenceUpdateValueUserPropertyPayload = Payload & {
|
|
3358
|
+
__typename?: 'ConfluenceUpdateValueUserPropertyPayload';
|
|
3359
|
+
confluenceUserProperty?: Maybe<ConfluenceUserProperty>;
|
|
3360
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3361
|
+
success: Scalars['Boolean'];
|
|
3362
|
+
};
|
|
2728
3363
|
export declare type ConfluenceUserInfo = {
|
|
2729
3364
|
__typename?: 'ConfluenceUserInfo';
|
|
2730
3365
|
user?: Maybe<User>;
|
|
2731
3366
|
personalSpace?: Maybe<ConfluenceSpace>;
|
|
2732
3367
|
};
|
|
3368
|
+
export declare type ConfluenceUserProperty = {
|
|
3369
|
+
__typename?: 'ConfluenceUserProperty';
|
|
3370
|
+
createdDate: Scalars['String'];
|
|
3371
|
+
id: Scalars['ID'];
|
|
3372
|
+
key: Scalars['String'];
|
|
3373
|
+
lastModifiedDate: Scalars['String'];
|
|
3374
|
+
propertyId: Scalars['ID'];
|
|
3375
|
+
value: Scalars['String'];
|
|
3376
|
+
};
|
|
2733
3377
|
export declare type ConnectAppScope = {
|
|
2734
3378
|
__typename?: 'ConnectAppScope';
|
|
2735
3379
|
scopeId: Scalars['ID'];
|
|
@@ -2885,7 +3529,7 @@ export declare type ContentPlatformPracticePage = {
|
|
|
2885
3529
|
__typename?: 'ContentPlatformPracticePage';
|
|
2886
3530
|
name: Scalars['String'];
|
|
2887
3531
|
tagline: Scalars['String'];
|
|
2888
|
-
|
|
3532
|
+
introToPractice: ContentPlatformIntroToPractice;
|
|
2889
3533
|
whatIs: ContentPlatformChunkWhatIs;
|
|
2890
3534
|
benefits?: Maybe<ContentPlatformChunkBenefits>;
|
|
2891
3535
|
deepDive?: Maybe<ContentPlatformChunkDeepDive>;
|
|
@@ -2894,6 +3538,16 @@ export declare type ContentPlatformPracticePage = {
|
|
|
2894
3538
|
howTo?: Maybe<ContentPlatformChunkHowTo>;
|
|
2895
3539
|
practice: ContentPlatformWhatPractice;
|
|
2896
3540
|
};
|
|
3541
|
+
export declare type ContentPlatformPracticePagesConnection = {
|
|
3542
|
+
__typename?: 'ContentPlatformPracticePagesConnection';
|
|
3543
|
+
pageInfo: PageInfo;
|
|
3544
|
+
edges: Array<ContentPlatformPracticePagesEdge>;
|
|
3545
|
+
};
|
|
3546
|
+
export declare type ContentPlatformPracticePagesEdge = {
|
|
3547
|
+
__typename?: 'ContentPlatformPracticePagesEdge';
|
|
3548
|
+
node: ContentPlatformPracticePage;
|
|
3549
|
+
cursor: Scalars['String'];
|
|
3550
|
+
};
|
|
2897
3551
|
export declare type ContentPlatformReleaseNote = {
|
|
2898
3552
|
__typename?: 'ContentPlatformReleaseNote';
|
|
2899
3553
|
releaseNoteId: Scalars['String'];
|
|
@@ -2922,6 +3576,7 @@ export declare type ContentPlatformReleaseNote = {
|
|
|
2922
3576
|
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
2923
3577
|
publishStatus?: Maybe<Scalars['String']>;
|
|
2924
3578
|
benefitsList?: Maybe<Scalars['JSON']>;
|
|
3579
|
+
getStarted?: Maybe<Scalars['JSON']>;
|
|
2925
3580
|
};
|
|
2926
3581
|
export declare type ContentPlatformReleaseNoteEntry = {
|
|
2927
3582
|
__typename?: 'ContentPlatformReleaseNoteEntry';
|
|
@@ -2950,6 +3605,7 @@ export declare type ContentPlatformReleaseNoteEntry = {
|
|
|
2950
3605
|
updatedAt: Scalars['String'];
|
|
2951
3606
|
url: Scalars['String'];
|
|
2952
3607
|
benefitsList: Scalars['JSON'];
|
|
3608
|
+
getStarted: Scalars['JSON'];
|
|
2953
3609
|
};
|
|
2954
3610
|
export declare type ContentPlatformReleaseNoteFilterOptions = {
|
|
2955
3611
|
fdIssueLinks?: Maybe<Array<Scalars['String']>>;
|
|
@@ -3100,7 +3756,7 @@ export declare type CreateColumnInput = {
|
|
|
3100
3756
|
export declare type CreateColumnOutput = MutationResponse & {
|
|
3101
3757
|
__typename?: 'CreateColumnOutput';
|
|
3102
3758
|
newColumn?: Maybe<Column>;
|
|
3103
|
-
columns?: Maybe<Array<Column
|
|
3759
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
3104
3760
|
statusCode: Scalars['Int'];
|
|
3105
3761
|
success: Scalars['Boolean'];
|
|
3106
3762
|
message: Scalars['String'];
|
|
@@ -3203,6 +3859,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
3203
3859
|
componentType: CompassComponentType;
|
|
3204
3860
|
importance: CompassScorecardImportance;
|
|
3205
3861
|
criterias?: Maybe<Array<CreateCompassScorecardCriteriaInput>>;
|
|
3862
|
+
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
3206
3863
|
};
|
|
3207
3864
|
export declare type CreateCompassScorecardPayload = Payload & {
|
|
3208
3865
|
__typename?: 'CreateCompassScorecardPayload';
|
|
@@ -3310,6 +3967,7 @@ export declare type CreateDevOpsServiceRelationshipPayload = Payload & {
|
|
|
3310
3967
|
serviceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
3311
3968
|
};
|
|
3312
3969
|
export declare type CreateEventSourceInput = {
|
|
3970
|
+
cloudId: Scalars['ID'];
|
|
3313
3971
|
externalEventSourceId: Scalars['ID'];
|
|
3314
3972
|
eventType: CompassEventType;
|
|
3315
3973
|
};
|
|
@@ -3487,6 +4145,10 @@ export declare type CreatePolarisViewSetPayload = Payload & {
|
|
|
3487
4145
|
errors?: Maybe<Array<MutationError>>;
|
|
3488
4146
|
node?: Maybe<PolarisViewSet>;
|
|
3489
4147
|
};
|
|
4148
|
+
export declare type CreateRankingListInput = {
|
|
4149
|
+
listId: Scalars['ID'];
|
|
4150
|
+
items?: Maybe<Array<Scalars['String']>>;
|
|
4151
|
+
};
|
|
3490
4152
|
export declare type CreateSprintInput = {
|
|
3491
4153
|
boardId: Scalars['ID'];
|
|
3492
4154
|
};
|
|
@@ -3566,6 +4228,7 @@ export declare type CustomUiTunnelDefinitionInput = {
|
|
|
3566
4228
|
export declare type CustomerUser = User & LocalizationContext & {
|
|
3567
4229
|
__typename?: 'CustomerUser';
|
|
3568
4230
|
accountId: Scalars['ID'];
|
|
4231
|
+
canonicalAccountId: Scalars['ID'];
|
|
3569
4232
|
accountStatus: AccountStatus;
|
|
3570
4233
|
name: Scalars['String'];
|
|
3571
4234
|
picture: Scalars['URL'];
|
|
@@ -3624,7 +4287,7 @@ export declare type DeleteColumnInput = {
|
|
|
3624
4287
|
};
|
|
3625
4288
|
export declare type DeleteColumnOutput = MutationResponse & {
|
|
3626
4289
|
__typename?: 'DeleteColumnOutput';
|
|
3627
|
-
columns?: Maybe<Array<Column
|
|
4290
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
3628
4291
|
statusCode: Scalars['Int'];
|
|
3629
4292
|
success: Scalars['Boolean'];
|
|
3630
4293
|
message: Scalars['String'];
|
|
@@ -3760,6 +4423,7 @@ export declare type DeleteDevOpsServiceRelationshipPayload = Payload & {
|
|
|
3760
4423
|
errors?: Maybe<Array<MutationError>>;
|
|
3761
4424
|
};
|
|
3762
4425
|
export declare type DeleteEventSourceInput = {
|
|
4426
|
+
cloudId: Scalars['ID'];
|
|
3763
4427
|
externalEventSourceId: Scalars['ID'];
|
|
3764
4428
|
eventType: CompassEventType;
|
|
3765
4429
|
};
|
|
@@ -3901,6 +4565,13 @@ export declare type DetachEventSourcePayload = Payload & {
|
|
|
3901
4565
|
success: Scalars['Boolean'];
|
|
3902
4566
|
errors?: Maybe<Array<MutationError>>;
|
|
3903
4567
|
};
|
|
4568
|
+
export declare type DevOps = {
|
|
4569
|
+
__typename?: 'DevOps';
|
|
4570
|
+
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
4571
|
+
};
|
|
4572
|
+
export declare type DevOpsSummarisedDeploymentsArgs = {
|
|
4573
|
+
ids: Array<Scalars['ID']>;
|
|
4574
|
+
};
|
|
3904
4575
|
export declare type DevOpsAvatar = {
|
|
3905
4576
|
__typename?: 'DevOpsAvatar';
|
|
3906
4577
|
url?: Maybe<Scalars['URL']>;
|
|
@@ -4361,6 +5032,13 @@ export declare type DevOpsServicesFilterInput = {
|
|
|
4361
5032
|
nameContains?: Maybe<Scalars['String']>;
|
|
4362
5033
|
tierLevelIn?: Maybe<Array<Scalars['Int']>>;
|
|
4363
5034
|
};
|
|
5035
|
+
export declare type DevOpsSummarisedDeployments = {
|
|
5036
|
+
__typename?: 'DevOpsSummarisedDeployments';
|
|
5037
|
+
entityId: Scalars['ID'];
|
|
5038
|
+
count?: Maybe<Scalars['Int']>;
|
|
5039
|
+
deploymentState?: Maybe<DeploymentState>;
|
|
5040
|
+
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
5041
|
+
};
|
|
4364
5042
|
export declare type DevOpsThirdPartyRepository = {
|
|
4365
5043
|
__typename?: 'DevOpsThirdPartyRepository';
|
|
4366
5044
|
id: Scalars['ID'];
|
|
@@ -4368,23 +5046,18 @@ export declare type DevOpsThirdPartyRepository = {
|
|
|
4368
5046
|
name?: Maybe<Scalars['String']>;
|
|
4369
5047
|
avatar?: Maybe<DevOpsAvatar>;
|
|
4370
5048
|
};
|
|
4371
|
-
export declare type DevOpsTool = {
|
|
4372
|
-
|
|
4373
|
-
name: Scalars['String'];
|
|
4374
|
-
productKey: Scalars['String'];
|
|
4375
|
-
avatar?: Maybe<DevOpsToolAvatar>;
|
|
4376
|
-
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
4377
|
-
};
|
|
4378
|
-
export declare type DevOpsToolAvailable = DevOpsTool & Node & {
|
|
4379
|
-
__typename?: 'DevOpsToolAvailable';
|
|
5049
|
+
export declare type DevOpsTool = Node & {
|
|
5050
|
+
__typename?: 'DevOpsTool';
|
|
4380
5051
|
id: Scalars['ID'];
|
|
4381
5052
|
name: Scalars['String'];
|
|
4382
5053
|
productKey: Scalars['String'];
|
|
4383
5054
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
4384
|
-
|
|
5055
|
+
group: DevOpsToolGroup;
|
|
5056
|
+
supportsContainers: Scalars['Boolean'];
|
|
5057
|
+
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
4385
5058
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
4386
5059
|
};
|
|
4387
|
-
export declare type
|
|
5060
|
+
export declare type DevOpsToolNamespacesArgs = {
|
|
4388
5061
|
query?: Maybe<Scalars['String']>;
|
|
4389
5062
|
first?: Maybe<Scalars['Int']>;
|
|
4390
5063
|
after?: Maybe<Scalars['String']>;
|
|
@@ -4393,11 +5066,20 @@ export declare type DevOpsToolAvatar = {
|
|
|
4393
5066
|
__typename?: 'DevOpsToolAvatar';
|
|
4394
5067
|
url: Scalars['URL'];
|
|
4395
5068
|
};
|
|
4396
|
-
export declare
|
|
4397
|
-
|
|
4398
|
-
|
|
4399
|
-
|
|
4400
|
-
|
|
5069
|
+
export declare type DevOpsToolBitbucketCreate = DevOpsToolContainerCreationSpecification & {
|
|
5070
|
+
__typename?: 'DevOpsToolBitbucketCreate';
|
|
5071
|
+
requestId: Scalars['String'];
|
|
5072
|
+
workspace: Scalars['String'];
|
|
5073
|
+
slug?: Maybe<Scalars['String']>;
|
|
5074
|
+
name: Scalars['String'];
|
|
5075
|
+
};
|
|
5076
|
+
export declare type DevOpsToolCanContainerBeCreated = DevOpsToolContainerCanBeCreated | DevOpsToolContainerNameConflict | DevOpsToolContainerKeyConflict | DevOpsToolContainerKeyCannotBeGenerated | DevOpsToolUnknownTool;
|
|
5077
|
+
export declare type DevOpsToolConfluenceCreate = DevOpsToolContainerCreationSpecification & {
|
|
5078
|
+
__typename?: 'DevOpsToolConfluenceCreate';
|
|
5079
|
+
requestId: Scalars['String'];
|
|
5080
|
+
key: Scalars['String'];
|
|
5081
|
+
name: Scalars['String'];
|
|
5082
|
+
};
|
|
4401
5083
|
export declare type DevOpsToolConnection = {
|
|
4402
5084
|
__typename?: 'DevOpsToolConnection';
|
|
4403
5085
|
edges?: Maybe<Array<Maybe<DevOpsToolEdge>>>;
|
|
@@ -4417,6 +5099,11 @@ export declare type DevOpsToolContainer = Node & {
|
|
|
4417
5099
|
displayName: Scalars['String'];
|
|
4418
5100
|
productKey: Scalars['String'];
|
|
4419
5101
|
url: Scalars['String'];
|
|
5102
|
+
underlyingId: Scalars['String'];
|
|
5103
|
+
};
|
|
5104
|
+
export declare type DevOpsToolContainerCanBeCreated = {
|
|
5105
|
+
__typename?: 'DevOpsToolContainerCanBeCreated';
|
|
5106
|
+
containerCreationSpecification?: Maybe<DevOpsToolContainerCreationSpecification>;
|
|
4420
5107
|
};
|
|
4421
5108
|
export declare type DevOpsToolContainerConnection = {
|
|
4422
5109
|
__typename?: 'DevOpsToolContainerConnection';
|
|
@@ -4424,25 +5111,64 @@ export declare type DevOpsToolContainerConnection = {
|
|
|
4424
5111
|
nodes?: Maybe<Array<Maybe<DevOpsToolContainer>>>;
|
|
4425
5112
|
pageInfo: PageInfo;
|
|
4426
5113
|
};
|
|
5114
|
+
export declare type DevOpsToolContainerCreationSpecification = {
|
|
5115
|
+
requestId: Scalars['String'];
|
|
5116
|
+
};
|
|
4427
5117
|
export declare type DevOpsToolContainerEdge = {
|
|
4428
5118
|
__typename?: 'DevOpsToolContainerEdge';
|
|
4429
5119
|
cursor: Scalars['String'];
|
|
4430
5120
|
node?: Maybe<DevOpsToolContainer>;
|
|
4431
5121
|
};
|
|
4432
|
-
export declare
|
|
4433
|
-
|
|
4434
|
-
|
|
4435
|
-
|
|
4436
|
-
|
|
5122
|
+
export declare type DevOpsToolContainerIntegration = {
|
|
5123
|
+
containerType: Scalars['String'];
|
|
5124
|
+
};
|
|
5125
|
+
export declare type DevOpsToolContainerIntegrationApp = DevOpsToolContainerIntegration & {
|
|
5126
|
+
__typename?: 'DevOpsToolContainerIntegrationApp';
|
|
5127
|
+
containerType: Scalars['String'];
|
|
5128
|
+
appKey: Scalars['String'];
|
|
5129
|
+
installed: Scalars['Boolean'];
|
|
5130
|
+
oauthUrl?: Maybe<Scalars['String']>;
|
|
5131
|
+
};
|
|
5132
|
+
export declare type DevOpsToolContainerIntegrationProduct = DevOpsToolContainerIntegration & {
|
|
5133
|
+
__typename?: 'DevOpsToolContainerIntegrationProduct';
|
|
5134
|
+
containerType: Scalars['String'];
|
|
5135
|
+
productKey: Scalars['String'];
|
|
5136
|
+
available: Scalars['Boolean'];
|
|
5137
|
+
};
|
|
5138
|
+
export declare type DevOpsToolContainerKeyCannotBeGenerated = {
|
|
5139
|
+
__typename?: 'DevOpsToolContainerKeyCannotBeGenerated';
|
|
5140
|
+
name?: Maybe<Scalars['String']>;
|
|
5141
|
+
};
|
|
5142
|
+
export declare type DevOpsToolContainerKeyConflict = {
|
|
5143
|
+
__typename?: 'DevOpsToolContainerKeyConflict';
|
|
5144
|
+
name?: Maybe<Scalars['String']>;
|
|
5145
|
+
key?: Maybe<Scalars['String']>;
|
|
5146
|
+
};
|
|
5147
|
+
export declare type DevOpsToolContainerNameConflict = {
|
|
5148
|
+
__typename?: 'DevOpsToolContainerNameConflict';
|
|
5149
|
+
name?: Maybe<Scalars['String']>;
|
|
5150
|
+
};
|
|
4437
5151
|
export declare type DevOpsToolEdge = {
|
|
4438
5152
|
__typename?: 'DevOpsToolEdge';
|
|
4439
5153
|
cursor: Scalars['String'];
|
|
4440
5154
|
node?: Maybe<DevOpsTool>;
|
|
4441
5155
|
};
|
|
4442
|
-
export declare type
|
|
4443
|
-
__typename?: '
|
|
4444
|
-
|
|
4445
|
-
|
|
5156
|
+
export declare type DevOpsToolGitHubCreate = DevOpsToolContainerCreationSpecification & {
|
|
5157
|
+
__typename?: 'DevOpsToolGitHubCreate';
|
|
5158
|
+
requestId: Scalars['String'];
|
|
5159
|
+
organizationName: Scalars['String'];
|
|
5160
|
+
repositoryName: Scalars['String'];
|
|
5161
|
+
};
|
|
5162
|
+
export declare type DevOpsToolGitLabCreate = DevOpsToolContainerCreationSpecification & {
|
|
5163
|
+
__typename?: 'DevOpsToolGitLabCreate';
|
|
5164
|
+
requestId: Scalars['String'];
|
|
5165
|
+
organizationName: Scalars['String'];
|
|
5166
|
+
repositoryName: Scalars['String'];
|
|
5167
|
+
};
|
|
5168
|
+
export declare type DevOpsToolGroup = {
|
|
5169
|
+
__typename?: 'DevOpsToolGroup';
|
|
5170
|
+
groupId: Scalars['String'];
|
|
5171
|
+
groupName: Scalars['String'];
|
|
4446
5172
|
};
|
|
4447
5173
|
export declare type DevOpsToolNamespace = Node & {
|
|
4448
5174
|
__typename?: 'DevOpsToolNamespace';
|
|
@@ -4450,12 +5176,14 @@ export declare type DevOpsToolNamespace = Node & {
|
|
|
4450
5176
|
displayName: Scalars['String'];
|
|
4451
5177
|
productKey: Scalars['String'];
|
|
4452
5178
|
canCreateContainer: Scalars['Boolean'];
|
|
5179
|
+
underlyingId: Scalars['String'];
|
|
4453
5180
|
containers?: Maybe<DevOpsToolContainerConnection>;
|
|
4454
5181
|
};
|
|
4455
5182
|
export declare type DevOpsToolNamespaceContainersArgs = {
|
|
4456
5183
|
query?: Maybe<Scalars['String']>;
|
|
4457
5184
|
first?: Maybe<Scalars['Int']>;
|
|
4458
5185
|
after?: Maybe<Scalars['String']>;
|
|
5186
|
+
projectAri?: Maybe<Scalars['String']>;
|
|
4459
5187
|
};
|
|
4460
5188
|
export declare type DevOpsToolNamespaceConnection = {
|
|
4461
5189
|
__typename?: 'DevOpsToolNamespaceConnection';
|
|
@@ -4475,23 +5203,18 @@ export declare type DevOpsToolNavbarConnectionState = {
|
|
|
4475
5203
|
pagesTab: DevOpsToolConnectionState;
|
|
4476
5204
|
};
|
|
4477
5205
|
export declare enum DevOpsToolNavbarConnectionStateTab {
|
|
4478
|
-
CodeTab = "
|
|
4479
|
-
OncallTab = "
|
|
4480
|
-
PagesTab = "
|
|
5206
|
+
CodeTab = "CODE_TAB",
|
|
5207
|
+
OncallTab = "ONCALL_TAB",
|
|
5208
|
+
PagesTab = "PAGES_TAB"
|
|
4481
5209
|
}
|
|
4482
|
-
export declare type
|
|
4483
|
-
__typename?: '
|
|
4484
|
-
|
|
4485
|
-
type: DevOpsToolContainerType;
|
|
4486
|
-
};
|
|
4487
|
-
export declare type DevOpsToolUnavailable = DevOpsTool & Node & {
|
|
4488
|
-
__typename?: 'DevOpsToolUnavailable';
|
|
4489
|
-
id: Scalars['ID'];
|
|
5210
|
+
export declare type DevOpsToolOpsgenieCreate = DevOpsToolContainerCreationSpecification & {
|
|
5211
|
+
__typename?: 'DevOpsToolOpsgenieCreate';
|
|
5212
|
+
requestId: Scalars['String'];
|
|
4490
5213
|
name: Scalars['String'];
|
|
4491
|
-
|
|
4492
|
-
|
|
4493
|
-
|
|
4494
|
-
|
|
5214
|
+
};
|
|
5215
|
+
export declare type DevOpsToolUnknownTool = {
|
|
5216
|
+
__typename?: 'DevOpsToolUnknownTool';
|
|
5217
|
+
toolId?: Maybe<Scalars['String']>;
|
|
4495
5218
|
};
|
|
4496
5219
|
export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenInput = {
|
|
4497
5220
|
cloudId: Scalars['ID'];
|
|
@@ -4502,7 +5225,7 @@ export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenPayload = Payloa
|
|
|
4502
5225
|
__typename?: 'DevOpsToolUpdateNavbarConnectionStateTabSeenPayload';
|
|
4503
5226
|
success: Scalars['Boolean'];
|
|
4504
5227
|
errors?: Maybe<Array<MutationError>>;
|
|
4505
|
-
updatedNavbarConnectionState
|
|
5228
|
+
updatedNavbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
4506
5229
|
};
|
|
4507
5230
|
export declare type DevOpsTools = {
|
|
4508
5231
|
__typename?: 'DevOpsTools';
|
|
@@ -4511,11 +5234,15 @@ export declare type DevOpsTools = {
|
|
|
4511
5234
|
namespace?: Maybe<DevOpsToolNamespace>;
|
|
4512
5235
|
container?: Maybe<DevOpsToolContainer>;
|
|
4513
5236
|
navbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
5237
|
+
canContainerBeCreated?: Maybe<DevOpsToolCanContainerBeCreated>;
|
|
4514
5238
|
};
|
|
4515
5239
|
export declare type DevOpsToolsToolsArgs = {
|
|
4516
5240
|
cloudId: Scalars['ID'];
|
|
4517
5241
|
first?: Maybe<Scalars['Int']>;
|
|
4518
5242
|
after?: Maybe<Scalars['String']>;
|
|
5243
|
+
recommended?: Maybe<Scalars['Boolean']>;
|
|
5244
|
+
categoryId?: Maybe<Scalars['String']>;
|
|
5245
|
+
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
4519
5246
|
};
|
|
4520
5247
|
export declare type DevOpsToolsToolArgs = {
|
|
4521
5248
|
id: Scalars['ID'];
|
|
@@ -4530,6 +5257,12 @@ export declare type DevOpsToolsNavbarConnectionStateArgs = {
|
|
|
4530
5257
|
cloudId: Scalars['ID'];
|
|
4531
5258
|
projectId: Scalars['ID'];
|
|
4532
5259
|
};
|
|
5260
|
+
export declare type DevOpsToolsCanContainerBeCreatedArgs = {
|
|
5261
|
+
cloudId: Scalars['ID'];
|
|
5262
|
+
toolId: Scalars['String'];
|
|
5263
|
+
namespaceId: Scalars['String'];
|
|
5264
|
+
containerName: Scalars['String'];
|
|
5265
|
+
};
|
|
4533
5266
|
export declare type DevStatus = {
|
|
4534
5267
|
__typename?: 'DevStatus';
|
|
4535
5268
|
activity: DevStatusActivity;
|
|
@@ -4571,6 +5304,7 @@ export declare type EcosystemMutation = {
|
|
|
4571
5304
|
__typename?: 'EcosystemMutation';
|
|
4572
5305
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
4573
5306
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
5307
|
+
updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
|
|
4574
5308
|
};
|
|
4575
5309
|
export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
4576
5310
|
input: UpdateAppHostServiceScopesInput;
|
|
@@ -4578,10 +5312,14 @@ export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
|
4578
5312
|
export declare type EcosystemMutationDeleteUserGrantArgs = {
|
|
4579
5313
|
input: DeleteUserGrantInput;
|
|
4580
5314
|
};
|
|
5315
|
+
export declare type EcosystemMutationUpdateUserInstallationRulesArgs = {
|
|
5316
|
+
input: UpdateUserInstallationRulesInput;
|
|
5317
|
+
};
|
|
4581
5318
|
export declare type EcosystemQuery = {
|
|
4582
5319
|
__typename?: 'EcosystemQuery';
|
|
4583
5320
|
userGrants?: Maybe<UserGrantConnection>;
|
|
4584
5321
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
5322
|
+
userInstallationRules?: Maybe<UserInstallationRules>;
|
|
4585
5323
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
4586
5324
|
};
|
|
4587
5325
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
@@ -4593,6 +5331,9 @@ export declare type EcosystemQueryUserGrantsArgs = {
|
|
|
4593
5331
|
export declare type EcosystemQueryCheckConsentPermissionByOAuthClientIdArgs = {
|
|
4594
5332
|
input: CheckConsentPermissionByOAuthClientIdInput;
|
|
4595
5333
|
};
|
|
5334
|
+
export declare type EcosystemQueryUserInstallationRulesArgs = {
|
|
5335
|
+
cloudId: Scalars['ID'];
|
|
5336
|
+
};
|
|
4596
5337
|
export declare type EcosystemQueryForgeMetricsArgs = {
|
|
4597
5338
|
appId: Scalars['ID'];
|
|
4598
5339
|
};
|
|
@@ -4620,8 +5361,11 @@ export declare type EstimationBoardFeatureView = Node & {
|
|
|
4620
5361
|
id: Scalars['ID'];
|
|
4621
5362
|
title?: Maybe<Scalars['String']>;
|
|
4622
5363
|
description?: Maybe<Scalars['String']>;
|
|
4623
|
-
|
|
5364
|
+
status?: Maybe<Scalars['String']>;
|
|
4624
5365
|
canEnable?: Maybe<Scalars['Boolean']>;
|
|
5366
|
+
learnMoreLink?: Maybe<Scalars['String']>;
|
|
5367
|
+
learnMoreArticleId?: Maybe<Scalars['String']>;
|
|
5368
|
+
imageUri?: Maybe<Scalars['String']>;
|
|
4625
5369
|
permissibleEstimationTypes?: Maybe<Array<Maybe<PermissibleEstimationType>>>;
|
|
4626
5370
|
selectedEstimationType?: Maybe<PermissibleEstimationType>;
|
|
4627
5371
|
};
|
|
@@ -4636,9 +5380,12 @@ export declare enum EventKnownAvIs {
|
|
|
4636
5380
|
AviBitbucketPrCreated = "AVI_BITBUCKET_PR_CREATED"
|
|
4637
5381
|
}
|
|
4638
5382
|
export declare enum EventMatchingStrategies {
|
|
5383
|
+
JiraByCloud = "JIRA_BY_CLOUD",
|
|
4639
5384
|
JiraByProject = "JIRA_BY_PROJECT",
|
|
4640
5385
|
JiraByIssue = "JIRA_BY_ISSUE",
|
|
4641
|
-
BitbucketByRepo = "BITBUCKET_BY_REPO"
|
|
5386
|
+
BitbucketByRepo = "BITBUCKET_BY_REPO",
|
|
5387
|
+
ByAccount = "BY_ACCOUNT",
|
|
5388
|
+
JiraByCloudByProjectTypeByAccount = "JIRA_BY_CLOUD_BY_PROJECT_TYPE_BY_ACCOUNT"
|
|
4642
5389
|
}
|
|
4643
5390
|
export declare type EventSource = {
|
|
4644
5391
|
__typename?: 'EventSource';
|
|
@@ -4646,6 +5393,10 @@ export declare type EventSource = {
|
|
|
4646
5393
|
externalEventSourceId: Scalars['ID'];
|
|
4647
5394
|
eventType: CompassEventType;
|
|
4648
5395
|
forgeAppId?: Maybe<Scalars['ID']>;
|
|
5396
|
+
events?: Maybe<CompassEventsQueryResult>;
|
|
5397
|
+
};
|
|
5398
|
+
export declare type EventSourceEventsArgs = {
|
|
5399
|
+
query?: Maybe<CompassEventsInEventSourceQuery>;
|
|
4649
5400
|
};
|
|
4650
5401
|
export declare type Extension = {
|
|
4651
5402
|
__typename?: 'Extension';
|
|
@@ -4660,6 +5411,7 @@ export declare type Extension = {
|
|
|
4660
5411
|
appOwner?: Maybe<User>;
|
|
4661
5412
|
appVersion?: Maybe<Scalars['String']>;
|
|
4662
5413
|
properties: Scalars['JSON'];
|
|
5414
|
+
migrationKey?: Maybe<Scalars['String']>;
|
|
4663
5415
|
license?: Maybe<AppInstallationLicense>;
|
|
4664
5416
|
egress?: Maybe<Array<AppNetworkEgressPermissionExtension>>;
|
|
4665
5417
|
securityPolicies?: Maybe<Array<AppSecurityPoliciesPermissionExtension>>;
|
|
@@ -4707,10 +5459,16 @@ export declare type FilterQuery = {
|
|
|
4707
5459
|
sanitisedJql: Scalars['String'];
|
|
4708
5460
|
errors?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
4709
5461
|
};
|
|
5462
|
+
export declare type ForgeContextToken = {
|
|
5463
|
+
__typename?: 'ForgeContextToken';
|
|
5464
|
+
jwt: Scalars['String'];
|
|
5465
|
+
expiresAt: Scalars['String'];
|
|
5466
|
+
};
|
|
4710
5467
|
export declare type ForgeMetricsData = {
|
|
4711
5468
|
name: Scalars['String'];
|
|
4712
5469
|
type: ForgeMetricsDataType;
|
|
4713
5470
|
series?: Maybe<Array<ForgeMetricsSeries>>;
|
|
5471
|
+
resolution: ForgeMetricsResolution;
|
|
4714
5472
|
};
|
|
4715
5473
|
export declare enum ForgeMetricsDataType {
|
|
4716
5474
|
DateTime = "DATE_TIME",
|
|
@@ -4722,6 +5480,7 @@ export declare type ForgeMetricsErrorsData = ForgeMetricsData & {
|
|
|
4722
5480
|
name: Scalars['String'];
|
|
4723
5481
|
type: ForgeMetricsDataType;
|
|
4724
5482
|
series: Array<ForgeMetricsErrorsSeries>;
|
|
5483
|
+
resolution: ForgeMetricsResolution;
|
|
4725
5484
|
};
|
|
4726
5485
|
export declare type ForgeMetricsErrorsDataPoint = {
|
|
4727
5486
|
__typename?: 'ForgeMetricsErrorsDataPoint';
|
|
@@ -4748,6 +5507,7 @@ export declare type ForgeMetricsInvocationData = ForgeMetricsData & {
|
|
|
4748
5507
|
name: Scalars['String'];
|
|
4749
5508
|
type: ForgeMetricsDataType;
|
|
4750
5509
|
series: Array<ForgeMetricsInvocationSeries>;
|
|
5510
|
+
resolution: ForgeMetricsResolution;
|
|
4751
5511
|
};
|
|
4752
5512
|
export declare type ForgeMetricsInvocationDataPoint = {
|
|
4753
5513
|
__typename?: 'ForgeMetricsInvocationDataPoint';
|
|
@@ -4787,12 +5547,22 @@ export declare type ForgeMetricsQueryErrorsArgs = {
|
|
|
4787
5547
|
};
|
|
4788
5548
|
export declare type ForgeMetricsQueryFilters = {
|
|
4789
5549
|
environment?: Maybe<Scalars['ID']>;
|
|
5550
|
+
contextAris?: Maybe<Array<Scalars['ID']>>;
|
|
4790
5551
|
interval: ForgeMetricsIntervalInput;
|
|
4791
5552
|
};
|
|
4792
5553
|
export declare type ForgeMetricsQueryInput = {
|
|
4793
5554
|
filters: ForgeMetricsQueryFilters;
|
|
4794
5555
|
groupBy?: Maybe<Array<ForgeMetricsGroupByDimensions>>;
|
|
4795
5556
|
};
|
|
5557
|
+
export declare type ForgeMetricsResolution = {
|
|
5558
|
+
__typename?: 'ForgeMetricsResolution';
|
|
5559
|
+
size: Scalars['Int'];
|
|
5560
|
+
units: ForgeMetricsResolutionUnit;
|
|
5561
|
+
};
|
|
5562
|
+
export declare enum ForgeMetricsResolutionUnit {
|
|
5563
|
+
Hours = "HOURS",
|
|
5564
|
+
Minutes = "MINUTES"
|
|
5565
|
+
}
|
|
4796
5566
|
export declare type ForgeMetricsSeries = {
|
|
4797
5567
|
groups: Array<ForgeMetricsLabelGroup>;
|
|
4798
5568
|
};
|
|
@@ -4801,6 +5571,7 @@ export declare type ForgeMetricsSuccessRateData = ForgeMetricsData & {
|
|
|
4801
5571
|
name: Scalars['String'];
|
|
4802
5572
|
type: ForgeMetricsDataType;
|
|
4803
5573
|
series: Array<ForgeMetricsSuccessRateSeries>;
|
|
5574
|
+
resolution: ForgeMetricsResolution;
|
|
4804
5575
|
};
|
|
4805
5576
|
export declare type ForgeMetricsSuccessRateDataPoint = {
|
|
4806
5577
|
__typename?: 'ForgeMetricsSuccessRateDataPoint';
|
|
@@ -4818,6 +5589,7 @@ export declare type ForgeMetricsSuccessRateValueData = ForgeMetricsData & {
|
|
|
4818
5589
|
name: Scalars['String'];
|
|
4819
5590
|
type: ForgeMetricsDataType;
|
|
4820
5591
|
series: Array<ForgeMetricsSuccessRateSeries>;
|
|
5592
|
+
resolution: ForgeMetricsResolution;
|
|
4821
5593
|
};
|
|
4822
5594
|
export declare type ForgeMetricsSuccessRateValueResult = ForgeMetricsSuccessRateValueData | QueryError;
|
|
4823
5595
|
export declare type FunctionDescription = {
|
|
@@ -4862,13 +5634,147 @@ export declare enum GrantCheckProduct {
|
|
|
4862
5634
|
Jira = "JIRA",
|
|
4863
5635
|
JiraServicedesk = "JIRA_SERVICEDESK",
|
|
4864
5636
|
Confluence = "CONFLUENCE",
|
|
4865
|
-
Compass = "COMPASS"
|
|
5637
|
+
Compass = "COMPASS",
|
|
5638
|
+
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
4866
5639
|
}
|
|
5640
|
+
export declare type HelpCenter = {
|
|
5641
|
+
__typename?: 'HelpCenter';
|
|
5642
|
+
helpCenterId: Scalars['ID'];
|
|
5643
|
+
collections?: Maybe<Array<HelpCenterCollection>>;
|
|
5644
|
+
};
|
|
5645
|
+
export declare type HelpCenterBulkCreateCollectionsInput = {
|
|
5646
|
+
helpCenterCreateCollectionInputItem: Array<HelpCenterCreateCollectionInput>;
|
|
5647
|
+
};
|
|
5648
|
+
export declare type HelpCenterBulkDeleteCollectionInput = {
|
|
5649
|
+
helpCenterCollectionDeleteInput: Array<HelpCenterCollectionDeleteInput>;
|
|
5650
|
+
};
|
|
5651
|
+
export declare type HelpCenterBulkUpdateCollectionInput = {
|
|
5652
|
+
helpCenterUpdateCollectionInputItem: Array<HelpCenterUpdateCollectionInput>;
|
|
5653
|
+
};
|
|
5654
|
+
export declare type HelpCenterCollection = {
|
|
5655
|
+
__typename?: 'HelpCenterCollection';
|
|
5656
|
+
collectionId: Scalars['ID'];
|
|
5657
|
+
items?: Maybe<HelpCenterCollectionItemConnection>;
|
|
5658
|
+
name: Scalars['String'];
|
|
5659
|
+
description?: Maybe<Scalars['String']>;
|
|
5660
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
5661
|
+
};
|
|
5662
|
+
export declare type HelpCenterCollectionItemsArgs = {
|
|
5663
|
+
first?: Maybe<Scalars['Int']>;
|
|
5664
|
+
after?: Maybe<Scalars['String']>;
|
|
5665
|
+
last?: Maybe<Scalars['Int']>;
|
|
5666
|
+
before?: Maybe<Scalars['String']>;
|
|
5667
|
+
};
|
|
5668
|
+
export declare type HelpCenterCollectionDeleteInput = {
|
|
5669
|
+
helpCenterId: Scalars['ID'];
|
|
5670
|
+
collectionId: Scalars['ID'];
|
|
5671
|
+
};
|
|
5672
|
+
export declare type HelpCenterCollectionItem = {
|
|
5673
|
+
__typename?: 'HelpCenterCollectionItem';
|
|
5674
|
+
ari: Scalars['ID'];
|
|
5675
|
+
};
|
|
5676
|
+
export declare type HelpCenterCollectionItemConnection = {
|
|
5677
|
+
__typename?: 'HelpCenterCollectionItemConnection';
|
|
5678
|
+
edges?: Maybe<Array<Maybe<HelpCenterCollectionItemEdge>>>;
|
|
5679
|
+
nodes?: Maybe<Array<Maybe<HelpCenterCollectionItem>>>;
|
|
5680
|
+
pageInfo: PageInfo;
|
|
5681
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5682
|
+
};
|
|
5683
|
+
export declare type HelpCenterCollectionItemEdge = {
|
|
5684
|
+
__typename?: 'HelpCenterCollectionItemEdge';
|
|
5685
|
+
cursor: Scalars['String'];
|
|
5686
|
+
node?: Maybe<HelpCenterCollectionItem>;
|
|
5687
|
+
};
|
|
5688
|
+
export declare type HelpCenterCollectionItemInput = {
|
|
5689
|
+
ari: Scalars['ID'];
|
|
5690
|
+
};
|
|
5691
|
+
export declare type HelpCenterCollectionResult = HelpCenterCollection | HelpCenterQueryErrors;
|
|
5692
|
+
export declare type HelpCenterCreateCollectionInput = {
|
|
5693
|
+
helpCenterId: Scalars['ID'];
|
|
5694
|
+
items: Array<HelpCenterCollectionItemInput>;
|
|
5695
|
+
name: Scalars['String'];
|
|
5696
|
+
description?: Maybe<Scalars['String']>;
|
|
5697
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
5698
|
+
};
|
|
5699
|
+
export declare type HelpCenterCreateCollectionPayload = Payload & {
|
|
5700
|
+
__typename?: 'HelpCenterCreateCollectionPayload';
|
|
5701
|
+
success: Scalars['Boolean'];
|
|
5702
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5703
|
+
successfullyCreatedCollectionIds: Array<Maybe<HelpCenterSuccessfullyCreatedCollectionIds>>;
|
|
5704
|
+
};
|
|
5705
|
+
export declare type HelpCenterDeleteUpdateCollectionPayload = Payload & {
|
|
5706
|
+
__typename?: 'HelpCenterDeleteUpdateCollectionPayload';
|
|
5707
|
+
success: Scalars['Boolean'];
|
|
5708
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5709
|
+
};
|
|
5710
|
+
export declare type HelpCenterMutationApi = {
|
|
5711
|
+
__typename?: 'HelpCenterMutationApi';
|
|
5712
|
+
createCollection: HelpCenterCreateCollectionPayload;
|
|
5713
|
+
updateCollection: HelpCenterDeleteUpdateCollectionPayload;
|
|
5714
|
+
updateCollectionsOrder: HelpCenterUpdateCollectionsOrderPayload;
|
|
5715
|
+
deleteCollection: HelpCenterDeleteUpdateCollectionPayload;
|
|
5716
|
+
};
|
|
5717
|
+
export declare type HelpCenterMutationApiCreateCollectionArgs = {
|
|
5718
|
+
input: HelpCenterBulkCreateCollectionsInput;
|
|
5719
|
+
};
|
|
5720
|
+
export declare type HelpCenterMutationApiUpdateCollectionArgs = {
|
|
5721
|
+
input: HelpCenterBulkUpdateCollectionInput;
|
|
5722
|
+
};
|
|
5723
|
+
export declare type HelpCenterMutationApiUpdateCollectionsOrderArgs = {
|
|
5724
|
+
input: HelpCenterUpdateCollectionsOrderInput;
|
|
5725
|
+
};
|
|
5726
|
+
export declare type HelpCenterMutationApiDeleteCollectionArgs = {
|
|
5727
|
+
input: HelpCenterBulkDeleteCollectionInput;
|
|
5728
|
+
};
|
|
5729
|
+
export declare type HelpCenterQueryApi = {
|
|
5730
|
+
__typename?: 'HelpCenterQueryApi';
|
|
5731
|
+
helpCenter: HelpCenterQueryResult;
|
|
5732
|
+
helpCenterCollection: HelpCenterCollectionResult;
|
|
5733
|
+
};
|
|
5734
|
+
export declare type HelpCenterQueryApiHelpCenterArgs = {
|
|
5735
|
+
helpCenterId: Scalars['ID'];
|
|
5736
|
+
};
|
|
5737
|
+
export declare type HelpCenterQueryApiHelpCenterCollectionArgs = {
|
|
5738
|
+
helpCenterId: Scalars['ID'];
|
|
5739
|
+
collectionId: Scalars['ID'];
|
|
5740
|
+
};
|
|
5741
|
+
export declare type HelpCenterQueryErrors = {
|
|
5742
|
+
__typename?: 'HelpCenterQueryErrors';
|
|
5743
|
+
errors?: Maybe<Array<QueryError>>;
|
|
5744
|
+
};
|
|
5745
|
+
export declare type HelpCenterQueryResult = HelpCenter | HelpCenterQueryErrors;
|
|
5746
|
+
export declare type HelpCenterSuccessfullyCreatedCollectionIds = {
|
|
5747
|
+
__typename?: 'HelpCenterSuccessfullyCreatedCollectionIds';
|
|
5748
|
+
helpCenterId: Scalars['ID'];
|
|
5749
|
+
collectionIds: Scalars['ID'];
|
|
5750
|
+
};
|
|
5751
|
+
export declare type HelpCenterUpdateCollectionInput = {
|
|
5752
|
+
helpCenterId: Scalars['ID'];
|
|
5753
|
+
collectionId: Scalars['ID'];
|
|
5754
|
+
items: Array<HelpCenterCollectionItemInput>;
|
|
5755
|
+
name: Scalars['String'];
|
|
5756
|
+
description?: Maybe<Scalars['String']>;
|
|
5757
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
5758
|
+
};
|
|
5759
|
+
export declare type HelpCenterUpdateCollectionsOrderInput = {
|
|
5760
|
+
helpCenterId: Scalars['ID'];
|
|
5761
|
+
collectionIds: Array<Scalars['ID']>;
|
|
5762
|
+
};
|
|
5763
|
+
export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
5764
|
+
__typename?: 'HelpCenterUpdateCollectionsOrderPayload';
|
|
5765
|
+
success: Scalars['Boolean'];
|
|
5766
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5767
|
+
};
|
|
4867
5768
|
export declare type HostedResourcePreSignedUrl = {
|
|
4868
5769
|
__typename?: 'HostedResourcePreSignedUrl';
|
|
4869
5770
|
uploadUrl: Scalars['String'];
|
|
4870
5771
|
uploadFormData: Scalars['JSON'];
|
|
4871
5772
|
};
|
|
5773
|
+
export declare type HostedStorage = {
|
|
5774
|
+
__typename?: 'HostedStorage';
|
|
5775
|
+
classifications?: Maybe<Array<Classification>>;
|
|
5776
|
+
locations?: Maybe<Array<Scalars['String']>>;
|
|
5777
|
+
};
|
|
4872
5778
|
export declare type Icon = {
|
|
4873
5779
|
__typename?: 'Icon';
|
|
4874
5780
|
url?: Maybe<Scalars['String']>;
|
|
@@ -4898,11 +5804,8 @@ export declare type InvokeAuxEffectsInput = {
|
|
|
4898
5804
|
entryPoint?: Maybe<Scalars['String']>;
|
|
4899
5805
|
payload: AuxEffectsInvocationPayload;
|
|
4900
5806
|
};
|
|
4901
|
-
export declare type InvokeAuxEffectsResponse =
|
|
5807
|
+
export declare type InvokeAuxEffectsResponse = Payload & {
|
|
4902
5808
|
__typename?: 'InvokeAuxEffectsResponse';
|
|
4903
|
-
statusCode: Scalars['Int'];
|
|
4904
|
-
message: Scalars['String'];
|
|
4905
|
-
errorDetails?: Maybe<ErrorDetails>;
|
|
4906
5809
|
success: Scalars['Boolean'];
|
|
4907
5810
|
errors?: Maybe<Array<MutationError>>;
|
|
4908
5811
|
result?: Maybe<AuxEffectsResult>;
|
|
@@ -4925,15 +5828,13 @@ export declare type InvokeExtensionPayloadErrorExtensionFields = {
|
|
|
4925
5828
|
__typename?: 'InvokeExtensionPayloadErrorExtensionFields';
|
|
4926
5829
|
authInfoUrl?: Maybe<Scalars['String']>;
|
|
4927
5830
|
};
|
|
4928
|
-
export declare type InvokeExtensionResponse =
|
|
5831
|
+
export declare type InvokeExtensionResponse = Payload & {
|
|
4929
5832
|
__typename?: 'InvokeExtensionResponse';
|
|
4930
|
-
statusCode: Scalars['Int'];
|
|
4931
|
-
message: Scalars['String'];
|
|
4932
|
-
errorDetails?: Maybe<ErrorDetails>;
|
|
4933
5833
|
success: Scalars['Boolean'];
|
|
4934
5834
|
errors?: Maybe<Array<MutationError>>;
|
|
4935
5835
|
response?: Maybe<InvocationResponsePayload>;
|
|
4936
5836
|
externalAuth?: Maybe<Array<Maybe<ExternalAuthProvider>>>;
|
|
5837
|
+
contextToken?: Maybe<ForgeContextToken>;
|
|
4937
5838
|
};
|
|
4938
5839
|
export declare type InvokePolarisObjectInput = {
|
|
4939
5840
|
project: Scalars['ID'];
|
|
@@ -4950,6 +5851,11 @@ export declare type InvokePolarisObjectPayload = Payload & {
|
|
|
4950
5851
|
errors?: Maybe<Array<MutationError>>;
|
|
4951
5852
|
response?: Maybe<ResolvedPolarisObject>;
|
|
4952
5853
|
};
|
|
5854
|
+
export declare type IssueAndProject = {
|
|
5855
|
+
__typename?: 'IssueAndProject';
|
|
5856
|
+
issueId: Scalars['ID'];
|
|
5857
|
+
projectId: Scalars['ID'];
|
|
5858
|
+
};
|
|
4953
5859
|
export declare type IssueDevOpsBranchDetails = {
|
|
4954
5860
|
__typename?: 'IssueDevOpsBranchDetails';
|
|
4955
5861
|
name: Scalars['String'];
|
|
@@ -5263,6 +6169,15 @@ export declare type JiraAdf = {
|
|
|
5263
6169
|
__typename?: 'JiraADF';
|
|
5264
6170
|
json?: Maybe<Scalars['JSON']>;
|
|
5265
6171
|
};
|
|
6172
|
+
export declare type JiraAddIssuesToFixVersionInput = {
|
|
6173
|
+
issueIds: Array<Scalars['ID']>;
|
|
6174
|
+
versionId: Scalars['ID'];
|
|
6175
|
+
};
|
|
6176
|
+
export declare type JiraAddIssuesToFixVersionPayload = Payload & {
|
|
6177
|
+
__typename?: 'JiraAddIssuesToFixVersionPayload';
|
|
6178
|
+
success: Scalars['Boolean'];
|
|
6179
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6180
|
+
};
|
|
5266
6181
|
export declare type JiraAffectedService = {
|
|
5267
6182
|
__typename?: 'JiraAffectedService';
|
|
5268
6183
|
serviceId?: Maybe<Scalars['String']>;
|
|
@@ -5477,6 +6392,7 @@ export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfig
|
|
|
5477
6392
|
searchUrl?: Maybe<Scalars['String']>;
|
|
5478
6393
|
selectedCmdbObjects?: Maybe<Array<Maybe<JiraCmdbObject>>>;
|
|
5479
6394
|
selectedCmdbObjectsConnection?: Maybe<JiraCmdbObjectConnection>;
|
|
6395
|
+
isInsightAvailable?: Maybe<Scalars['Boolean']>;
|
|
5480
6396
|
cmdbFieldConfig?: Maybe<JiraCmdbFieldConfig>;
|
|
5481
6397
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5482
6398
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -5785,6 +6701,7 @@ export declare type JiraColorField = Node & JiraIssueField & JiraIssueFieldConfi
|
|
|
5785
6701
|
};
|
|
5786
6702
|
export declare type JiraComment = {
|
|
5787
6703
|
commentId: Scalars['ID'];
|
|
6704
|
+
issue?: Maybe<JiraIssue>;
|
|
5788
6705
|
webUrl?: Maybe<Scalars['URL']>;
|
|
5789
6706
|
author?: Maybe<User>;
|
|
5790
6707
|
updateAuthor?: Maybe<User>;
|
|
@@ -5793,6 +6710,10 @@ export declare type JiraComment = {
|
|
|
5793
6710
|
updated?: Maybe<Scalars['DateTime']>;
|
|
5794
6711
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
5795
6712
|
};
|
|
6713
|
+
export declare type JiraCommentByIdInput = {
|
|
6714
|
+
issueId: Scalars['ID'];
|
|
6715
|
+
id: Scalars['ID'];
|
|
6716
|
+
};
|
|
5796
6717
|
export declare type JiraCommentConnection = {
|
|
5797
6718
|
__typename?: 'JiraCommentConnection';
|
|
5798
6719
|
indicativeCount?: Maybe<Scalars['Int']>;
|
|
@@ -5936,6 +6857,16 @@ export declare type JiraConnectTextField = Node & JiraIssueField & JiraIssueFiel
|
|
|
5936
6857
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5937
6858
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5938
6859
|
};
|
|
6860
|
+
export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
6861
|
+
__typename?: 'JiraCustomFilter';
|
|
6862
|
+
id: Scalars['ID'];
|
|
6863
|
+
filterId: Scalars['String'];
|
|
6864
|
+
jql: Scalars['String'];
|
|
6865
|
+
owner?: Maybe<User>;
|
|
6866
|
+
name: Scalars['String'];
|
|
6867
|
+
description?: Maybe<Scalars['String']>;
|
|
6868
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
6869
|
+
};
|
|
5939
6870
|
export declare type JiraDatePickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5940
6871
|
__typename?: 'JiraDatePickerField';
|
|
5941
6872
|
id: Scalars['ID'];
|
|
@@ -5965,6 +6896,29 @@ export declare type JiraDefaultGrantTypeValue = Node & {
|
|
|
5965
6896
|
id: Scalars['ID'];
|
|
5966
6897
|
name: Scalars['String'];
|
|
5967
6898
|
};
|
|
6899
|
+
export declare type JiraDevOpsBranchDetails = {
|
|
6900
|
+
__typename?: 'JiraDevOpsBranchDetails';
|
|
6901
|
+
providerBranchId?: Maybe<Scalars['String']>;
|
|
6902
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
6903
|
+
name?: Maybe<Scalars['String']>;
|
|
6904
|
+
scmRepository?: Maybe<JiraScmRepository>;
|
|
6905
|
+
};
|
|
6906
|
+
export declare type JiraDevOpsCommitDetails = {
|
|
6907
|
+
__typename?: 'JiraDevOpsCommitDetails';
|
|
6908
|
+
providerCommitId?: Maybe<Scalars['String']>;
|
|
6909
|
+
displayCommitId?: Maybe<Scalars['String']>;
|
|
6910
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
6911
|
+
name?: Maybe<Scalars['String']>;
|
|
6912
|
+
created?: Maybe<Scalars['DateTime']>;
|
|
6913
|
+
author?: Maybe<JiraDevOpsEntityAuthor>;
|
|
6914
|
+
isMergeCommit?: Maybe<Scalars['Boolean']>;
|
|
6915
|
+
scmRepository?: Maybe<JiraScmRepository>;
|
|
6916
|
+
};
|
|
6917
|
+
export declare type JiraDevOpsEntityAuthor = {
|
|
6918
|
+
__typename?: 'JiraDevOpsEntityAuthor';
|
|
6919
|
+
avatar?: Maybe<JiraAvatar>;
|
|
6920
|
+
name?: Maybe<Scalars['String']>;
|
|
6921
|
+
};
|
|
5968
6922
|
export declare type JiraDevOpsIssuePanel = {
|
|
5969
6923
|
__typename?: 'JiraDevOpsIssuePanel';
|
|
5970
6924
|
panelState?: Maybe<JiraDevOpsIssuePanelState>;
|
|
@@ -5991,6 +6945,17 @@ export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateA
|
|
|
5991
6945
|
export declare type JiraDevOpsMutationDismissDevOpsIssuePanelBannerArgs = {
|
|
5992
6946
|
input: JiraDismissDevOpsIssuePanelBannerInput;
|
|
5993
6947
|
};
|
|
6948
|
+
export declare type JiraDevOpsPullRequestDetails = {
|
|
6949
|
+
__typename?: 'JiraDevOpsPullRequestDetails';
|
|
6950
|
+
providerPullRequestId?: Maybe<Scalars['String']>;
|
|
6951
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
6952
|
+
name?: Maybe<Scalars['String']>;
|
|
6953
|
+
branchName?: Maybe<Scalars['String']>;
|
|
6954
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
6955
|
+
status?: Maybe<JiraPullRequestState>;
|
|
6956
|
+
author?: Maybe<JiraDevOpsEntityAuthor>;
|
|
6957
|
+
reviewers?: Maybe<Array<JiraPullRequestReviewer>>;
|
|
6958
|
+
};
|
|
5994
6959
|
export declare type JiraDevOpsQuery = {
|
|
5995
6960
|
__typename?: 'JiraDevOpsQuery';
|
|
5996
6961
|
devOpsIssuePanel?: Maybe<JiraDevOpsIssuePanel>;
|
|
@@ -6074,14 +7039,24 @@ export declare type JiraFieldNonEditableReason = {
|
|
|
6074
7039
|
__typename?: 'JiraFieldNonEditableReason';
|
|
6075
7040
|
message?: Maybe<Scalars['String']>;
|
|
6076
7041
|
};
|
|
6077
|
-
export declare type JiraFilter =
|
|
6078
|
-
__typename?: 'JiraFilter';
|
|
7042
|
+
export declare type JiraFilter = {
|
|
6079
7043
|
id: Scalars['ID'];
|
|
6080
7044
|
filterId: Scalars['String'];
|
|
6081
7045
|
jql: Scalars['String'];
|
|
6082
7046
|
name: Scalars['String'];
|
|
7047
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
7048
|
+
};
|
|
7049
|
+
export declare type JiraFilterConnection = {
|
|
7050
|
+
__typename?: 'JiraFilterConnection';
|
|
7051
|
+
pageInfo: PageInfo;
|
|
7052
|
+
edges?: Maybe<Array<Maybe<JiraFilterEdge>>>;
|
|
7053
|
+
};
|
|
7054
|
+
export declare type JiraFilterEdge = {
|
|
7055
|
+
__typename?: 'JiraFilterEdge';
|
|
7056
|
+
node?: Maybe<JiraFilter>;
|
|
7057
|
+
cursor: Scalars['String'];
|
|
6083
7058
|
};
|
|
6084
|
-
export declare type JiraFilterResult =
|
|
7059
|
+
export declare type JiraFilterResult = JiraCustomFilter | JiraSystemFilter | QueryError;
|
|
6085
7060
|
export declare type JiraFlag = {
|
|
6086
7061
|
__typename?: 'JiraFlag';
|
|
6087
7062
|
isFlagged?: Maybe<Scalars['Boolean']>;
|
|
@@ -6328,6 +7303,17 @@ export declare type JiraGroupGrantTypeValue = Node & {
|
|
|
6328
7303
|
id: Scalars['ID'];
|
|
6329
7304
|
group: JiraGroup;
|
|
6330
7305
|
};
|
|
7306
|
+
export declare type JiraInvalidJqlError = {
|
|
7307
|
+
__typename?: 'JiraInvalidJqlError';
|
|
7308
|
+
messages?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
7309
|
+
};
|
|
7310
|
+
export declare type JiraInvalidSyntaxError = {
|
|
7311
|
+
__typename?: 'JiraInvalidSyntaxError';
|
|
7312
|
+
message?: Maybe<Scalars['String']>;
|
|
7313
|
+
errorType?: Maybe<JiraJqlSyntaxError>;
|
|
7314
|
+
line?: Maybe<Scalars['Int']>;
|
|
7315
|
+
column?: Maybe<Scalars['Int']>;
|
|
7316
|
+
};
|
|
6331
7317
|
export declare type JiraIssue = Node & {
|
|
6332
7318
|
__typename?: 'JiraIssue';
|
|
6333
7319
|
id: Scalars['ID'];
|
|
@@ -6340,8 +7326,12 @@ export declare type JiraIssue = Node & {
|
|
|
6340
7326
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
6341
7327
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
6342
7328
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
7329
|
+
fieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
7330
|
+
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
6343
7331
|
childIssues?: Maybe<JiraChildIssues>;
|
|
6344
7332
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
7333
|
+
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
7334
|
+
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
6345
7335
|
};
|
|
6346
7336
|
export declare type JiraIssueFieldsArgs = {
|
|
6347
7337
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -6380,6 +7370,20 @@ export declare type JiraIssueFieldSetsArgs = {
|
|
|
6380
7370
|
last?: Maybe<Scalars['Int']>;
|
|
6381
7371
|
before?: Maybe<Scalars['String']>;
|
|
6382
7372
|
};
|
|
7373
|
+
export declare type JiraIssueFieldSetsForIssueSearchViewArgs = {
|
|
7374
|
+
namespace?: Maybe<Scalars['String']>;
|
|
7375
|
+
viewId?: Maybe<Scalars['String']>;
|
|
7376
|
+
first?: Maybe<Scalars['Int']>;
|
|
7377
|
+
after?: Maybe<Scalars['String']>;
|
|
7378
|
+
last?: Maybe<Scalars['Int']>;
|
|
7379
|
+
before?: Maybe<Scalars['String']>;
|
|
7380
|
+
};
|
|
7381
|
+
export declare type JiraIssueIssueLinksArgs = {
|
|
7382
|
+
first?: Maybe<Scalars['Int']>;
|
|
7383
|
+
after?: Maybe<Scalars['String']>;
|
|
7384
|
+
last?: Maybe<Scalars['Int']>;
|
|
7385
|
+
before?: Maybe<Scalars['String']>;
|
|
7386
|
+
};
|
|
6383
7387
|
export declare type JiraIssueBranchDevSummary = {
|
|
6384
7388
|
__typename?: 'JiraIssueBranchDevSummary';
|
|
6385
7389
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -6390,6 +7394,10 @@ export declare type JiraIssueBranchDevSummaryContainer = {
|
|
|
6390
7394
|
overall?: Maybe<JiraIssueBranchDevSummary>;
|
|
6391
7395
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
6392
7396
|
};
|
|
7397
|
+
export declare type JiraIssueBranches = {
|
|
7398
|
+
__typename?: 'JiraIssueBranches';
|
|
7399
|
+
details?: Maybe<Array<JiraDevOpsBranchDetails>>;
|
|
7400
|
+
};
|
|
6393
7401
|
export declare type JiraIssueBuildDevSummary = {
|
|
6394
7402
|
__typename?: 'JiraIssueBuildDevSummary';
|
|
6395
7403
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -6413,12 +7421,24 @@ export declare type JiraIssueCommitDevSummaryContainer = {
|
|
|
6413
7421
|
overall?: Maybe<JiraIssueCommitDevSummary>;
|
|
6414
7422
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
6415
7423
|
};
|
|
7424
|
+
export declare type JiraIssueCommits = {
|
|
7425
|
+
__typename?: 'JiraIssueCommits';
|
|
7426
|
+
details?: Maybe<Array<JiraDevOpsCommitDetails>>;
|
|
7427
|
+
};
|
|
6416
7428
|
export declare type JiraIssueConnection = {
|
|
6417
7429
|
__typename?: 'JiraIssueConnection';
|
|
6418
7430
|
totalCount?: Maybe<Scalars['Int']>;
|
|
6419
7431
|
pageInfo: PageInfo;
|
|
6420
7432
|
jql?: Maybe<Scalars['String']>;
|
|
6421
7433
|
edges?: Maybe<Array<Maybe<JiraIssueEdge>>>;
|
|
7434
|
+
issueSearchError?: Maybe<JiraIssueSearchError>;
|
|
7435
|
+
totalIssueSearchResultCount?: Maybe<Scalars['Int']>;
|
|
7436
|
+
isCappingIssueSearchResult?: Maybe<Scalars['Boolean']>;
|
|
7437
|
+
issueNavigatorPageInfo?: Maybe<JiraIssueNavigatorPageInfo>;
|
|
7438
|
+
pageCursors?: Maybe<JiraPageCursors>;
|
|
7439
|
+
};
|
|
7440
|
+
export declare type JiraIssueConnectionPageCursorsArgs = {
|
|
7441
|
+
maxCursors: Scalars['Int'];
|
|
6422
7442
|
};
|
|
6423
7443
|
export declare type JiraIssueDeploymentEnvironment = {
|
|
6424
7444
|
__typename?: 'JiraIssueDeploymentEnvironment';
|
|
@@ -6440,6 +7460,12 @@ export declare enum JiraIssueDeploymentEnvironmentState {
|
|
|
6440
7460
|
NotDeployed = "NOT_DEPLOYED",
|
|
6441
7461
|
Deployed = "DEPLOYED"
|
|
6442
7462
|
}
|
|
7463
|
+
export declare type JiraIssueDevInfoDetails = {
|
|
7464
|
+
__typename?: 'JiraIssueDevInfoDetails';
|
|
7465
|
+
pullRequests?: Maybe<JiraIssuePullRequests>;
|
|
7466
|
+
branches?: Maybe<JiraIssueBranches>;
|
|
7467
|
+
commits?: Maybe<JiraIssueCommits>;
|
|
7468
|
+
};
|
|
6443
7469
|
export declare type JiraIssueDevSummary = {
|
|
6444
7470
|
__typename?: 'JiraIssueDevSummary';
|
|
6445
7471
|
branch?: Maybe<JiraIssueBranchDevSummaryContainer>;
|
|
@@ -6707,6 +7733,13 @@ export declare type JiraIssueLinkTypeRelationEdge = {
|
|
|
6707
7733
|
node?: Maybe<JiraIssueLinkTypeRelation>;
|
|
6708
7734
|
cursor: Scalars['String'];
|
|
6709
7735
|
};
|
|
7736
|
+
export declare type JiraIssueNavigatorPageInfo = {
|
|
7737
|
+
__typename?: 'JiraIssueNavigatorPageInfo';
|
|
7738
|
+
firstIssuePosition?: Maybe<Scalars['Int']>;
|
|
7739
|
+
lastIssuePosition?: Maybe<Scalars['Int']>;
|
|
7740
|
+
firstIssueKeyFromNextPage?: Maybe<Scalars['String']>;
|
|
7741
|
+
lastIssueKeyFromPreviousPage?: Maybe<Scalars['String']>;
|
|
7742
|
+
};
|
|
6710
7743
|
export declare type JiraIssuePullRequestDevSummary = {
|
|
6711
7744
|
__typename?: 'JiraIssuePullRequestDevSummary';
|
|
6712
7745
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -6720,6 +7753,10 @@ export declare type JiraIssuePullRequestDevSummaryContainer = {
|
|
|
6720
7753
|
overall?: Maybe<JiraIssuePullRequestDevSummary>;
|
|
6721
7754
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
6722
7755
|
};
|
|
7756
|
+
export declare type JiraIssuePullRequests = {
|
|
7757
|
+
__typename?: 'JiraIssuePullRequests';
|
|
7758
|
+
details?: Maybe<Array<JiraDevOpsPullRequestDetails>>;
|
|
7759
|
+
};
|
|
6723
7760
|
export declare type JiraIssueRestrictionField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6724
7761
|
__typename?: 'JiraIssueRestrictionField';
|
|
6725
7762
|
id: Scalars['ID'];
|
|
@@ -6764,7 +7801,7 @@ export declare type JiraIssueSearchByFilter = JiraIssueSearchResult & {
|
|
|
6764
7801
|
__typename?: 'JiraIssueSearchByFilter';
|
|
6765
7802
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
6766
7803
|
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
6767
|
-
filter?: Maybe<
|
|
7804
|
+
filter?: Maybe<JiraFilter>;
|
|
6768
7805
|
};
|
|
6769
7806
|
export declare type JiraIssueSearchByFilterContentArgs = {
|
|
6770
7807
|
namespace?: Maybe<Scalars['String']>;
|
|
@@ -6821,6 +7858,7 @@ export declare type JiraIssueSearchContextualContentIssuesArgs = {
|
|
|
6821
7858
|
before?: Maybe<Scalars['String']>;
|
|
6822
7859
|
after?: Maybe<Scalars['String']>;
|
|
6823
7860
|
};
|
|
7861
|
+
export declare type JiraIssueSearchError = JiraInvalidJqlError | JiraInvalidSyntaxError;
|
|
6824
7862
|
export declare type JiraIssueSearchFieldConfigSet = {
|
|
6825
7863
|
__typename?: 'JiraIssueSearchFieldConfigSet';
|
|
6826
7864
|
fieldConfigSetId?: Maybe<Scalars['String']>;
|
|
@@ -6834,6 +7872,7 @@ export declare type JiraIssueSearchFieldConfigSetConnection = {
|
|
|
6834
7872
|
totalCount?: Maybe<Scalars['Int']>;
|
|
6835
7873
|
pageInfo: PageInfo;
|
|
6836
7874
|
edges?: Maybe<Array<Maybe<JiraIssueSearchFieldConfigSetEdge>>>;
|
|
7875
|
+
isWithholdingUnsupportedSelectedFields?: Maybe<Scalars['Boolean']>;
|
|
6837
7876
|
};
|
|
6838
7877
|
export declare type JiraIssueSearchFieldConfigSetEdge = {
|
|
6839
7878
|
__typename?: 'JiraIssueSearchFieldConfigSetEdge';
|
|
@@ -6849,6 +7888,13 @@ export declare type JiraIssueSearchFieldConfigSetsFilter = {
|
|
|
6849
7888
|
searchString?: Maybe<Scalars['String']>;
|
|
6850
7889
|
fieldConfigSetSelectedState?: Maybe<JiraIssueSearchFieldConfigSetSelectedState>;
|
|
6851
7890
|
};
|
|
7891
|
+
export declare type JiraIssueSearchInput = {
|
|
7892
|
+
jql?: Maybe<Scalars['String']>;
|
|
7893
|
+
filterId?: Maybe<Scalars['String']>;
|
|
7894
|
+
};
|
|
7895
|
+
export declare type JiraIssueSearchOptions = {
|
|
7896
|
+
issueKey?: Maybe<Scalars['String']>;
|
|
7897
|
+
};
|
|
6852
7898
|
export declare type JiraIssueSearchResult = {
|
|
6853
7899
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
6854
7900
|
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
@@ -6930,8 +7976,8 @@ export declare type JiraIssueTypeFieldIssueTypesArgs = {
|
|
|
6930
7976
|
};
|
|
6931
7977
|
export declare type JiraIssueTypeHierarchyLevel = {
|
|
6932
7978
|
__typename?: 'JiraIssueTypeHierarchyLevel';
|
|
6933
|
-
level
|
|
6934
|
-
name
|
|
7979
|
+
level?: Maybe<Scalars['Int']>;
|
|
7980
|
+
name?: Maybe<Scalars['String']>;
|
|
6935
7981
|
};
|
|
6936
7982
|
export declare enum JiraJqlAutocompleteType {
|
|
6937
7983
|
None = "NONE",
|
|
@@ -7296,6 +8342,29 @@ export declare type JiraJqlStatusFieldValue = JiraJqlFieldValue & {
|
|
|
7296
8342
|
displayName: Scalars['String'];
|
|
7297
8343
|
statusCategory: JiraStatusCategory;
|
|
7298
8344
|
};
|
|
8345
|
+
export declare enum JiraJqlSyntaxError {
|
|
8346
|
+
ReservedWord = "RESERVED_WORD",
|
|
8347
|
+
IllegalEscape = "ILLEGAL_ESCAPE",
|
|
8348
|
+
UnfinishedString = "UNFINISHED_STRING",
|
|
8349
|
+
IllegalCharacter = "ILLEGAL_CHARACTER",
|
|
8350
|
+
ReservedCharacter = "RESERVED_CHARACTER",
|
|
8351
|
+
Unknown = "UNKNOWN",
|
|
8352
|
+
IllegalNumber = "ILLEGAL_NUMBER",
|
|
8353
|
+
EmptyField = "EMPTY_FIELD",
|
|
8354
|
+
EmptyFunction = "EMPTY_FUNCTION",
|
|
8355
|
+
MissingFieldName = "MISSING_FIELD_NAME",
|
|
8356
|
+
NoOrder = "NO_ORDER",
|
|
8357
|
+
UnexpectedText = "UNEXPECTED_TEXT",
|
|
8358
|
+
NoOperator = "NO_OPERATOR",
|
|
8359
|
+
BadFieldId = "BAD_FIELD_ID",
|
|
8360
|
+
BadPropertyId = "BAD_PROPERTY_ID",
|
|
8361
|
+
BadFunctionArgument = "BAD_FUNCTION_ARGUMENT",
|
|
8362
|
+
EmptyFunctionArgument = "EMPTY_FUNCTION_ARGUMENT",
|
|
8363
|
+
MissingLogicalOperator = "MISSING_LOGICAL_OPERATOR",
|
|
8364
|
+
BadOperator = "BAD_OPERATOR",
|
|
8365
|
+
PredicateUnsupported = "PREDICATE_UNSUPPORTED",
|
|
8366
|
+
OperandUnsupported = "OPERAND_UNSUPPORTED"
|
|
8367
|
+
}
|
|
7299
8368
|
export declare type JiraJqlUserFieldValue = JiraJqlFieldValue & {
|
|
7300
8369
|
__typename?: 'JiraJqlUserFieldValue';
|
|
7301
8370
|
jqlTerm: Scalars['String'];
|
|
@@ -7530,15 +8599,21 @@ export declare type JiraMutation = {
|
|
|
7530
8599
|
__typename?: 'JiraMutation';
|
|
7531
8600
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
7532
8601
|
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8602
|
+
replaceIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
7533
8603
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
7534
8604
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
7535
8605
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
8606
|
+
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
7536
8607
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
7537
8608
|
};
|
|
7538
8609
|
export declare type JiraMutationUpdateIssueSearchViewFieldConfigSetsArgs = {
|
|
7539
8610
|
id: Scalars['ID'];
|
|
7540
8611
|
fieldConfigSetIds: Array<Scalars['String']>;
|
|
7541
8612
|
};
|
|
8613
|
+
export declare type JiraMutationReplaceIssueSearchViewFieldConfigSetsArgs = {
|
|
8614
|
+
id: Scalars['ID'];
|
|
8615
|
+
input: JiraReplaceIssueSearchViewFieldConfigSetsInput;
|
|
8616
|
+
};
|
|
7542
8617
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
7543
8618
|
cloudId: Scalars['ID'];
|
|
7544
8619
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
@@ -7549,6 +8624,9 @@ export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
|
7549
8624
|
export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
|
|
7550
8625
|
input: JiraPermissionSchemeRemoveGrantInput;
|
|
7551
8626
|
};
|
|
8627
|
+
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
8628
|
+
input: JiraAddIssuesToFixVersionInput;
|
|
8629
|
+
};
|
|
7552
8630
|
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
7553
8631
|
input: JiraUpdateVersionWarningConfigInput;
|
|
7554
8632
|
};
|
|
@@ -7732,6 +8810,19 @@ export declare type JiraOptoutDevOpsIssuePanelNotConnectedPayload = Payload & {
|
|
|
7732
8810
|
export declare type JiraOrderDirection = {
|
|
7733
8811
|
id?: Maybe<Scalars['ID']>;
|
|
7734
8812
|
};
|
|
8813
|
+
export declare type JiraPageCursor = {
|
|
8814
|
+
__typename?: 'JiraPageCursor';
|
|
8815
|
+
cursor?: Maybe<Scalars['String']>;
|
|
8816
|
+
pageNumber?: Maybe<Scalars['Int']>;
|
|
8817
|
+
isCurrent?: Maybe<Scalars['Boolean']>;
|
|
8818
|
+
};
|
|
8819
|
+
export declare type JiraPageCursors = {
|
|
8820
|
+
__typename?: 'JiraPageCursors';
|
|
8821
|
+
first?: Maybe<JiraPageCursor>;
|
|
8822
|
+
around?: Maybe<Array<Maybe<JiraPageCursor>>>;
|
|
8823
|
+
last?: Maybe<JiraPageCursor>;
|
|
8824
|
+
previous?: Maybe<JiraPageCursor>;
|
|
8825
|
+
};
|
|
7735
8826
|
export declare type JiraParentIssueField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7736
8827
|
__typename?: 'JiraParentIssueField';
|
|
7737
8828
|
id: Scalars['ID'];
|
|
@@ -7910,6 +9001,7 @@ export declare type JiraPlatformComment = JiraComment & Node & {
|
|
|
7910
9001
|
__typename?: 'JiraPlatformComment';
|
|
7911
9002
|
id: Scalars['ID'];
|
|
7912
9003
|
commentId: Scalars['ID'];
|
|
9004
|
+
issue?: Maybe<JiraIssue>;
|
|
7913
9005
|
webUrl?: Maybe<Scalars['URL']>;
|
|
7914
9006
|
author?: Maybe<User>;
|
|
7915
9007
|
updateAuthor?: Maybe<User>;
|
|
@@ -7990,6 +9082,7 @@ export declare type JiraProject = Node & {
|
|
|
7990
9082
|
projectType?: Maybe<JiraProjectType>;
|
|
7991
9083
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
7992
9084
|
status?: Maybe<JiraProjectStatus>;
|
|
9085
|
+
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
7993
9086
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
7994
9087
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
7995
9088
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -8212,6 +9305,7 @@ export declare type JiraProjectSortInput = {
|
|
|
8212
9305
|
order?: Maybe<SortDirection>;
|
|
8213
9306
|
};
|
|
8214
9307
|
export declare enum JiraProjectStatus {
|
|
9308
|
+
Active = "ACTIVE",
|
|
8215
9309
|
Archived = "ARCHIVED",
|
|
8216
9310
|
Deleted = "DELETED"
|
|
8217
9311
|
}
|
|
@@ -8224,6 +9318,12 @@ export declare enum JiraProjectType {
|
|
|
8224
9318
|
Business = "BUSINESS",
|
|
8225
9319
|
Software = "SOFTWARE"
|
|
8226
9320
|
}
|
|
9321
|
+
export declare type JiraPullRequestReviewer = {
|
|
9322
|
+
__typename?: 'JiraPullRequestReviewer';
|
|
9323
|
+
avatar?: Maybe<JiraAvatar>;
|
|
9324
|
+
name?: Maybe<Scalars['String']>;
|
|
9325
|
+
hasApproved?: Maybe<Scalars['Boolean']>;
|
|
9326
|
+
};
|
|
8227
9327
|
export declare enum JiraPullRequestState {
|
|
8228
9328
|
Open = "OPEN",
|
|
8229
9329
|
Declined = "DECLINED",
|
|
@@ -8241,9 +9341,19 @@ export declare type JiraQuery = {
|
|
|
8241
9341
|
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
8242
9342
|
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
8243
9343
|
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
9344
|
+
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
9345
|
+
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
8244
9346
|
issueByKey?: Maybe<JiraIssue>;
|
|
8245
9347
|
issueById?: Maybe<JiraIssue>;
|
|
9348
|
+
issuesById?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
9349
|
+
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
9350
|
+
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
9351
|
+
commentsById?: Maybe<Array<Maybe<JiraComment>>>;
|
|
9352
|
+
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
8246
9353
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9354
|
+
filter?: Maybe<JiraFilter>;
|
|
9355
|
+
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
9356
|
+
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
8247
9357
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
8248
9358
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
8249
9359
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
@@ -8293,6 +9403,20 @@ export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
|
8293
9403
|
export declare type JiraQueryIssueSearchViewArgs = {
|
|
8294
9404
|
id: Scalars['ID'];
|
|
8295
9405
|
};
|
|
9406
|
+
export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
9407
|
+
cloudId: Scalars['ID'];
|
|
9408
|
+
namespace?: Maybe<Scalars['String']>;
|
|
9409
|
+
viewId?: Maybe<Scalars['String']>;
|
|
9410
|
+
};
|
|
9411
|
+
export declare type JiraQueryIssueSearchStableArgs = {
|
|
9412
|
+
cloudId: Scalars['ID'];
|
|
9413
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
9414
|
+
options?: Maybe<JiraIssueSearchOptions>;
|
|
9415
|
+
first?: Maybe<Scalars['Int']>;
|
|
9416
|
+
after?: Maybe<Scalars['String']>;
|
|
9417
|
+
last?: Maybe<Scalars['Int']>;
|
|
9418
|
+
before?: Maybe<Scalars['String']>;
|
|
9419
|
+
};
|
|
8296
9420
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
8297
9421
|
key: Scalars['String'];
|
|
8298
9422
|
cloudId: Scalars['ID'];
|
|
@@ -8300,10 +9424,40 @@ export declare type JiraQueryIssueByKeyArgs = {
|
|
|
8300
9424
|
export declare type JiraQueryIssueByIdArgs = {
|
|
8301
9425
|
id: Scalars['ID'];
|
|
8302
9426
|
};
|
|
9427
|
+
export declare type JiraQueryIssuesByIdArgs = {
|
|
9428
|
+
ids: Array<Scalars['ID']>;
|
|
9429
|
+
};
|
|
9430
|
+
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
9431
|
+
issueId: Scalars['ID'];
|
|
9432
|
+
};
|
|
9433
|
+
export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
9434
|
+
issueKey: Scalars['String'];
|
|
9435
|
+
};
|
|
9436
|
+
export declare type JiraQueryCommentsByIdArgs = {
|
|
9437
|
+
input: Array<JiraCommentByIdInput>;
|
|
9438
|
+
};
|
|
8303
9439
|
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
8304
9440
|
cloudId: Scalars['ID'];
|
|
8305
9441
|
keys: Array<Scalars['String']>;
|
|
8306
9442
|
};
|
|
9443
|
+
export declare type JiraQueryFilterArgs = {
|
|
9444
|
+
id: Scalars['ID'];
|
|
9445
|
+
};
|
|
9446
|
+
export declare type JiraQueryFavouriteFiltersArgs = {
|
|
9447
|
+
cloudId: Scalars['ID'];
|
|
9448
|
+
first?: Maybe<Scalars['Int']>;
|
|
9449
|
+
after?: Maybe<Scalars['String']>;
|
|
9450
|
+
last?: Maybe<Scalars['Int']>;
|
|
9451
|
+
before?: Maybe<Scalars['String']>;
|
|
9452
|
+
};
|
|
9453
|
+
export declare type JiraQuerySystemFiltersArgs = {
|
|
9454
|
+
cloudId: Scalars['ID'];
|
|
9455
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
9456
|
+
first?: Maybe<Scalars['Int']>;
|
|
9457
|
+
after?: Maybe<Scalars['String']>;
|
|
9458
|
+
last?: Maybe<Scalars['Int']>;
|
|
9459
|
+
before?: Maybe<Scalars['String']>;
|
|
9460
|
+
};
|
|
8307
9461
|
export declare type JiraQueryJqlBuilderArgs = {
|
|
8308
9462
|
cloudId: Scalars['ID'];
|
|
8309
9463
|
};
|
|
@@ -8499,6 +9653,12 @@ export declare type JiraReleasesTimeWindowInput = {
|
|
|
8499
9653
|
after: Scalars['DateTime'];
|
|
8500
9654
|
before: Scalars['DateTime'];
|
|
8501
9655
|
};
|
|
9656
|
+
export declare type JiraReplaceIssueSearchViewFieldConfigSetsInput = {
|
|
9657
|
+
before?: Maybe<Scalars['String']>;
|
|
9658
|
+
after?: Maybe<Scalars['String']>;
|
|
9659
|
+
nodes: Array<Scalars['String']>;
|
|
9660
|
+
inclusive?: Maybe<Scalars['Boolean']>;
|
|
9661
|
+
};
|
|
8502
9662
|
export declare type JiraResolution = Node & {
|
|
8503
9663
|
__typename?: 'JiraResolution';
|
|
8504
9664
|
id: Scalars['ID'];
|
|
@@ -8550,8 +9710,8 @@ export declare enum JiraReviewState {
|
|
|
8550
9710
|
}
|
|
8551
9711
|
export declare type JiraRichText = {
|
|
8552
9712
|
__typename?: 'JiraRichText';
|
|
8553
|
-
plainText?: Maybe<Scalars['String']>;
|
|
8554
9713
|
adfValue?: Maybe<JiraAdf>;
|
|
9714
|
+
plainText?: Maybe<Scalars['String']>;
|
|
8555
9715
|
wikiValue?: Maybe<Scalars['String']>;
|
|
8556
9716
|
};
|
|
8557
9717
|
export declare type JiraRichTextField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
@@ -8586,6 +9746,11 @@ export declare type JiraRoleEdge = {
|
|
|
8586
9746
|
node?: Maybe<JiraRole>;
|
|
8587
9747
|
cursor: Scalars['String'];
|
|
8588
9748
|
};
|
|
9749
|
+
export declare type JiraScmRepository = {
|
|
9750
|
+
__typename?: 'JiraScmRepository';
|
|
9751
|
+
name?: Maybe<Scalars['String']>;
|
|
9752
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
9753
|
+
};
|
|
8589
9754
|
export declare type JiraSecurityLevel = Node & {
|
|
8590
9755
|
__typename?: 'JiraSecurityLevel';
|
|
8591
9756
|
id: Scalars['ID'];
|
|
@@ -8639,6 +9804,30 @@ export declare type JiraServiceManagementActiveApproval = Node & {
|
|
|
8639
9804
|
approverPrincipals?: Maybe<JiraServiceManagementApproverPrincipalConnection>;
|
|
8640
9805
|
pendingApprovalCount?: Maybe<Scalars['Int']>;
|
|
8641
9806
|
};
|
|
9807
|
+
export declare type JiraServiceManagementActiveApprovalApproversArgs = {
|
|
9808
|
+
first?: Maybe<Scalars['Int']>;
|
|
9809
|
+
after?: Maybe<Scalars['String']>;
|
|
9810
|
+
last?: Maybe<Scalars['Int']>;
|
|
9811
|
+
before?: Maybe<Scalars['String']>;
|
|
9812
|
+
};
|
|
9813
|
+
export declare type JiraServiceManagementActiveApprovalExcludedApproversArgs = {
|
|
9814
|
+
first?: Maybe<Scalars['Int']>;
|
|
9815
|
+
after?: Maybe<Scalars['String']>;
|
|
9816
|
+
last?: Maybe<Scalars['Int']>;
|
|
9817
|
+
before?: Maybe<Scalars['String']>;
|
|
9818
|
+
};
|
|
9819
|
+
export declare type JiraServiceManagementActiveApprovalDecisionsArgs = {
|
|
9820
|
+
first?: Maybe<Scalars['Int']>;
|
|
9821
|
+
after?: Maybe<Scalars['String']>;
|
|
9822
|
+
last?: Maybe<Scalars['Int']>;
|
|
9823
|
+
before?: Maybe<Scalars['String']>;
|
|
9824
|
+
};
|
|
9825
|
+
export declare type JiraServiceManagementActiveApprovalApproverPrincipalsArgs = {
|
|
9826
|
+
first?: Maybe<Scalars['Int']>;
|
|
9827
|
+
after?: Maybe<Scalars['String']>;
|
|
9828
|
+
last?: Maybe<Scalars['Int']>;
|
|
9829
|
+
before?: Maybe<Scalars['String']>;
|
|
9830
|
+
};
|
|
8642
9831
|
export declare type JiraServiceManagementApprovalCondition = {
|
|
8643
9832
|
__typename?: 'JiraServiceManagementApprovalCondition';
|
|
8644
9833
|
type?: Maybe<Scalars['String']>;
|
|
@@ -8696,7 +9885,7 @@ export declare type JiraServiceManagementApproverEdge = {
|
|
|
8696
9885
|
node?: Maybe<JiraServiceManagementApprover>;
|
|
8697
9886
|
cursor: Scalars['String'];
|
|
8698
9887
|
};
|
|
8699
|
-
export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal |
|
|
9888
|
+
export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal | JiraServiceManagementGroupApproverPrincipal;
|
|
8700
9889
|
export declare type JiraServiceManagementApproverPrincipalConnection = {
|
|
8701
9890
|
__typename?: 'JiraServiceManagementApproverPrincipalConnection';
|
|
8702
9891
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -8732,6 +9921,7 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
8732
9921
|
__typename?: 'JiraServiceManagementComment';
|
|
8733
9922
|
id: Scalars['ID'];
|
|
8734
9923
|
commentId: Scalars['ID'];
|
|
9924
|
+
issue?: Maybe<JiraIssue>;
|
|
8735
9925
|
webUrl?: Maybe<Scalars['URL']>;
|
|
8736
9926
|
author?: Maybe<User>;
|
|
8737
9927
|
updateAuthor?: Maybe<User>;
|
|
@@ -8756,6 +9946,12 @@ export declare type JiraServiceManagementCompletedApproval = Node & {
|
|
|
8756
9946
|
completedDate?: Maybe<Scalars['DateTime']>;
|
|
8757
9947
|
status?: Maybe<JiraServiceManagementApprovalStatus>;
|
|
8758
9948
|
};
|
|
9949
|
+
export declare type JiraServiceManagementCompletedApprovalApproversArgs = {
|
|
9950
|
+
first?: Maybe<Scalars['Int']>;
|
|
9951
|
+
after?: Maybe<Scalars['String']>;
|
|
9952
|
+
last?: Maybe<Scalars['Int']>;
|
|
9953
|
+
before?: Maybe<Scalars['String']>;
|
|
9954
|
+
};
|
|
8759
9955
|
export declare type JiraServiceManagementCompletedApprovalConnection = {
|
|
8760
9956
|
__typename?: 'JiraServiceManagementCompletedApprovalConnection';
|
|
8761
9957
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -8806,17 +10002,6 @@ export declare type JiraServiceManagementGroupApproverPrincipal = {
|
|
|
8806
10002
|
memberCount?: Maybe<Scalars['Int']>;
|
|
8807
10003
|
approvedCount?: Maybe<Scalars['Int']>;
|
|
8808
10004
|
};
|
|
8809
|
-
export declare type JiraServiceManagementGroupApproverPrincipalConnection = {
|
|
8810
|
-
__typename?: 'JiraServiceManagementGroupApproverPrincipalConnection';
|
|
8811
|
-
totalCount?: Maybe<Scalars['Int']>;
|
|
8812
|
-
pageInfo: PageInfo;
|
|
8813
|
-
edges?: Maybe<Array<Maybe<JiraServiceManagementGroupApproverPrincipalEdge>>>;
|
|
8814
|
-
};
|
|
8815
|
-
export declare type JiraServiceManagementGroupApproverPrincipalEdge = {
|
|
8816
|
-
__typename?: 'JiraServiceManagementGroupApproverPrincipalEdge';
|
|
8817
|
-
node?: Maybe<JiraServiceManagementGroupApproverPrincipal>;
|
|
8818
|
-
cursor: Scalars['String'];
|
|
8819
|
-
};
|
|
8820
10005
|
export declare type JiraServiceManagementIncident = {
|
|
8821
10006
|
__typename?: 'JiraServiceManagementIncident';
|
|
8822
10007
|
hasLinkedIncidents?: Maybe<Scalars['Boolean']>;
|
|
@@ -8991,7 +10176,7 @@ export declare type JiraServiceManagementRequestLanguageField = Node & JiraIssue
|
|
|
8991
10176
|
export declare type JiraServiceManagementRequestType = Node & {
|
|
8992
10177
|
__typename?: 'JiraServiceManagementRequestType';
|
|
8993
10178
|
id: Scalars['ID'];
|
|
8994
|
-
requestTypeId: Scalars['
|
|
10179
|
+
requestTypeId: Scalars['String'];
|
|
8995
10180
|
name?: Maybe<Scalars['String']>;
|
|
8996
10181
|
key?: Maybe<Scalars['String']>;
|
|
8997
10182
|
description?: Maybe<Scalars['String']>;
|
|
@@ -9076,17 +10261,6 @@ export declare type JiraServiceManagementUserApproverPrincipal = {
|
|
|
9076
10261
|
user?: Maybe<User>;
|
|
9077
10262
|
jiraRest?: Maybe<Scalars['URL']>;
|
|
9078
10263
|
};
|
|
9079
|
-
export declare type JiraServiceManagementUserApproverPrincipalConnection = {
|
|
9080
|
-
__typename?: 'JiraServiceManagementUserApproverPrincipalConnection';
|
|
9081
|
-
totalCount?: Maybe<Scalars['Int']>;
|
|
9082
|
-
pageInfo: PageInfo;
|
|
9083
|
-
edges?: Maybe<Array<Maybe<JiraServiceManagementUserApproverPrincipalEdge>>>;
|
|
9084
|
-
};
|
|
9085
|
-
export declare type JiraServiceManagementUserApproverPrincipalEdge = {
|
|
9086
|
-
__typename?: 'JiraServiceManagementUserApproverPrincipalEdge';
|
|
9087
|
-
node?: Maybe<JiraServiceManagementUserApproverPrincipal>;
|
|
9088
|
-
cursor: Scalars['String'];
|
|
9089
|
-
};
|
|
9090
10264
|
export declare type JiraServiceManagementUserResponder = {
|
|
9091
10265
|
__typename?: 'JiraServiceManagementUserResponder';
|
|
9092
10266
|
user?: Maybe<User>;
|
|
@@ -9101,6 +10275,10 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
9101
10275
|
key: Scalars['String'];
|
|
9102
10276
|
value: Scalars['String'];
|
|
9103
10277
|
};
|
|
10278
|
+
export declare type JiraSimilarIssues = {
|
|
10279
|
+
__typename?: 'JiraSimilarIssues';
|
|
10280
|
+
featureEnabled: Scalars['Boolean'];
|
|
10281
|
+
};
|
|
9104
10282
|
export declare type JiraSingleGroupPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9105
10283
|
__typename?: 'JiraSingleGroupPickerField';
|
|
9106
10284
|
id: Scalars['ID'];
|
|
@@ -9277,6 +10455,18 @@ export declare enum JiraStatusCategoryColor {
|
|
|
9277
10455
|
WarmRed = "WARM_RED",
|
|
9278
10456
|
BlueGray = "BLUE_GRAY"
|
|
9279
10457
|
}
|
|
10458
|
+
export declare type JiraStatusCategoryField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
10459
|
+
__typename?: 'JiraStatusCategoryField';
|
|
10460
|
+
id: Scalars['ID'];
|
|
10461
|
+
fieldId: Scalars['String'];
|
|
10462
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
10463
|
+
type: Scalars['String'];
|
|
10464
|
+
name: Scalars['String'];
|
|
10465
|
+
description?: Maybe<Scalars['String']>;
|
|
10466
|
+
statusCategory: JiraStatusCategory;
|
|
10467
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
10468
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
10469
|
+
};
|
|
9280
10470
|
export declare type JiraStatusField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9281
10471
|
__typename?: 'JiraStatusField';
|
|
9282
10472
|
id: Scalars['ID'];
|
|
@@ -9306,6 +10496,24 @@ export declare type JiraSubtasksFieldSubtasksArgs = {
|
|
|
9306
10496
|
last?: Maybe<Scalars['Int']>;
|
|
9307
10497
|
before?: Maybe<Scalars['String']>;
|
|
9308
10498
|
};
|
|
10499
|
+
export declare type JiraSystemFilter = JiraFilter & Node & {
|
|
10500
|
+
__typename?: 'JiraSystemFilter';
|
|
10501
|
+
id: Scalars['ID'];
|
|
10502
|
+
filterId: Scalars['String'];
|
|
10503
|
+
jql: Scalars['String'];
|
|
10504
|
+
name: Scalars['String'];
|
|
10505
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
10506
|
+
};
|
|
10507
|
+
export declare type JiraSystemFilterConnection = {
|
|
10508
|
+
__typename?: 'JiraSystemFilterConnection';
|
|
10509
|
+
pageInfo: PageInfo;
|
|
10510
|
+
edges?: Maybe<Array<Maybe<JiraSystemFilterEdge>>>;
|
|
10511
|
+
};
|
|
10512
|
+
export declare type JiraSystemFilterEdge = {
|
|
10513
|
+
__typename?: 'JiraSystemFilterEdge';
|
|
10514
|
+
node?: Maybe<JiraSystemFilter>;
|
|
10515
|
+
cursor: Scalars['String'];
|
|
10516
|
+
};
|
|
9309
10517
|
export declare type JiraTeam = Node & {
|
|
9310
10518
|
__typename?: 'JiraTeam';
|
|
9311
10519
|
id: Scalars['ID'];
|
|
@@ -9347,6 +10555,27 @@ export declare type JiraTeamFieldTeamsArgs = {
|
|
|
9347
10555
|
last?: Maybe<Scalars['Int']>;
|
|
9348
10556
|
before?: Maybe<Scalars['String']>;
|
|
9349
10557
|
};
|
|
10558
|
+
export declare type JiraTeamView = {
|
|
10559
|
+
__typename?: 'JiraTeamView';
|
|
10560
|
+
jiraSuppliedId: Scalars['ID'];
|
|
10561
|
+
jiraSuppliedTeamId: Scalars['String'];
|
|
10562
|
+
jiraSuppliedName?: Maybe<Scalars['String']>;
|
|
10563
|
+
jiraSuppliedAvatar?: Maybe<JiraAvatar>;
|
|
10564
|
+
fullTeam?: Maybe<Team>;
|
|
10565
|
+
};
|
|
10566
|
+
export declare type JiraTeamViewField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
10567
|
+
__typename?: 'JiraTeamViewField';
|
|
10568
|
+
id: Scalars['ID'];
|
|
10569
|
+
fieldId: Scalars['String'];
|
|
10570
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
10571
|
+
type: Scalars['String'];
|
|
10572
|
+
name: Scalars['String'];
|
|
10573
|
+
description?: Maybe<Scalars['String']>;
|
|
10574
|
+
selectedTeam?: Maybe<JiraTeamView>;
|
|
10575
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
10576
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
10577
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
10578
|
+
};
|
|
9350
10579
|
export declare enum JiraTimeFormat {
|
|
9351
10580
|
Pretty = "PRETTY",
|
|
9352
10581
|
Days = "DAYS",
|
|
@@ -9437,6 +10666,7 @@ export declare type JiraVersion = Node & {
|
|
|
9437
10666
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
9438
10667
|
releaseDate?: Maybe<Scalars['DateTime']>;
|
|
9439
10668
|
warningConfig?: Maybe<JiraVersionWarningConfig>;
|
|
10669
|
+
connectAddonIframeData?: Maybe<Array<Maybe<JiraVersionConnectAddonIframeData>>>;
|
|
9440
10670
|
issues?: Maybe<JiraIssueConnection>;
|
|
9441
10671
|
};
|
|
9442
10672
|
export declare type JiraVersionIssuesArgs = {
|
|
@@ -9446,6 +10676,14 @@ export declare type JiraVersionIssuesArgs = {
|
|
|
9446
10676
|
before?: Maybe<Scalars['String']>;
|
|
9447
10677
|
filter?: Maybe<JiraVersionIssuesFilter>;
|
|
9448
10678
|
};
|
|
10679
|
+
export declare type JiraVersionConnectAddonIframeData = {
|
|
10680
|
+
__typename?: 'JiraVersionConnectAddonIframeData';
|
|
10681
|
+
appKey?: Maybe<Scalars['String']>;
|
|
10682
|
+
moduleKey?: Maybe<Scalars['String']>;
|
|
10683
|
+
appName?: Maybe<Scalars['String']>;
|
|
10684
|
+
location?: Maybe<Scalars['String']>;
|
|
10685
|
+
options?: Maybe<Scalars['JSON']>;
|
|
10686
|
+
};
|
|
9449
10687
|
export declare type JiraVersionConnection = {
|
|
9450
10688
|
__typename?: 'JiraVersionConnection';
|
|
9451
10689
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -9485,6 +10723,7 @@ export declare enum JiraVersionIssuesFilter {
|
|
|
9485
10723
|
InProgress = "IN_PROGRESS",
|
|
9486
10724
|
Done = "DONE",
|
|
9487
10725
|
UnreviewedCode = "UNREVIEWED_CODE",
|
|
10726
|
+
OpenReview = "OPEN_REVIEW",
|
|
9488
10727
|
OpenPullRequest = "OPEN_PULL_REQUEST",
|
|
9489
10728
|
FailingBuild = "FAILING_BUILD"
|
|
9490
10729
|
}
|
|
@@ -9496,12 +10735,14 @@ export declare enum JiraVersionStatus {
|
|
|
9496
10735
|
}
|
|
9497
10736
|
export declare type JiraVersionUpdatedWarningConfigInput = {
|
|
9498
10737
|
isOpenPullRequestEnabled?: Maybe<Scalars['Boolean']>;
|
|
10738
|
+
isOpenReviewEnabled?: Maybe<Scalars['Boolean']>;
|
|
9499
10739
|
isUnreviewedCodeEnabled?: Maybe<Scalars['Boolean']>;
|
|
9500
10740
|
isFailingBuildEnabled?: Maybe<Scalars['Boolean']>;
|
|
9501
10741
|
};
|
|
9502
10742
|
export declare type JiraVersionWarningConfig = {
|
|
9503
10743
|
__typename?: 'JiraVersionWarningConfig';
|
|
9504
10744
|
openPullRequest?: Maybe<JiraVersionWarningConfigState>;
|
|
10745
|
+
openReview?: Maybe<JiraVersionWarningConfigState>;
|
|
9505
10746
|
unreviewedCode?: Maybe<JiraVersionWarningConfigState>;
|
|
9506
10747
|
failingBuild?: Maybe<JiraVersionWarningConfigState>;
|
|
9507
10748
|
};
|
|
@@ -10033,7 +11274,6 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
10033
11274
|
export declare type Mutation = {
|
|
10034
11275
|
__typename?: 'Mutation';
|
|
10035
11276
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
10036
|
-
confluence?: Maybe<ConfluenceMutationApi>;
|
|
10037
11277
|
shepherd?: Maybe<ShepherdMutation>;
|
|
10038
11278
|
createReleaseNote: ContentPlatformReleaseNote;
|
|
10039
11279
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
@@ -10068,6 +11308,8 @@ export declare type Mutation = {
|
|
|
10068
11308
|
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
10069
11309
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
10070
11310
|
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
11311
|
+
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
11312
|
+
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
10071
11313
|
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
10072
11314
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
10073
11315
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -10096,8 +11338,11 @@ export declare type Mutation = {
|
|
|
10096
11338
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
10097
11339
|
jira?: Maybe<JiraMutation>;
|
|
10098
11340
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
11341
|
+
roadmaps?: Maybe<RoadmapsMutation>;
|
|
11342
|
+
confluence?: Maybe<ConfluenceMutationApi>;
|
|
10099
11343
|
appStorage?: Maybe<AppStorageMutation>;
|
|
10100
11344
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
11345
|
+
polaris?: Maybe<PolarisMutationNamespace>;
|
|
10101
11346
|
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
10102
11347
|
deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
|
|
10103
11348
|
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
@@ -10162,6 +11407,7 @@ export declare type Mutation = {
|
|
|
10162
11407
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
10163
11408
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
10164
11409
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
11410
|
+
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
10165
11411
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
10166
11412
|
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
10167
11413
|
};
|
|
@@ -10283,6 +11529,12 @@ export declare type MutationRankCardParentArgs = {
|
|
|
10283
11529
|
export declare type MutationSetIssueMediaVisibilityArgs = {
|
|
10284
11530
|
input?: Maybe<SetIssueMediaVisibilityInput>;
|
|
10285
11531
|
};
|
|
11532
|
+
export declare type MutationToggleBoardFeatureArgs = {
|
|
11533
|
+
input?: Maybe<ToggleBoardFeatureInput>;
|
|
11534
|
+
};
|
|
11535
|
+
export declare type MutationSetBoardEstimationTypeArgs = {
|
|
11536
|
+
input?: Maybe<SetBoardEstimationTypeInput>;
|
|
11537
|
+
};
|
|
10286
11538
|
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
10287
11539
|
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
10288
11540
|
};
|
|
@@ -10606,6 +11858,36 @@ export declare type MyActivitiesViewedArgs = {
|
|
|
10606
11858
|
first?: Maybe<Scalars['Int']>;
|
|
10607
11859
|
after?: Maybe<Scalars['String']>;
|
|
10608
11860
|
};
|
|
11861
|
+
export declare type MyActivity = {
|
|
11862
|
+
__typename?: 'MyActivity';
|
|
11863
|
+
all: ActivityConnection;
|
|
11864
|
+
workedOn: ActivityConnection;
|
|
11865
|
+
viewed: ActivityConnection;
|
|
11866
|
+
};
|
|
11867
|
+
export declare type MyActivityAllArgs = {
|
|
11868
|
+
filter?: Maybe<MyActivityFilter>;
|
|
11869
|
+
first?: Maybe<Scalars['Int']>;
|
|
11870
|
+
after?: Maybe<Scalars['String']>;
|
|
11871
|
+
};
|
|
11872
|
+
export declare type MyActivityWorkedOnArgs = {
|
|
11873
|
+
filter?: Maybe<MyActivityFilter>;
|
|
11874
|
+
first?: Maybe<Scalars['Int']>;
|
|
11875
|
+
after?: Maybe<Scalars['String']>;
|
|
11876
|
+
};
|
|
11877
|
+
export declare type MyActivityViewedArgs = {
|
|
11878
|
+
filter?: Maybe<MyActivityFilter>;
|
|
11879
|
+
first?: Maybe<Scalars['Int']>;
|
|
11880
|
+
after?: Maybe<Scalars['String']>;
|
|
11881
|
+
};
|
|
11882
|
+
export declare type MyActivityFilter = {
|
|
11883
|
+
rootContainerIds?: Maybe<Array<Scalars['ID']>>;
|
|
11884
|
+
type?: Maybe<ActivitiesFilterType>;
|
|
11885
|
+
arguments?: Maybe<ActivityFilterArgs>;
|
|
11886
|
+
};
|
|
11887
|
+
export declare type NadelBatchObjectIdentifiedBy = {
|
|
11888
|
+
sourceId: Scalars['String'];
|
|
11889
|
+
resultId: Scalars['String'];
|
|
11890
|
+
};
|
|
10609
11891
|
export declare type NadelHydrationArgument = {
|
|
10610
11892
|
name: Scalars['String'];
|
|
10611
11893
|
value: Scalars['String'];
|
|
@@ -10625,6 +11907,7 @@ export declare type NewCardParent = {
|
|
|
10625
11907
|
export declare type Node = {
|
|
10626
11908
|
id: Scalars['ID'];
|
|
10627
11909
|
};
|
|
11910
|
+
export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection | IssueAndProject;
|
|
10628
11911
|
export declare type OpsgenieAlertCountByPriority = {
|
|
10629
11912
|
__typename?: 'OpsgenieAlertCountByPriority';
|
|
10630
11913
|
priority?: Maybe<Scalars['String']>;
|
|
@@ -11378,6 +12661,10 @@ export declare type PolarisMatrixConfig = {
|
|
|
11378
12661
|
__typename?: 'PolarisMatrixConfig';
|
|
11379
12662
|
axes?: Maybe<Array<PolarisMatrixAxis>>;
|
|
11380
12663
|
};
|
|
12664
|
+
export declare type PolarisMutationNamespace = {
|
|
12665
|
+
__typename?: 'PolarisMutationNamespace';
|
|
12666
|
+
ranking?: Maybe<PolarisRankingMutationNamespace>;
|
|
12667
|
+
};
|
|
11381
12668
|
export declare type PolarisPlay = {
|
|
11382
12669
|
__typename?: 'PolarisPlay';
|
|
11383
12670
|
id: Scalars['ID'];
|
|
@@ -11449,6 +12736,55 @@ export declare type PolarisProjectTemplate = {
|
|
|
11449
12736
|
__typename?: 'PolarisProjectTemplate';
|
|
11450
12737
|
ideas?: Maybe<Scalars['JSON']>;
|
|
11451
12738
|
};
|
|
12739
|
+
export declare type PolarisQueryNamespace = {
|
|
12740
|
+
__typename?: 'PolarisQueryNamespace';
|
|
12741
|
+
ranking?: Maybe<PolarisRankingQueryNamespace>;
|
|
12742
|
+
};
|
|
12743
|
+
export declare type PolarisRankingMutationNamespace = {
|
|
12744
|
+
__typename?: 'PolarisRankingMutationNamespace';
|
|
12745
|
+
createList?: Maybe<RankingDiffPayload>;
|
|
12746
|
+
deleteList?: Maybe<RankingDiffPayload>;
|
|
12747
|
+
makeFirst?: Maybe<RankingDiffPayload>;
|
|
12748
|
+
makeLast?: Maybe<RankingDiffPayload>;
|
|
12749
|
+
makeBefore?: Maybe<RankingDiffPayload>;
|
|
12750
|
+
makeAfter?: Maybe<RankingDiffPayload>;
|
|
12751
|
+
makeUnranked?: Maybe<RankingDiffPayload>;
|
|
12752
|
+
};
|
|
12753
|
+
export declare type PolarisRankingMutationNamespaceCreateListArgs = {
|
|
12754
|
+
input: CreateRankingListInput;
|
|
12755
|
+
};
|
|
12756
|
+
export declare type PolarisRankingMutationNamespaceDeleteListArgs = {
|
|
12757
|
+
listId: Scalars['ID'];
|
|
12758
|
+
};
|
|
12759
|
+
export declare type PolarisRankingMutationNamespaceMakeFirstArgs = {
|
|
12760
|
+
listId: Scalars['ID'];
|
|
12761
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12762
|
+
};
|
|
12763
|
+
export declare type PolarisRankingMutationNamespaceMakeLastArgs = {
|
|
12764
|
+
listId: Scalars['ID'];
|
|
12765
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12766
|
+
};
|
|
12767
|
+
export declare type PolarisRankingMutationNamespaceMakeBeforeArgs = {
|
|
12768
|
+
listId: Scalars['ID'];
|
|
12769
|
+
refId: Scalars['ID'];
|
|
12770
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12771
|
+
};
|
|
12772
|
+
export declare type PolarisRankingMutationNamespaceMakeAfterArgs = {
|
|
12773
|
+
listId: Scalars['ID'];
|
|
12774
|
+
refId: Scalars['ID'];
|
|
12775
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12776
|
+
};
|
|
12777
|
+
export declare type PolarisRankingMutationNamespaceMakeUnrankedArgs = {
|
|
12778
|
+
listId: Scalars['ID'];
|
|
12779
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12780
|
+
};
|
|
12781
|
+
export declare type PolarisRankingQueryNamespace = {
|
|
12782
|
+
__typename?: 'PolarisRankingQueryNamespace';
|
|
12783
|
+
list?: Maybe<Array<Maybe<RankItem>>>;
|
|
12784
|
+
};
|
|
12785
|
+
export declare type PolarisRankingQueryNamespaceListArgs = {
|
|
12786
|
+
listId: Scalars['ID'];
|
|
12787
|
+
};
|
|
11452
12788
|
export declare enum PolarisRefreshError {
|
|
11453
12789
|
NeedAuth = "NEED_AUTH",
|
|
11454
12790
|
InvalidSnippet = "INVALID_SNIPPET",
|
|
@@ -11627,6 +12963,7 @@ export declare type PolarisView = {
|
|
|
11627
12963
|
lastViewed?: Maybe<Array<Maybe<PolarisViewLastViewed>>>;
|
|
11628
12964
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|
|
11629
12965
|
collabServiceDelegation?: Maybe<PolarisDelegationToken>;
|
|
12966
|
+
sortMode: PolarisViewSortMode;
|
|
11630
12967
|
};
|
|
11631
12968
|
export declare type PolarisViewJqlArgs = {
|
|
11632
12969
|
filter?: Maybe<PolarisFilterInput>;
|
|
@@ -11693,6 +13030,11 @@ export declare enum PolarisViewSetType {
|
|
|
11693
13030
|
Single = "SINGLE",
|
|
11694
13031
|
Section = "SECTION"
|
|
11695
13032
|
}
|
|
13033
|
+
export declare enum PolarisViewSortMode {
|
|
13034
|
+
ProjectRank = "PROJECT_RANK",
|
|
13035
|
+
ViewRank = "VIEW_RANK",
|
|
13036
|
+
FieldsSort = "FIELDS_SORT"
|
|
13037
|
+
}
|
|
11696
13038
|
export declare type PolarisViewTableColumnSize = {
|
|
11697
13039
|
__typename?: 'PolarisViewTableColumnSize';
|
|
11698
13040
|
field: PolarisIdeaField;
|
|
@@ -11722,18 +13064,15 @@ export declare type Query = {
|
|
|
11722
13064
|
echo?: Maybe<Scalars['String']>;
|
|
11723
13065
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
11724
13066
|
node?: Maybe<Node>;
|
|
11725
|
-
confluence?: Maybe<ConfluenceQueryApi>;
|
|
11726
13067
|
activities?: Maybe<Activities>;
|
|
13068
|
+
activity?: Maybe<Activity>;
|
|
11727
13069
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
11728
|
-
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
11729
|
-
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
11730
|
-
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
11731
13070
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
11732
13071
|
shepherd?: Maybe<ShepherdQuery>;
|
|
11733
13072
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
11734
13073
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
11735
13074
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
11736
|
-
practicePages:
|
|
13075
|
+
practicePages: ContentPlatformPracticePagesConnection;
|
|
11737
13076
|
practicePage: ContentPlatformPracticePage;
|
|
11738
13077
|
apps?: Maybe<AppConnection>;
|
|
11739
13078
|
app?: Maybe<App>;
|
|
@@ -11743,10 +13082,14 @@ export declare type Query = {
|
|
|
11743
13082
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
11744
13083
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
11745
13084
|
search?: Maybe<SearchQueryApi>;
|
|
13085
|
+
devOps?: Maybe<DevOps>;
|
|
11746
13086
|
me: AuthenticationContext;
|
|
11747
13087
|
user?: Maybe<User>;
|
|
11748
13088
|
users?: Maybe<Array<User>>;
|
|
11749
13089
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
13090
|
+
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
13091
|
+
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
13092
|
+
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
11750
13093
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
11751
13094
|
devOpsServiceRelationshipsForOpsgenieTeam?: Maybe<DevOpsServiceAndOpsgenieTeamRelationshipConnection>;
|
|
11752
13095
|
devOpsServiceAndOpsgenieTeamRelationship?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
@@ -11776,6 +13119,7 @@ export declare type Query = {
|
|
|
11776
13119
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
11777
13120
|
testing?: Maybe<Testing>;
|
|
11778
13121
|
movie?: Maybe<TestingMovie>;
|
|
13122
|
+
confluence?: Maybe<ConfluenceQueryApi>;
|
|
11779
13123
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
11780
13124
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
11781
13125
|
appStoredEntitiesForCleanup?: Maybe<AppStoredEntityConnection>;
|
|
@@ -11794,6 +13138,7 @@ export declare type Query = {
|
|
|
11794
13138
|
polarisCollabToken?: Maybe<PolarisDelegationToken>;
|
|
11795
13139
|
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
11796
13140
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
13141
|
+
polaris?: Maybe<PolarisQueryNamespace>;
|
|
11797
13142
|
dvcs?: Maybe<DvcsQuery>;
|
|
11798
13143
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
11799
13144
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
@@ -11808,30 +13153,13 @@ export declare type Query = {
|
|
|
11808
13153
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
11809
13154
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
11810
13155
|
appDeployment?: Maybe<AppDeployment>;
|
|
13156
|
+
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
11811
13157
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
11812
13158
|
extensionsEcho?: Maybe<Scalars['String']>;
|
|
11813
13159
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
11814
13160
|
extensionByKey?: Maybe<Extension>;
|
|
11815
13161
|
};
|
|
11816
|
-
export declare type QueryNodeArgs = {
|
|
11817
|
-
id: Scalars['ID'];
|
|
11818
|
-
};
|
|
11819
|
-
export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
|
|
11820
|
-
id: Scalars['ID'];
|
|
11821
|
-
cloudId: Scalars['ID'];
|
|
11822
|
-
first?: Maybe<Scalars['Int']>;
|
|
11823
|
-
after?: Maybe<Scalars['String']>;
|
|
11824
|
-
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
11825
|
-
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
11826
|
-
};
|
|
11827
|
-
export declare type QueryRepositoryRelationshipsForJiraProjectArgs = {
|
|
11828
|
-
id: Scalars['ID'];
|
|
11829
|
-
first?: Maybe<Scalars['Int']>;
|
|
11830
|
-
after?: Maybe<Scalars['String']>;
|
|
11831
|
-
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
11832
|
-
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
11833
|
-
};
|
|
11834
|
-
export declare type QueryJiraProjectAndRepositoryRelationshipArgs = {
|
|
13162
|
+
export declare type QueryNodeArgs = {
|
|
11835
13163
|
id: Scalars['ID'];
|
|
11836
13164
|
};
|
|
11837
13165
|
export declare type QueryReleaseNotesArgs = {
|
|
@@ -11845,6 +13173,10 @@ export declare type QueryReleaseNoteArgs = {
|
|
|
11845
13173
|
id: Scalars['String'];
|
|
11846
13174
|
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
11847
13175
|
};
|
|
13176
|
+
export declare type QueryPracticePagesArgs = {
|
|
13177
|
+
after?: Maybe<Scalars['String']>;
|
|
13178
|
+
first?: Maybe<Scalars['Int']>;
|
|
13179
|
+
};
|
|
11848
13180
|
export declare type QueryPracticePageArgs = {
|
|
11849
13181
|
id: Scalars['String'];
|
|
11850
13182
|
};
|
|
@@ -11873,6 +13205,24 @@ export declare type QueryUserArgs = {
|
|
|
11873
13205
|
export declare type QueryUsersArgs = {
|
|
11874
13206
|
accountIds: Array<Scalars['ID']>;
|
|
11875
13207
|
};
|
|
13208
|
+
export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
|
|
13209
|
+
id: Scalars['ID'];
|
|
13210
|
+
cloudId: Scalars['ID'];
|
|
13211
|
+
first?: Maybe<Scalars['Int']>;
|
|
13212
|
+
after?: Maybe<Scalars['String']>;
|
|
13213
|
+
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
13214
|
+
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
13215
|
+
};
|
|
13216
|
+
export declare type QueryRepositoryRelationshipsForJiraProjectArgs = {
|
|
13217
|
+
id: Scalars['ID'];
|
|
13218
|
+
first?: Maybe<Scalars['Int']>;
|
|
13219
|
+
after?: Maybe<Scalars['String']>;
|
|
13220
|
+
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
13221
|
+
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
13222
|
+
};
|
|
13223
|
+
export declare type QueryJiraProjectAndRepositoryRelationshipArgs = {
|
|
13224
|
+
id: Scalars['ID'];
|
|
13225
|
+
};
|
|
11876
13226
|
export declare type QueryOpsgenieTeamRelationshipForDevOpsServiceArgs = {
|
|
11877
13227
|
id: Scalars['ID'];
|
|
11878
13228
|
};
|
|
@@ -12114,14 +13464,29 @@ export declare type RankColumnInput = {
|
|
|
12114
13464
|
};
|
|
12115
13465
|
export declare type RankColumnOutput = MutationResponse & {
|
|
12116
13466
|
__typename?: 'RankColumnOutput';
|
|
12117
|
-
columns?: Maybe<Array<Column
|
|
13467
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
12118
13468
|
statusCode: Scalars['Int'];
|
|
12119
13469
|
success: Scalars['Boolean'];
|
|
12120
13470
|
message: Scalars['String'];
|
|
12121
13471
|
};
|
|
13472
|
+
export declare type RankItem = {
|
|
13473
|
+
__typename?: 'RankItem';
|
|
13474
|
+
id: Scalars['ID'];
|
|
13475
|
+
rank: Scalars['Float'];
|
|
13476
|
+
};
|
|
13477
|
+
export declare type RankingDiffPayload = {
|
|
13478
|
+
__typename?: 'RankingDiffPayload';
|
|
13479
|
+
added?: Maybe<Array<RankItem>>;
|
|
13480
|
+
changed?: Maybe<Array<RankItem>>;
|
|
13481
|
+
deleted?: Maybe<Array<RankItem>>;
|
|
13482
|
+
};
|
|
12122
13483
|
export declare enum RateLimitingCurrency {
|
|
12123
13484
|
TestingService = "TESTING_SERVICE",
|
|
13485
|
+
DevopsContainerRelationshipsReadCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_READ_CURRENCY",
|
|
13486
|
+
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
12124
13487
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
13488
|
+
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
13489
|
+
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
12125
13490
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
12126
13491
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
12127
13492
|
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY"
|
|
@@ -12151,6 +13516,13 @@ export declare type RefreshToken = {
|
|
|
12151
13516
|
export declare type RefreshTokenInput = {
|
|
12152
13517
|
refreshTokenRotation: Scalars['Boolean'];
|
|
12153
13518
|
};
|
|
13519
|
+
export declare type Remote = {
|
|
13520
|
+
__typename?: 'Remote';
|
|
13521
|
+
key: Scalars['String'];
|
|
13522
|
+
baseUrl: Scalars['String'];
|
|
13523
|
+
classifications?: Maybe<Array<Classification>>;
|
|
13524
|
+
locations?: Maybe<Array<Scalars['String']>>;
|
|
13525
|
+
};
|
|
12154
13526
|
export declare type RemoveCompassComponentLabelsInput = {
|
|
12155
13527
|
componentId: Scalars['ID'];
|
|
12156
13528
|
labelNames: Array<Scalars['String']>;
|
|
@@ -12206,6 +13578,37 @@ export declare type ResolvedPolarisObjectExternalAuth = {
|
|
|
12206
13578
|
displayName: Scalars['String'];
|
|
12207
13579
|
url: Scalars['String'];
|
|
12208
13580
|
};
|
|
13581
|
+
export declare type RoadmapAddItemInput = {
|
|
13582
|
+
projectId: Scalars['ID'];
|
|
13583
|
+
itemTypeId: Scalars['ID'];
|
|
13584
|
+
parentId?: Maybe<Scalars['ID']>;
|
|
13585
|
+
summary: Scalars['String'];
|
|
13586
|
+
dueDate?: Maybe<Scalars['Date']>;
|
|
13587
|
+
startDate?: Maybe<Scalars['Date']>;
|
|
13588
|
+
color?: Maybe<RoadmapPaletteColor>;
|
|
13589
|
+
rank?: Maybe<RoadmapAddItemRank>;
|
|
13590
|
+
jql?: Maybe<Scalars['String']>;
|
|
13591
|
+
assignee?: Maybe<Scalars['String']>;
|
|
13592
|
+
labels?: Maybe<Array<Scalars['String']>>;
|
|
13593
|
+
componentIds?: Maybe<Array<Scalars['ID']>>;
|
|
13594
|
+
versionIds?: Maybe<Array<Scalars['ID']>>;
|
|
13595
|
+
};
|
|
13596
|
+
export declare type RoadmapAddItemPayload = Payload & {
|
|
13597
|
+
__typename?: 'RoadmapAddItemPayload';
|
|
13598
|
+
success: Scalars['Boolean'];
|
|
13599
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13600
|
+
output?: Maybe<RoadmapAddItemResponse>;
|
|
13601
|
+
};
|
|
13602
|
+
export declare type RoadmapAddItemRank = {
|
|
13603
|
+
beforeId?: Maybe<Scalars['ID']>;
|
|
13604
|
+
};
|
|
13605
|
+
export declare type RoadmapAddItemResponse = {
|
|
13606
|
+
__typename?: 'RoadmapAddItemResponse';
|
|
13607
|
+
id: Scalars['ID'];
|
|
13608
|
+
key: Scalars['String'];
|
|
13609
|
+
item?: Maybe<RoadmapItem>;
|
|
13610
|
+
matchesSource: Scalars['Boolean'];
|
|
13611
|
+
};
|
|
12209
13612
|
export declare type RoadmapBoardConfiguration = {
|
|
12210
13613
|
__typename?: 'RoadmapBoardConfiguration';
|
|
12211
13614
|
jql?: Maybe<Scalars['String']>;
|
|
@@ -12231,6 +13634,11 @@ export declare type RoadmapConfiguration = {
|
|
|
12231
13634
|
userConfiguration?: Maybe<RoadmapUserConfiguration>;
|
|
12232
13635
|
boardConfiguration?: Maybe<RoadmapBoardConfiguration>;
|
|
12233
13636
|
};
|
|
13637
|
+
export declare type RoadmapContent = {
|
|
13638
|
+
__typename?: 'RoadmapContent';
|
|
13639
|
+
configuration: RoadmapConfiguration;
|
|
13640
|
+
items: RoadmapItemConnection;
|
|
13641
|
+
};
|
|
12234
13642
|
export declare type RoadmapCreationPreferences = {
|
|
12235
13643
|
__typename?: 'RoadmapCreationPreferences';
|
|
12236
13644
|
projectId?: Maybe<Scalars['Long']>;
|
|
@@ -12247,6 +13655,9 @@ export declare type RoadmapDetails = {
|
|
|
12247
13655
|
roadmapConfiguration?: Maybe<RoadmapConfiguration>;
|
|
12248
13656
|
roadmapItems?: Maybe<RoadmapItemConnection>;
|
|
12249
13657
|
metadata?: Maybe<RoadmapMetadata>;
|
|
13658
|
+
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
13659
|
+
healthcheck?: Maybe<RoadmapHealthCheck>;
|
|
13660
|
+
content?: Maybe<RoadmapContent>;
|
|
12250
13661
|
};
|
|
12251
13662
|
export declare enum RoadmapEpicView {
|
|
12252
13663
|
All = "ALL",
|
|
@@ -12264,6 +13675,43 @@ export declare type RoadmapExternalConfiguration = {
|
|
|
12264
13675
|
epicNameField?: Maybe<Scalars['ID']>;
|
|
12265
13676
|
sprintField?: Maybe<Scalars['ID']>;
|
|
12266
13677
|
};
|
|
13678
|
+
export declare type RoadmapFeatureToggleInput = {
|
|
13679
|
+
sourceARI: Scalars['ID'];
|
|
13680
|
+
enabled: Scalars['Boolean'];
|
|
13681
|
+
};
|
|
13682
|
+
export declare type RoadmapFeatureToggleOutput = {
|
|
13683
|
+
__typename?: 'RoadmapFeatureToggleOutput';
|
|
13684
|
+
enabled: Scalars['Boolean'];
|
|
13685
|
+
isCrossProject: Scalars['Boolean'];
|
|
13686
|
+
};
|
|
13687
|
+
export declare type RoadmapFeatureTogglePayload = Payload & {
|
|
13688
|
+
__typename?: 'RoadmapFeatureTogglePayload';
|
|
13689
|
+
success: Scalars['Boolean'];
|
|
13690
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13691
|
+
output?: Maybe<RoadmapFeatureToggleOutput>;
|
|
13692
|
+
};
|
|
13693
|
+
export declare type RoadmapFilterConfiguration = {
|
|
13694
|
+
__typename?: 'RoadmapFilterConfiguration';
|
|
13695
|
+
quickFilters?: Maybe<Array<RoadmapQuickFilter>>;
|
|
13696
|
+
};
|
|
13697
|
+
export declare type RoadmapHealthCheck = {
|
|
13698
|
+
__typename?: 'RoadmapHealthCheck';
|
|
13699
|
+
title: Scalars['String'];
|
|
13700
|
+
explanation: Scalars['String'];
|
|
13701
|
+
learnMore: RoadmapHealthCheckLink;
|
|
13702
|
+
resolution?: Maybe<RoadmapHealthCheckResolution>;
|
|
13703
|
+
};
|
|
13704
|
+
export declare type RoadmapHealthCheckLink = {
|
|
13705
|
+
__typename?: 'RoadmapHealthCheckLink';
|
|
13706
|
+
text: Scalars['String'];
|
|
13707
|
+
url: Scalars['String'];
|
|
13708
|
+
};
|
|
13709
|
+
export declare type RoadmapHealthCheckResolution = {
|
|
13710
|
+
__typename?: 'RoadmapHealthCheckResolution';
|
|
13711
|
+
label: Scalars['String'];
|
|
13712
|
+
actionId: Scalars['ID'];
|
|
13713
|
+
fallbackMessage: Scalars['String'];
|
|
13714
|
+
};
|
|
12267
13715
|
export declare type RoadmapItem = {
|
|
12268
13716
|
__typename?: 'RoadmapItem';
|
|
12269
13717
|
id: Scalars['ID'];
|
|
@@ -12336,6 +13784,11 @@ export declare type RoadmapMetadata = {
|
|
|
12336
13784
|
hasExceededIssueLimit: Scalars['Boolean'];
|
|
12337
13785
|
corruptedIssueCount: Scalars['Int'];
|
|
12338
13786
|
};
|
|
13787
|
+
export declare type RoadmapMutationErrorExtension = MutationErrorExtension & {
|
|
13788
|
+
__typename?: 'RoadmapMutationErrorExtension';
|
|
13789
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
13790
|
+
errorType?: Maybe<Scalars['String']>;
|
|
13791
|
+
};
|
|
12339
13792
|
export declare enum RoadmapPaletteColor {
|
|
12340
13793
|
Purple = "PURPLE",
|
|
12341
13794
|
Blue = "BLUE",
|
|
@@ -12398,6 +13851,12 @@ export declare type RoadmapProjectValidation = {
|
|
|
12398
13851
|
hasValidHierarchy: Scalars['Boolean'];
|
|
12399
13852
|
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
12400
13853
|
};
|
|
13854
|
+
export declare type RoadmapQuickFilter = {
|
|
13855
|
+
__typename?: 'RoadmapQuickFilter';
|
|
13856
|
+
id: Scalars['ID'];
|
|
13857
|
+
name: Scalars['String'];
|
|
13858
|
+
query: Scalars['String'];
|
|
13859
|
+
};
|
|
12401
13860
|
export declare type RoadmapSprint = {
|
|
12402
13861
|
__typename?: 'RoadmapSprint';
|
|
12403
13862
|
id: Scalars['ID'];
|
|
@@ -12422,6 +13881,47 @@ export declare enum RoadmapTimelineMode {
|
|
|
12422
13881
|
Months = "MONTHS",
|
|
12423
13882
|
Quarters = "QUARTERS"
|
|
12424
13883
|
}
|
|
13884
|
+
export declare type RoadmapToggleDependencyInput = {
|
|
13885
|
+
dependee: Scalars['ID'];
|
|
13886
|
+
dependency: Scalars['ID'];
|
|
13887
|
+
};
|
|
13888
|
+
export declare type RoadmapToggleDependencyPayload = Payload & {
|
|
13889
|
+
__typename?: 'RoadmapToggleDependencyPayload';
|
|
13890
|
+
success: Scalars['Boolean'];
|
|
13891
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13892
|
+
output?: Maybe<RoadmapToggleDependencyResponse>;
|
|
13893
|
+
};
|
|
13894
|
+
export declare type RoadmapToggleDependencyResponse = {
|
|
13895
|
+
__typename?: 'RoadmapToggleDependencyResponse';
|
|
13896
|
+
dependee: Scalars['ID'];
|
|
13897
|
+
dependency: Scalars['ID'];
|
|
13898
|
+
};
|
|
13899
|
+
export declare type RoadmapUpdateItemInput = {
|
|
13900
|
+
itemId: Scalars['ID'];
|
|
13901
|
+
projectId: Scalars['ID'];
|
|
13902
|
+
summary?: Maybe<Scalars['String']>;
|
|
13903
|
+
dueDate?: Maybe<Scalars['Date']>;
|
|
13904
|
+
startDate?: Maybe<Scalars['Date']>;
|
|
13905
|
+
color?: Maybe<RoadmapPaletteColor>;
|
|
13906
|
+
rank?: Maybe<RoadmapUpdateItemRank>;
|
|
13907
|
+
parentId?: Maybe<Scalars['ID']>;
|
|
13908
|
+
sprintId?: Maybe<Scalars['ID']>;
|
|
13909
|
+
clearFields?: Maybe<Array<Scalars['String']>>;
|
|
13910
|
+
};
|
|
13911
|
+
export declare type RoadmapUpdateItemPayload = Payload & {
|
|
13912
|
+
__typename?: 'RoadmapUpdateItemPayload';
|
|
13913
|
+
success: Scalars['Boolean'];
|
|
13914
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13915
|
+
output?: Maybe<RoadmapUpdateItemResponse>;
|
|
13916
|
+
};
|
|
13917
|
+
export declare type RoadmapUpdateItemRank = {
|
|
13918
|
+
beforeId?: Maybe<Scalars['ID']>;
|
|
13919
|
+
afterId?: Maybe<Scalars['ID']>;
|
|
13920
|
+
};
|
|
13921
|
+
export declare type RoadmapUpdateItemResponse = {
|
|
13922
|
+
__typename?: 'RoadmapUpdateItemResponse';
|
|
13923
|
+
item?: Maybe<RoadmapItem>;
|
|
13924
|
+
};
|
|
12425
13925
|
export declare type RoadmapUserConfiguration = {
|
|
12426
13926
|
__typename?: 'RoadmapUserConfiguration';
|
|
12427
13927
|
hasCompletedOnboarding: Scalars['Boolean'];
|
|
@@ -12432,6 +13932,7 @@ export declare type RoadmapUserConfiguration = {
|
|
|
12432
13932
|
timelineMode: RoadmapTimelineMode;
|
|
12433
13933
|
epicView: RoadmapEpicView;
|
|
12434
13934
|
levelOneView: RoadmapLevelOneView;
|
|
13935
|
+
levelOneViewSettings: RoadmapViewSettings;
|
|
12435
13936
|
};
|
|
12436
13937
|
export declare type RoadmapVersion = {
|
|
12437
13938
|
__typename?: 'RoadmapVersion';
|
|
@@ -12444,10 +13945,44 @@ export declare enum RoadmapVersionStatus {
|
|
|
12444
13945
|
Unreleased = "UNRELEASED",
|
|
12445
13946
|
Archived = "ARCHIVED"
|
|
12446
13947
|
}
|
|
13948
|
+
export declare type RoadmapViewSettings = {
|
|
13949
|
+
__typename?: 'RoadmapViewSettings';
|
|
13950
|
+
period: Scalars['Int'];
|
|
13951
|
+
showCompleted: Scalars['Boolean'];
|
|
13952
|
+
};
|
|
13953
|
+
export declare type RoadmapsMutation = {
|
|
13954
|
+
__typename?: 'RoadmapsMutation';
|
|
13955
|
+
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
13956
|
+
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
13957
|
+
updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
|
|
13958
|
+
addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13959
|
+
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13960
|
+
};
|
|
13961
|
+
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13962
|
+
input: RoadmapFeatureToggleInput;
|
|
13963
|
+
};
|
|
13964
|
+
export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
13965
|
+
sourceARI: Scalars['ID'];
|
|
13966
|
+
input: RoadmapAddItemInput;
|
|
13967
|
+
};
|
|
13968
|
+
export declare type RoadmapsMutationUpdateRoadmapItemArgs = {
|
|
13969
|
+
sourceARI: Scalars['ID'];
|
|
13970
|
+
input: RoadmapUpdateItemInput;
|
|
13971
|
+
};
|
|
13972
|
+
export declare type RoadmapsMutationAddRoadmapDependencyArgs = {
|
|
13973
|
+
sourceARI: Scalars['ID'];
|
|
13974
|
+
input: RoadmapToggleDependencyInput;
|
|
13975
|
+
};
|
|
13976
|
+
export declare type RoadmapsMutationRemoveRoadmapDependencyArgs = {
|
|
13977
|
+
sourceARI: Scalars['ID'];
|
|
13978
|
+
input: RoadmapToggleDependencyInput;
|
|
13979
|
+
};
|
|
12447
13980
|
export declare type RoadmapsQuery = {
|
|
12448
13981
|
__typename?: 'RoadmapsQuery';
|
|
12449
13982
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
12450
13983
|
roadmapItemByIds?: Maybe<Array<Maybe<RoadmapItem>>>;
|
|
13984
|
+
roadmapFilterItems: Array<Scalars['ID']>;
|
|
13985
|
+
roadmapFilterConfiguration?: Maybe<RoadmapFilterConfiguration>;
|
|
12451
13986
|
};
|
|
12452
13987
|
export declare type RoadmapsQueryRoadmapForSourceArgs = {
|
|
12453
13988
|
sourceARI: Scalars['ID'];
|
|
@@ -12457,6 +13992,13 @@ export declare type RoadmapsQueryRoadmapItemByIdsArgs = {
|
|
|
12457
13992
|
sourceARI: Scalars['ID'];
|
|
12458
13993
|
ids: Array<Scalars['ID']>;
|
|
12459
13994
|
};
|
|
13995
|
+
export declare type RoadmapsQueryRoadmapFilterItemsArgs = {
|
|
13996
|
+
sourceARI: Scalars['ID'];
|
|
13997
|
+
quickFilterIds: Array<Scalars['ID']>;
|
|
13998
|
+
};
|
|
13999
|
+
export declare type RoadmapsQueryRoadmapFilterConfigurationArgs = {
|
|
14000
|
+
sourceARI: Scalars['ID'];
|
|
14001
|
+
};
|
|
12460
14002
|
export declare type ScanPolarisProjectInput = {
|
|
12461
14003
|
project: Scalars['ID'];
|
|
12462
14004
|
refresh?: Maybe<Scalars['Boolean']>;
|
|
@@ -12474,21 +14016,59 @@ export declare enum Scope {
|
|
|
12474
14016
|
WriteCompassScorecard = "WRITE_COMPASS_SCORECARD",
|
|
12475
14017
|
ReadCompassEvent = "READ_COMPASS_EVENT",
|
|
12476
14018
|
WriteCompassEvent = "WRITE_COMPASS_EVENT",
|
|
14019
|
+
ReadCompassMetric = "READ_COMPASS_METRIC",
|
|
14020
|
+
WriteCompassMetric = "WRITE_COMPASS_METRIC",
|
|
12477
14021
|
ConfluenceAtlassianExternal = "CONFLUENCE_ATLASSIAN_EXTERNAL",
|
|
12478
|
-
|
|
12479
|
-
|
|
12480
|
-
|
|
12481
|
-
|
|
14022
|
+
ReadConfluenceContentAnalytics = "READ_CONFLUENCE_CONTENT_ANALYTICS",
|
|
14023
|
+
ReadConfluenceAuditLog = "READ_CONFLUENCE_AUDIT_LOG",
|
|
14024
|
+
WriteConfluenceAuditLog = "WRITE_CONFLUENCE_AUDIT_LOG",
|
|
14025
|
+
ReadConfluenceConfiguration = "READ_CONFLUENCE_CONFIGURATION",
|
|
14026
|
+
WriteConfluenceConfiguration = "WRITE_CONFLUENCE_CONFIGURATION",
|
|
14027
|
+
ReadConfluencePage = "READ_CONFLUENCE_PAGE",
|
|
14028
|
+
WriteConfluencePage = "WRITE_CONFLUENCE_PAGE",
|
|
14029
|
+
DeleteConfluencePage = "DELETE_CONFLUENCE_PAGE",
|
|
14030
|
+
ReadConfluenceBlogpost = "READ_CONFLUENCE_BLOGPOST",
|
|
14031
|
+
WriteConfluenceBlogpost = "WRITE_CONFLUENCE_BLOGPOST",
|
|
14032
|
+
DeleteConfluenceBlogpost = "DELETE_CONFLUENCE_BLOGPOST",
|
|
14033
|
+
ReadConfluenceCustomContent = "READ_CONFLUENCE_CUSTOM_CONTENT",
|
|
14034
|
+
WriteConfluenceCustomContent = "WRITE_CONFLUENCE_CUSTOM_CONTENT",
|
|
14035
|
+
DeleteConfluenceCustomContent = "DELETE_CONFLUENCE_CUSTOM_CONTENT",
|
|
14036
|
+
ReadConfluenceAttachment = "READ_CONFLUENCE_ATTACHMENT",
|
|
14037
|
+
WriteConfluenceAttachment = "WRITE_CONFLUENCE_ATTACHMENT",
|
|
14038
|
+
DeleteConfluenceAttachment = "DELETE_CONFLUENCE_ATTACHMENT",
|
|
14039
|
+
ReadConfluenceComment = "READ_CONFLUENCE_COMMENT",
|
|
14040
|
+
WriteConfluenceComment = "WRITE_CONFLUENCE_COMMENT",
|
|
14041
|
+
DeleteConfluenceComment = "DELETE_CONFLUENCE_COMMENT",
|
|
14042
|
+
ReadConfluenceTemplate = "READ_CONFLUENCE_TEMPLATE",
|
|
14043
|
+
WriteConfluenceTemplate = "WRITE_CONFLUENCE_TEMPLATE",
|
|
14044
|
+
ReadConfluenceLabel = "READ_CONFLUENCE_LABEL",
|
|
14045
|
+
WriteConfluenceLabel = "WRITE_CONFLUENCE_LABEL",
|
|
14046
|
+
ReadConfluenceContentPermission = "READ_CONFLUENCE_CONTENT_PERMISSION",
|
|
14047
|
+
ReadConfluenceContentProperty = "READ_CONFLUENCE_CONTENT_PROPERTY",
|
|
14048
|
+
WriteConfluenceContentProperty = "WRITE_CONFLUENCE_CONTENT_PROPERTY",
|
|
14049
|
+
ReadConfluenceContentRestriction = "READ_CONFLUENCE_CONTENT_RESTRICTION",
|
|
14050
|
+
WriteConfluenceContentRestriction = "WRITE_CONFLUENCE_CONTENT_RESTRICTION",
|
|
14051
|
+
ReadConfluenceContentMetadata = "READ_CONFLUENCE_CONTENT_METADATA",
|
|
14052
|
+
ReadConfluenceWatcher = "READ_CONFLUENCE_WATCHER",
|
|
14053
|
+
WriteConfluenceWatcher = "WRITE_CONFLUENCE_WATCHER",
|
|
14054
|
+
ReadConfluenceGroup = "READ_CONFLUENCE_GROUP",
|
|
14055
|
+
WriteConfluenceGroup = "WRITE_CONFLUENCE_GROUP",
|
|
14056
|
+
ReadConfluenceInlineTask = "READ_CONFLUENCE_INLINE_TASK",
|
|
14057
|
+
WriteConfluenceInlineTask = "WRITE_CONFLUENCE_INLINE_TASK",
|
|
14058
|
+
ReadConfluenceRelation = "READ_CONFLUENCE_RELATION",
|
|
14059
|
+
WriteConfluenceRelation = "WRITE_CONFLUENCE_RELATION",
|
|
14060
|
+
ReadConfluenceSpace = "READ_CONFLUENCE_SPACE",
|
|
12482
14061
|
WriteConfluenceSpace = "WRITE_CONFLUENCE_SPACE",
|
|
12483
|
-
|
|
12484
|
-
|
|
12485
|
-
|
|
12486
|
-
|
|
12487
|
-
|
|
12488
|
-
|
|
12489
|
-
|
|
14062
|
+
DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
|
|
14063
|
+
ReadConfluenceSpacePermission = "READ_CONFLUENCE_SPACE_PERMISSION",
|
|
14064
|
+
WriteConfluenceSpacePermission = "WRITE_CONFLUENCE_SPACE_PERMISSION",
|
|
14065
|
+
ReadConfluenceSpaceProperty = "READ_CONFLUENCE_SPACE_PROPERTY",
|
|
14066
|
+
WriteConfluenceSpaceProperty = "WRITE_CONFLUENCE_SPACE_PROPERTY",
|
|
14067
|
+
ReadConfluenceUserProperty = "READ_CONFLUENCE_USER_PROPERTY",
|
|
14068
|
+
WriteConfluenceUserProperty = "WRITE_CONFLUENCE_USER_PROPERTY",
|
|
14069
|
+
ReadConfluenceSpaceSetting = "READ_CONFLUENCE_SPACE_SETTING",
|
|
14070
|
+
WriteConfluenceSpaceSetting = "WRITE_CONFLUENCE_SPACE_SETTING",
|
|
12490
14071
|
ReadConfluenceUser = "READ_CONFLUENCE_USER",
|
|
12491
|
-
ReadConfluenceContentPermission = "READ_CONFLUENCE_CONTENT_PERMISSION",
|
|
12492
14072
|
ManageApp = "MANAGE_APP",
|
|
12493
14073
|
StorageApp = "STORAGE_APP",
|
|
12494
14074
|
ReadJiraUser = "READ_JIRA_USER",
|
|
@@ -12633,6 +14213,10 @@ export declare type SetAppStoredEntityPayload = Payload & {
|
|
|
12633
14213
|
success: Scalars['Boolean'];
|
|
12634
14214
|
errors?: Maybe<Array<MutationError>>;
|
|
12635
14215
|
};
|
|
14216
|
+
export declare type SetBoardEstimationTypeInput = {
|
|
14217
|
+
featureId: Scalars['String'];
|
|
14218
|
+
estimationType: Scalars['String'];
|
|
14219
|
+
};
|
|
12636
14220
|
export declare type SetColumnLimitInput = {
|
|
12637
14221
|
boardId: Scalars['ID'];
|
|
12638
14222
|
columnId: Scalars['ID'];
|
|
@@ -12640,7 +14224,7 @@ export declare type SetColumnLimitInput = {
|
|
|
12640
14224
|
};
|
|
12641
14225
|
export declare type SetColumnLimitOutput = MutationResponse & {
|
|
12642
14226
|
__typename?: 'SetColumnLimitOutput';
|
|
12643
|
-
columns?: Maybe<Array<Column
|
|
14227
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
12644
14228
|
statusCode: Scalars['Int'];
|
|
12645
14229
|
success: Scalars['Boolean'];
|
|
12646
14230
|
message: Scalars['String'];
|
|
@@ -12725,7 +14309,7 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
12725
14309
|
};
|
|
12726
14310
|
export declare type ShepherdAlert = {
|
|
12727
14311
|
__typename?: 'ShepherdAlert';
|
|
12728
|
-
|
|
14312
|
+
assignee?: Maybe<ShepherdUser>;
|
|
12729
14313
|
cloudId?: Maybe<Scalars['ID']>;
|
|
12730
14314
|
createdOn: Scalars['DateTime'];
|
|
12731
14315
|
id: Scalars['ID'];
|
|
@@ -12762,6 +14346,7 @@ export declare type ShepherdAppInfo = {
|
|
|
12762
14346
|
loginUrl: Scalars['String'];
|
|
12763
14347
|
};
|
|
12764
14348
|
export declare type ShepherdCreateAlertInput = {
|
|
14349
|
+
assignee?: Maybe<Scalars['ID']>;
|
|
12765
14350
|
cloudId?: Maybe<Scalars['ID']>;
|
|
12766
14351
|
orgId: Scalars['ID'];
|
|
12767
14352
|
status?: Maybe<ShepherdAlertStatus>;
|
|
@@ -12773,6 +14358,10 @@ export declare type ShepherdCreateAlertPayload = Payload & {
|
|
|
12773
14358
|
node?: Maybe<ShepherdAlert>;
|
|
12774
14359
|
success: Scalars['Boolean'];
|
|
12775
14360
|
};
|
|
14361
|
+
export declare type ShepherdCreateEmailInput = {
|
|
14362
|
+
email?: Maybe<Scalars['String']>;
|
|
14363
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14364
|
+
};
|
|
12776
14365
|
export declare type ShepherdCreateOrganizationInput = {
|
|
12777
14366
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
12778
14367
|
id: Scalars['ID'];
|
|
@@ -12783,6 +14372,40 @@ export declare type ShepherdCreateOrganizationPayload = Payload & {
|
|
|
12783
14372
|
node?: Maybe<ShepherdOrganization>;
|
|
12784
14373
|
success: Scalars['Boolean'];
|
|
12785
14374
|
};
|
|
14375
|
+
export declare type ShepherdCreateSubscriptionInput = {
|
|
14376
|
+
email?: Maybe<ShepherdCreateEmailInput>;
|
|
14377
|
+
orgId: Scalars['ID'];
|
|
14378
|
+
webhook?: Maybe<ShepherdCreateWebhookInput>;
|
|
14379
|
+
};
|
|
14380
|
+
export declare type ShepherdCreateSubscriptionPayload = Payload & {
|
|
14381
|
+
__typename?: 'ShepherdCreateSubscriptionPayload';
|
|
14382
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14383
|
+
node?: Maybe<ShepherdWebhookSubscription>;
|
|
14384
|
+
success: Scalars['Boolean'];
|
|
14385
|
+
};
|
|
14386
|
+
export declare type ShepherdCreateWebhookInput = {
|
|
14387
|
+
authToken?: Maybe<Scalars['String']>;
|
|
14388
|
+
callbackURL: Scalars['URL'];
|
|
14389
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14390
|
+
};
|
|
14391
|
+
export declare type ShepherdEmailConnection = {
|
|
14392
|
+
__typename?: 'ShepherdEmailConnection';
|
|
14393
|
+
edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
|
|
14394
|
+
};
|
|
14395
|
+
export declare type ShepherdEmailEdge = {
|
|
14396
|
+
__typename?: 'ShepherdEmailEdge';
|
|
14397
|
+
node?: Maybe<ShepherdEmailSubscription>;
|
|
14398
|
+
};
|
|
14399
|
+
export declare type ShepherdEmailSubscription = ShepherdSubscription & {
|
|
14400
|
+
__typename?: 'ShepherdEmailSubscription';
|
|
14401
|
+
createdBy: Scalars['String'];
|
|
14402
|
+
createdOn: Scalars['DateTime'];
|
|
14403
|
+
email: Scalars['String'];
|
|
14404
|
+
id: Scalars['ID'];
|
|
14405
|
+
status: ShepherdSubscriptionStatus;
|
|
14406
|
+
updatedBy?: Maybe<Scalars['String']>;
|
|
14407
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14408
|
+
};
|
|
12786
14409
|
export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
|
|
12787
14410
|
__typename?: 'ShepherdGenericQueryErrorExtension';
|
|
12788
14411
|
errorType?: Maybe<Scalars['String']>;
|
|
@@ -12793,8 +14416,10 @@ export declare type ShepherdMutation = {
|
|
|
12793
14416
|
__typename?: 'ShepherdMutation';
|
|
12794
14417
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
12795
14418
|
createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
|
|
14419
|
+
createSubscription?: Maybe<ShepherdCreateSubscriptionPayload>;
|
|
12796
14420
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
12797
14421
|
updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
|
|
14422
|
+
updateSubscription?: Maybe<ShepherdUpdateSubscriptionPayload>;
|
|
12798
14423
|
};
|
|
12799
14424
|
export declare type ShepherdMutationCreateAlertArgs = {
|
|
12800
14425
|
input: ShepherdCreateAlertInput;
|
|
@@ -12802,6 +14427,9 @@ export declare type ShepherdMutationCreateAlertArgs = {
|
|
|
12802
14427
|
export declare type ShepherdMutationCreateOrganizationArgs = {
|
|
12803
14428
|
input: ShepherdCreateOrganizationInput;
|
|
12804
14429
|
};
|
|
14430
|
+
export declare type ShepherdMutationCreateSubscriptionArgs = {
|
|
14431
|
+
input: ShepherdCreateSubscriptionInput;
|
|
14432
|
+
};
|
|
12805
14433
|
export declare type ShepherdMutationUpdateAlertArgs = {
|
|
12806
14434
|
id: Scalars['ID'];
|
|
12807
14435
|
input: ShepherdUpdateAlertInput;
|
|
@@ -12810,19 +14438,25 @@ export declare type ShepherdMutationUpdateOrganizationArgs = {
|
|
|
12810
14438
|
id: Scalars['ID'];
|
|
12811
14439
|
input: ShepherdUpdateOrganizationInput;
|
|
12812
14440
|
};
|
|
14441
|
+
export declare type ShepherdMutationUpdateSubscriptionArgs = {
|
|
14442
|
+
id: Scalars['ID'];
|
|
14443
|
+
input: ShepherdUpdateSubscriptionInput;
|
|
14444
|
+
};
|
|
12813
14445
|
export declare type ShepherdOrganization = {
|
|
12814
14446
|
__typename?: 'ShepherdOrganization';
|
|
12815
14447
|
createdOn: Scalars['DateTime'];
|
|
12816
14448
|
enabled: Scalars['Boolean'];
|
|
12817
14449
|
id: Scalars['ID'];
|
|
14450
|
+
subscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
12818
14451
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
12819
14452
|
};
|
|
14453
|
+
export declare type ShepherdOrganizationResult = QueryError | ShepherdOrganization;
|
|
12820
14454
|
export declare type ShepherdQuery = {
|
|
12821
14455
|
__typename?: 'ShepherdQuery';
|
|
12822
14456
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
12823
14457
|
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
12824
14458
|
shepherdAppInfo: ShepherdAppInfo;
|
|
12825
|
-
shepherdOrganization?: Maybe<
|
|
14459
|
+
shepherdOrganization?: Maybe<ShepherdOrganizationResult>;
|
|
12826
14460
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
12827
14461
|
};
|
|
12828
14462
|
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
@@ -12838,7 +14472,21 @@ export declare enum ShepherdQueryErrorType {
|
|
|
12838
14472
|
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
12839
14473
|
Unauthorized = "UNAUTHORIZED"
|
|
12840
14474
|
}
|
|
14475
|
+
export declare type ShepherdSubscription = {
|
|
14476
|
+
createdBy: Scalars['String'];
|
|
14477
|
+
createdOn: Scalars['DateTime'];
|
|
14478
|
+
id: Scalars['ID'];
|
|
14479
|
+
status: ShepherdSubscriptionStatus;
|
|
14480
|
+
updatedBy?: Maybe<Scalars['String']>;
|
|
14481
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14482
|
+
};
|
|
14483
|
+
export declare enum ShepherdSubscriptionStatus {
|
|
14484
|
+
Active = "ACTIVE",
|
|
14485
|
+
Inactive = "INACTIVE"
|
|
14486
|
+
}
|
|
14487
|
+
export declare type ShepherdSubscriptionsResult = ShepherdEmailConnection | ShepherdWebhookConnection;
|
|
12841
14488
|
export declare type ShepherdUpdateAlertInput = {
|
|
14489
|
+
assignee?: Maybe<Scalars['ID']>;
|
|
12842
14490
|
status?: Maybe<ShepherdAlertStatus>;
|
|
12843
14491
|
};
|
|
12844
14492
|
export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
@@ -12847,6 +14495,10 @@ export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
|
12847
14495
|
node?: Maybe<ShepherdAlert>;
|
|
12848
14496
|
success: Scalars['Boolean'];
|
|
12849
14497
|
};
|
|
14498
|
+
export declare type ShepherdUpdateEmailInput = {
|
|
14499
|
+
email?: Maybe<ShepherdCreateEmailInput>;
|
|
14500
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14501
|
+
};
|
|
12850
14502
|
export declare type ShepherdUpdateOrganizationInput = {
|
|
12851
14503
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
12852
14504
|
};
|
|
@@ -12856,10 +14508,44 @@ export declare type ShepherdUpdateOrganizationPayload = Payload & {
|
|
|
12856
14508
|
node?: Maybe<ShepherdOrganization>;
|
|
12857
14509
|
success: Scalars['Boolean'];
|
|
12858
14510
|
};
|
|
14511
|
+
export declare type ShepherdUpdateSubscriptionInput = {
|
|
14512
|
+
email?: Maybe<ShepherdUpdateEmailInput>;
|
|
14513
|
+
orgId: Scalars['ID'];
|
|
14514
|
+
webhook?: Maybe<ShepherdUpdateWebhookInput>;
|
|
14515
|
+
};
|
|
14516
|
+
export declare type ShepherdUpdateSubscriptionPayload = Payload & {
|
|
14517
|
+
__typename?: 'ShepherdUpdateSubscriptionPayload';
|
|
14518
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14519
|
+
node?: Maybe<ShepherdWebhookSubscription>;
|
|
14520
|
+
success: Scalars['Boolean'];
|
|
14521
|
+
};
|
|
14522
|
+
export declare type ShepherdUpdateWebhookInput = {
|
|
14523
|
+
callbackURL?: Maybe<Scalars['URL']>;
|
|
14524
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14525
|
+
};
|
|
12859
14526
|
export declare type ShepherdUser = {
|
|
12860
14527
|
__typename?: 'ShepherdUser';
|
|
12861
14528
|
user?: Maybe<User>;
|
|
12862
14529
|
};
|
|
14530
|
+
export declare type ShepherdWebhookConnection = {
|
|
14531
|
+
__typename?: 'ShepherdWebhookConnection';
|
|
14532
|
+
edges?: Maybe<Array<Maybe<ShepherdWebhookEdge>>>;
|
|
14533
|
+
};
|
|
14534
|
+
export declare type ShepherdWebhookEdge = {
|
|
14535
|
+
__typename?: 'ShepherdWebhookEdge';
|
|
14536
|
+
node?: Maybe<ShepherdWebhookSubscription>;
|
|
14537
|
+
};
|
|
14538
|
+
export declare type ShepherdWebhookSubscription = ShepherdSubscription & {
|
|
14539
|
+
__typename?: 'ShepherdWebhookSubscription';
|
|
14540
|
+
authToken: Scalars['String'];
|
|
14541
|
+
callbackURL: Scalars['String'];
|
|
14542
|
+
createdBy: Scalars['String'];
|
|
14543
|
+
createdOn: Scalars['DateTime'];
|
|
14544
|
+
id: Scalars['ID'];
|
|
14545
|
+
status: ShepherdSubscriptionStatus;
|
|
14546
|
+
updatedBy?: Maybe<Scalars['String']>;
|
|
14547
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14548
|
+
};
|
|
12863
14549
|
export declare type SoftwareBoard = {
|
|
12864
14550
|
__typename?: 'SoftwareBoard';
|
|
12865
14551
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -13067,7 +14753,22 @@ export declare type StartSprintInput = {
|
|
|
13067
14753
|
startDate: Scalars['String'];
|
|
13068
14754
|
endDate: Scalars['String'];
|
|
13069
14755
|
};
|
|
13070
|
-
export declare type
|
|
14756
|
+
export declare type Storage = {
|
|
14757
|
+
__typename?: 'Storage';
|
|
14758
|
+
hosted?: Maybe<HostedStorage>;
|
|
14759
|
+
remotes?: Maybe<Array<Remote>>;
|
|
14760
|
+
};
|
|
14761
|
+
export declare type Subscription = {
|
|
14762
|
+
__typename?: 'Subscription';
|
|
14763
|
+
onJiraIssueCreatedForUser?: Maybe<OnJiraIssueCreatedForUserResponseType>;
|
|
14764
|
+
};
|
|
14765
|
+
export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
14766
|
+
cloudId: Scalars['ID'];
|
|
14767
|
+
accountId: Scalars['ID'];
|
|
14768
|
+
projectType?: JiraProjectType;
|
|
14769
|
+
filter?: JiraProjectFilterInput;
|
|
14770
|
+
};
|
|
14771
|
+
export declare type SupportRequest = {
|
|
13071
14772
|
__typename?: 'SupportRequest';
|
|
13072
14773
|
id: Scalars['ID'];
|
|
13073
14774
|
summary?: Maybe<Scalars['String']>;
|
|
@@ -13079,11 +14780,16 @@ export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
|
13079
14780
|
reporter: SupportRequestUser;
|
|
13080
14781
|
participants: Array<SupportRequestUser>;
|
|
13081
14782
|
fields: Array<SupportRequestField>;
|
|
14783
|
+
defaultFields: Array<SupportRequestField>;
|
|
14784
|
+
experienceFields?: Maybe<Array<SupportRequestField>>;
|
|
13082
14785
|
comments?: Maybe<SupportRequestComments>;
|
|
13083
14786
|
statuses: SupportRequestStatuses;
|
|
13084
14787
|
transitions?: Maybe<SupportRequestTransitions>;
|
|
13085
14788
|
targetScreen: Scalars['String'];
|
|
14789
|
+
tracAttachmentComponentsEnabled?: Maybe<Scalars['Boolean']>;
|
|
13086
14790
|
lastComment: SupportRequestComments;
|
|
14791
|
+
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
14792
|
+
sourceId?: Maybe<Scalars['String']>;
|
|
13087
14793
|
};
|
|
13088
14794
|
export declare type SupportRequestCommentsArgs = {
|
|
13089
14795
|
offset?: Maybe<Scalars['Int']>;
|
|
@@ -13110,7 +14816,8 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
13110
14816
|
addComment?: Maybe<SupportRequestComment>;
|
|
13111
14817
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
13112
14818
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
13113
|
-
|
|
14819
|
+
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
14820
|
+
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
13114
14821
|
};
|
|
13115
14822
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
13116
14823
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -13119,7 +14826,10 @@ export declare type SupportRequestCatalogMutationApiStatusTransitionArgs = {
|
|
|
13119
14826
|
input?: Maybe<SupportRequestTransitionInput>;
|
|
13120
14827
|
};
|
|
13121
14828
|
export declare type SupportRequestCatalogMutationApiRemoveRequestParticipantsArgs = {
|
|
13122
|
-
input
|
|
14829
|
+
input: SupportRequestParticipantsInput;
|
|
14830
|
+
};
|
|
14831
|
+
export declare type SupportRequestCatalogMutationApiAddRequestParticipantsArgs = {
|
|
14832
|
+
input: SupportRequestParticipantsInput;
|
|
13123
14833
|
};
|
|
13124
14834
|
export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
|
|
13125
14835
|
emails: Array<Scalars['String']>;
|
|
@@ -13131,6 +14841,7 @@ export declare type SupportRequestCatalogQueryApi = {
|
|
|
13131
14841
|
__typename?: 'SupportRequestCatalogQueryApi';
|
|
13132
14842
|
me?: Maybe<SupportRequestPage>;
|
|
13133
14843
|
supportRequest?: Maybe<SupportRequest>;
|
|
14844
|
+
users?: Maybe<SupportRequestUsers>;
|
|
13134
14845
|
};
|
|
13135
14846
|
export declare type SupportRequestCatalogQueryApiSupportRequestArgs = {
|
|
13136
14847
|
key: Scalars['ID'];
|
|
@@ -13150,16 +14861,6 @@ export declare type SupportRequestComments = {
|
|
|
13150
14861
|
lastPage: Scalars['Boolean'];
|
|
13151
14862
|
values: Array<SupportRequestComment>;
|
|
13152
14863
|
};
|
|
13153
|
-
export declare type SupportRequestCommonRequest = {
|
|
13154
|
-
id: Scalars['ID'];
|
|
13155
|
-
summary?: Maybe<Scalars['String']>;
|
|
13156
|
-
description: Scalars['String'];
|
|
13157
|
-
requestTypeName: Scalars['String'];
|
|
13158
|
-
createdDate: SupportRequestDisplayableDateTime;
|
|
13159
|
-
status: SupportRequestStatus;
|
|
13160
|
-
reporter: SupportRequestUser;
|
|
13161
|
-
participants: Array<SupportRequestUser>;
|
|
13162
|
-
};
|
|
13163
14864
|
export declare type SupportRequestContactRelation = {
|
|
13164
14865
|
__typename?: 'SupportRequestContactRelation';
|
|
13165
14866
|
openRequest?: Maybe<SupportRequestTicket>;
|
|
@@ -13181,7 +14882,7 @@ export declare type SupportRequestFieldValue = {
|
|
|
13181
14882
|
__typename?: 'SupportRequestFieldValue';
|
|
13182
14883
|
value: Scalars['String'];
|
|
13183
14884
|
};
|
|
13184
|
-
export declare type SupportRequestHierarchyRequest =
|
|
14885
|
+
export declare type SupportRequestHierarchyRequest = {
|
|
13185
14886
|
__typename?: 'SupportRequestHierarchyRequest';
|
|
13186
14887
|
id: Scalars['ID'];
|
|
13187
14888
|
summary?: Maybe<Scalars['String']>;
|
|
@@ -13314,6 +15015,19 @@ export declare type SupportRequestUser = {
|
|
|
13314
15015
|
username?: Maybe<Scalars['String']>;
|
|
13315
15016
|
email?: Maybe<Scalars['String']>;
|
|
13316
15017
|
displayName?: Maybe<Scalars['String']>;
|
|
15018
|
+
userType?: Maybe<SupportRequestUserType>;
|
|
15019
|
+
};
|
|
15020
|
+
export declare enum SupportRequestUserType {
|
|
15021
|
+
Customer = "CUSTOMER",
|
|
15022
|
+
Partner = "PARTNER"
|
|
15023
|
+
}
|
|
15024
|
+
export declare type SupportRequestUsers = {
|
|
15025
|
+
__typename?: 'SupportRequestUsers';
|
|
15026
|
+
searchUsers: Array<SupportRequestUser>;
|
|
15027
|
+
};
|
|
15028
|
+
export declare type SupportRequestUsersSearchUsersArgs = {
|
|
15029
|
+
query?: Maybe<Scalars['String']>;
|
|
15030
|
+
requestKey?: Maybe<Scalars['String']>;
|
|
13317
15031
|
};
|
|
13318
15032
|
export declare type SupportRequests = {
|
|
13319
15033
|
__typename?: 'SupportRequests';
|
|
@@ -13394,15 +15108,67 @@ export declare type Testing = {
|
|
|
13394
15108
|
__typename?: 'Testing';
|
|
13395
15109
|
echo?: Maybe<Scalars['String']>;
|
|
13396
15110
|
uuid?: Maybe<Scalars['String']>;
|
|
15111
|
+
error?: Maybe<Scalars['String']>;
|
|
15112
|
+
throwException?: Maybe<Scalars['String']>;
|
|
13397
15113
|
movie?: Maybe<TestingMovie>;
|
|
13398
15114
|
movies?: Maybe<Array<Maybe<TestingMovie>>>;
|
|
15115
|
+
performance?: Maybe<TestingPerformance>;
|
|
13399
15116
|
};
|
|
13400
15117
|
export declare type TestingEchoArgs = {
|
|
13401
15118
|
message?: Maybe<Scalars['String']>;
|
|
13402
15119
|
};
|
|
15120
|
+
export declare type TestingErrorArgs = {
|
|
15121
|
+
message?: Maybe<Scalars['String']>;
|
|
15122
|
+
};
|
|
15123
|
+
export declare type TestingThrowExceptionArgs = {
|
|
15124
|
+
message?: Maybe<Scalars['String']>;
|
|
15125
|
+
};
|
|
13403
15126
|
export declare type TestingMovieArgs = {
|
|
13404
15127
|
id: Scalars['ID'];
|
|
13405
15128
|
};
|
|
15129
|
+
export declare type TestingActivityConnection = {
|
|
15130
|
+
__typename?: 'TestingActivityConnection';
|
|
15131
|
+
nodes: Array<Maybe<TestingActivityItem>>;
|
|
15132
|
+
};
|
|
15133
|
+
export declare type TestingActivityContributor = {
|
|
15134
|
+
__typename?: 'TestingActivityContributor';
|
|
15135
|
+
profile?: Maybe<TestingActivityUser>;
|
|
15136
|
+
};
|
|
15137
|
+
export declare enum TestingActivityEventType {
|
|
15138
|
+
Assigned = "ASSIGNED",
|
|
15139
|
+
Unassigned = "UNASSIGNED",
|
|
15140
|
+
Viewed = "VIEWED",
|
|
15141
|
+
Commented = "COMMENTED",
|
|
15142
|
+
Updated = "UPDATED",
|
|
15143
|
+
Created = "CREATED",
|
|
15144
|
+
Liked = "LIKED",
|
|
15145
|
+
Transitioned = "TRANSITIONED",
|
|
15146
|
+
Published = "PUBLISHED",
|
|
15147
|
+
Edited = "EDITED"
|
|
15148
|
+
}
|
|
15149
|
+
export declare type TestingActivityItem = Node & {
|
|
15150
|
+
__typename?: 'TestingActivityItem';
|
|
15151
|
+
id: Scalars['ID'];
|
|
15152
|
+
timestamp?: Maybe<Scalars['String']>;
|
|
15153
|
+
eventType?: Maybe<TestingActivityEventType>;
|
|
15154
|
+
object?: Maybe<TestingActivityObject>;
|
|
15155
|
+
containers?: Maybe<Array<Maybe<TestingActivityObject>>>;
|
|
15156
|
+
contributors?: Maybe<Array<Maybe<TestingActivityContributor>>>;
|
|
15157
|
+
};
|
|
15158
|
+
export declare type TestingActivityObject = Node & {
|
|
15159
|
+
__typename?: 'TestingActivityObject';
|
|
15160
|
+
id: Scalars['ID'];
|
|
15161
|
+
name?: Maybe<Scalars['String']>;
|
|
15162
|
+
cloudID?: Maybe<Scalars['String']>;
|
|
15163
|
+
url?: Maybe<Scalars['String']>;
|
|
15164
|
+
iconURL?: Maybe<Scalars['String']>;
|
|
15165
|
+
};
|
|
15166
|
+
export declare type TestingActivityUser = {
|
|
15167
|
+
__typename?: 'TestingActivityUser';
|
|
15168
|
+
accountId: Scalars['ID'];
|
|
15169
|
+
name?: Maybe<Scalars['String']>;
|
|
15170
|
+
picture?: Maybe<Scalars['String']>;
|
|
15171
|
+
};
|
|
13406
15172
|
export declare type TestingCharacter = {
|
|
13407
15173
|
__typename?: 'TestingCharacter';
|
|
13408
15174
|
id: Scalars['ID'];
|
|
@@ -13414,6 +15180,27 @@ export declare type TestingMovie = {
|
|
|
13414
15180
|
renamedName?: Maybe<Scalars['String']>;
|
|
13415
15181
|
characters?: Maybe<Array<Maybe<TestingCharacter>>>;
|
|
13416
15182
|
};
|
|
15183
|
+
export declare type TestingMyActivity = {
|
|
15184
|
+
__typename?: 'TestingMyActivity';
|
|
15185
|
+
workedOn: TestingActivityConnection;
|
|
15186
|
+
viewed: TestingActivityConnection;
|
|
15187
|
+
};
|
|
15188
|
+
export declare type TestingMyActivityWorkedOnArgs = {
|
|
15189
|
+
howMany?: Maybe<Scalars['Int']>;
|
|
15190
|
+
howManyContainers?: Maybe<Scalars['Int']>;
|
|
15191
|
+
howManyContributors?: Maybe<Scalars['Int']>;
|
|
15192
|
+
inducedDelay?: Maybe<Scalars['Int']>;
|
|
15193
|
+
};
|
|
15194
|
+
export declare type TestingMyActivityViewedArgs = {
|
|
15195
|
+
howMany?: Maybe<Scalars['Int']>;
|
|
15196
|
+
howManyContainers?: Maybe<Scalars['Int']>;
|
|
15197
|
+
howManyContributors?: Maybe<Scalars['Int']>;
|
|
15198
|
+
inducedDelay?: Maybe<Scalars['Int']>;
|
|
15199
|
+
};
|
|
15200
|
+
export declare type TestingPerformance = {
|
|
15201
|
+
__typename?: 'TestingPerformance';
|
|
15202
|
+
myActivities: TestingMyActivity;
|
|
15203
|
+
};
|
|
13417
15204
|
export declare type ThirdPartyRepositoryInput = {
|
|
13418
15205
|
id: Scalars['ID'];
|
|
13419
15206
|
webUrl?: Maybe<Scalars['String']>;
|
|
@@ -13426,6 +15213,18 @@ export declare type TimeSeriesPoint = {
|
|
|
13426
15213
|
x: Scalars['DateTime'];
|
|
13427
15214
|
y: Scalars['Int'];
|
|
13428
15215
|
};
|
|
15216
|
+
export declare type ToggleBoardFeatureInput = {
|
|
15217
|
+
featureId: Scalars['String'];
|
|
15218
|
+
enabled: Scalars['Boolean'];
|
|
15219
|
+
};
|
|
15220
|
+
export declare type ToggleBoardFeatureOutput = MutationResponse & {
|
|
15221
|
+
__typename?: 'ToggleBoardFeatureOutput';
|
|
15222
|
+
featureGroups: BoardFeatureGroupConnection;
|
|
15223
|
+
statusCode: Scalars['Int'];
|
|
15224
|
+
success: Scalars['Boolean'];
|
|
15225
|
+
message: Scalars['String'];
|
|
15226
|
+
clientMutationId?: Maybe<Scalars['ID']>;
|
|
15227
|
+
};
|
|
13429
15228
|
export declare type TownsquareComment = Node & {
|
|
13430
15229
|
__typename?: 'TownsquareComment';
|
|
13431
15230
|
creator?: Maybe<User>;
|
|
@@ -13496,6 +15295,53 @@ export declare enum TownsquareGoalSortEnum {
|
|
|
13496
15295
|
WatchingAsc = "WATCHING_ASC",
|
|
13497
15296
|
WatchingDesc = "WATCHING_DESC"
|
|
13498
15297
|
}
|
|
15298
|
+
export declare type TownsquareHelpPointer = Node & {
|
|
15299
|
+
__typename?: 'TownsquareHelpPointer';
|
|
15300
|
+
cloudId?: Maybe<Scalars['String']>;
|
|
15301
|
+
creationDate?: Maybe<Scalars['DateTime']>;
|
|
15302
|
+
creatorAaid?: Maybe<Scalars['String']>;
|
|
15303
|
+
description?: Maybe<Scalars['String']>;
|
|
15304
|
+
id: Scalars['ID'];
|
|
15305
|
+
link?: Maybe<Scalars['String']>;
|
|
15306
|
+
name?: Maybe<Scalars['String']>;
|
|
15307
|
+
owner?: Maybe<TownsquareHelpPointerOwner>;
|
|
15308
|
+
tags?: Maybe<TownsquareTagConnection>;
|
|
15309
|
+
teamId?: Maybe<Scalars['String']>;
|
|
15310
|
+
type?: Maybe<TownsquareHelpPointerType>;
|
|
15311
|
+
iconData?: Maybe<Scalars['String']>;
|
|
15312
|
+
};
|
|
15313
|
+
export declare type TownsquareHelpPointerTagsArgs = {
|
|
15314
|
+
after?: Maybe<Scalars['String']>;
|
|
15315
|
+
first?: Maybe<Scalars['Int']>;
|
|
15316
|
+
};
|
|
15317
|
+
export declare type TownsquareHelpPointerConnection = {
|
|
15318
|
+
__typename?: 'TownsquareHelpPointerConnection';
|
|
15319
|
+
count: Scalars['Int'];
|
|
15320
|
+
edges?: Maybe<Array<Maybe<TownsquareHelpPointerEdge>>>;
|
|
15321
|
+
pageInfo: PageInfo;
|
|
15322
|
+
};
|
|
15323
|
+
export declare type TownsquareHelpPointerEdge = {
|
|
15324
|
+
__typename?: 'TownsquareHelpPointerEdge';
|
|
15325
|
+
cursor: Scalars['String'];
|
|
15326
|
+
node?: Maybe<TownsquareHelpPointer>;
|
|
15327
|
+
};
|
|
15328
|
+
export declare type TownsquareHelpPointerOwner = {
|
|
15329
|
+
__typename?: 'TownsquareHelpPointerOwner';
|
|
15330
|
+
displayName?: Maybe<Scalars['String']>;
|
|
15331
|
+
id?: Maybe<Scalars['String']>;
|
|
15332
|
+
largeAvatarImageUrl?: Maybe<Scalars['String']>;
|
|
15333
|
+
smallAvatarImageUrl?: Maybe<Scalars['String']>;
|
|
15334
|
+
};
|
|
15335
|
+
export declare type TownsquareHelpPointerSearchResponse = {
|
|
15336
|
+
__typename?: 'TownsquareHelpPointerSearchResponse';
|
|
15337
|
+
results?: Maybe<TownsquareHelpPointerConnection>;
|
|
15338
|
+
tags?: Maybe<Array<Maybe<TownsquareTag>>>;
|
|
15339
|
+
teams?: Maybe<Array<Maybe<TownsquareTeam>>>;
|
|
15340
|
+
};
|
|
15341
|
+
export declare enum TownsquareHelpPointerType {
|
|
15342
|
+
Action = "ACTION",
|
|
15343
|
+
Information = "INFORMATION"
|
|
15344
|
+
}
|
|
13499
15345
|
export declare type TownsquareProject = Node & {
|
|
13500
15346
|
__typename?: 'TownsquareProject';
|
|
13501
15347
|
archived: Scalars['Boolean'];
|
|
@@ -13557,6 +15403,9 @@ export declare type TownsquareQueryApi = {
|
|
|
13557
15403
|
commentsByAri?: Maybe<Array<Maybe<TownsquareComment>>>;
|
|
13558
15404
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
13559
15405
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
15406
|
+
helpPointerSearch?: Maybe<TownsquareHelpPointerSearchResponse>;
|
|
15407
|
+
helpPointersByCloudIds?: Maybe<TownsquareHelpPointerConnection>;
|
|
15408
|
+
helpPointersByTeam?: Maybe<TownsquareHelpPointerConnection>;
|
|
13560
15409
|
};
|
|
13561
15410
|
export declare type TownsquareQueryApiProjectsByAriArgs = {
|
|
13562
15411
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -13582,6 +15431,49 @@ export declare type TownsquareQueryApiGoalSearchArgs = {
|
|
|
13582
15431
|
q?: Maybe<Scalars['String']>;
|
|
13583
15432
|
sort?: Maybe<Array<Maybe<TownsquareGoalSortEnum>>>;
|
|
13584
15433
|
};
|
|
15434
|
+
export declare type TownsquareQueryApiHelpPointerSearchArgs = {
|
|
15435
|
+
after?: Maybe<Scalars['String']>;
|
|
15436
|
+
cloudIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
15437
|
+
first?: Maybe<Scalars['Int']>;
|
|
15438
|
+
q?: Maybe<Scalars['String']>;
|
|
15439
|
+
};
|
|
15440
|
+
export declare type TownsquareQueryApiHelpPointersByCloudIdsArgs = {
|
|
15441
|
+
after?: Maybe<Scalars['String']>;
|
|
15442
|
+
cloudIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
15443
|
+
first?: Maybe<Scalars['Int']>;
|
|
15444
|
+
};
|
|
15445
|
+
export declare type TownsquareQueryApiHelpPointersByTeamArgs = {
|
|
15446
|
+
after?: Maybe<Scalars['String']>;
|
|
15447
|
+
first?: Maybe<Scalars['Int']>;
|
|
15448
|
+
teamUuid: Scalars['String'];
|
|
15449
|
+
};
|
|
15450
|
+
export declare type TownsquareTag = Node & {
|
|
15451
|
+
__typename?: 'TownsquareTag';
|
|
15452
|
+
description?: Maybe<Scalars['String']>;
|
|
15453
|
+
id: Scalars['ID'];
|
|
15454
|
+
name?: Maybe<Scalars['String']>;
|
|
15455
|
+
};
|
|
15456
|
+
export declare type TownsquareTagConnection = {
|
|
15457
|
+
__typename?: 'TownsquareTagConnection';
|
|
15458
|
+
count: Scalars['Int'];
|
|
15459
|
+
edges?: Maybe<Array<Maybe<TownsquareTagEdge>>>;
|
|
15460
|
+
pageInfo: PageInfo;
|
|
15461
|
+
};
|
|
15462
|
+
export declare type TownsquareTagEdge = {
|
|
15463
|
+
__typename?: 'TownsquareTagEdge';
|
|
15464
|
+
cursor: Scalars['String'];
|
|
15465
|
+
node?: Maybe<TownsquareTag>;
|
|
15466
|
+
};
|
|
15467
|
+
export declare type TownsquareTeam = Node & {
|
|
15468
|
+
__typename?: 'TownsquareTeam';
|
|
15469
|
+
avatarUrl?: Maybe<Scalars['String']>;
|
|
15470
|
+
id: Scalars['ID'];
|
|
15471
|
+
name?: Maybe<Scalars['String']>;
|
|
15472
|
+
};
|
|
15473
|
+
export declare type TransitionFilter = {
|
|
15474
|
+
from: Scalars['String'];
|
|
15475
|
+
to: Scalars['String'];
|
|
15476
|
+
};
|
|
13585
15477
|
export declare type TunnelDefinitionsInput = {
|
|
13586
15478
|
faasTunnelUrl?: Maybe<Scalars['URL']>;
|
|
13587
15479
|
customUI?: Maybe<Array<Maybe<CustomUiTunnelDefinitionInput>>>;
|
|
@@ -13744,6 +15636,7 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
13744
15636
|
ownerId?: Maybe<Scalars['ID']>;
|
|
13745
15637
|
componentType?: Maybe<CompassComponentType>;
|
|
13746
15638
|
importance?: Maybe<CompassScorecardImportance>;
|
|
15639
|
+
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
13747
15640
|
};
|
|
13748
15641
|
export declare type UpdateCompassScorecardPayload = Payload & {
|
|
13749
15642
|
__typename?: 'UpdateCompassScorecardPayload';
|
|
@@ -14027,6 +15920,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
14027
15920
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|
|
14028
15921
|
timelineConfig?: Maybe<UpdatePolarisTimelineConfig>;
|
|
14029
15922
|
matrixConfig?: Maybe<UpdatePolarisMatrixConfig>;
|
|
15923
|
+
sortMode?: Maybe<PolarisViewSortMode>;
|
|
14030
15924
|
};
|
|
14031
15925
|
export declare type UpdatePolarisViewPayload = Payload & {
|
|
14032
15926
|
__typename?: 'UpdatePolarisViewPayload';
|
|
@@ -14059,8 +15953,13 @@ export declare type UpdatePolarisViewTimestampPayload = Payload & {
|
|
|
14059
15953
|
success: Scalars['Boolean'];
|
|
14060
15954
|
errors?: Maybe<Array<MutationError>>;
|
|
14061
15955
|
};
|
|
15956
|
+
export declare type UpdateUserInstallationRulesInput = {
|
|
15957
|
+
cloudId: Scalars['ID'];
|
|
15958
|
+
rule: UserInstallationRuleValue;
|
|
15959
|
+
};
|
|
14062
15960
|
export declare type User = {
|
|
14063
15961
|
accountId: Scalars['ID'];
|
|
15962
|
+
canonicalAccountId: Scalars['ID'];
|
|
14064
15963
|
accountStatus: AccountStatus;
|
|
14065
15964
|
name: Scalars['String'];
|
|
14066
15965
|
picture: Scalars['URL'];
|
|
@@ -14125,6 +16024,20 @@ export declare type UserGrantPageInfo = {
|
|
|
14125
16024
|
startCursor?: Maybe<Scalars['String']>;
|
|
14126
16025
|
endCursor?: Maybe<Scalars['String']>;
|
|
14127
16026
|
};
|
|
16027
|
+
export declare enum UserInstallationRuleValue {
|
|
16028
|
+
Allow = "allow",
|
|
16029
|
+
Deny = "deny"
|
|
16030
|
+
}
|
|
16031
|
+
export declare type UserInstallationRules = {
|
|
16032
|
+
__typename?: 'UserInstallationRules';
|
|
16033
|
+
rule: UserInstallationRuleValue;
|
|
16034
|
+
};
|
|
16035
|
+
export declare type UserInstallationRulesPayload = Payload & {
|
|
16036
|
+
__typename?: 'UserInstallationRulesPayload';
|
|
16037
|
+
rule?: Maybe<UserInstallationRuleValue>;
|
|
16038
|
+
success: Scalars['Boolean'];
|
|
16039
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16040
|
+
};
|
|
14128
16041
|
export declare type WatchMarketplaceAppPayload = Payload & {
|
|
14129
16042
|
__typename?: 'WatchMarketplaceAppPayload';
|
|
14130
16043
|
success: Scalars['Boolean'];
|