@forge/cli-shared 8.12.1-next.4 → 8.13.0-next.6
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 +13 -0
- package/out/graphql/graphql-types.d.ts +1213 -40
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +120 -33
- package/out/ui/text.d.ts +3 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +4 -1
- package/package.json +2 -2
|
@@ -154,6 +154,60 @@ export declare type AvpAddDashboardRowPayload = Payload & {
|
|
|
154
154
|
errors?: Maybe<Array<MutationError>>;
|
|
155
155
|
success: Scalars['Boolean']['output'];
|
|
156
156
|
};
|
|
157
|
+
export declare type AvpAnalyticsListModelsRequest = {
|
|
158
|
+
category: AvpAnalyticsModelCategory;
|
|
159
|
+
cloudId: Scalars['ID']['input'];
|
|
160
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
161
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
162
|
+
product: AvpAnalyticsProductType;
|
|
163
|
+
type: AvpAnalyticsModelType;
|
|
164
|
+
workspaceId: Scalars['ID']['input'];
|
|
165
|
+
};
|
|
166
|
+
export declare type AvpAnalyticsListModelsResponse = {
|
|
167
|
+
__typename?: 'AVPAnalyticsListModelsResponse';
|
|
168
|
+
hasMore: Scalars['Boolean']['output'];
|
|
169
|
+
models: Array<AvpAnalyticsModelSummary>;
|
|
170
|
+
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
171
|
+
};
|
|
172
|
+
export declare enum AvpAnalyticsModelCategory {
|
|
173
|
+
Dynamic = "DYNAMIC",
|
|
174
|
+
Static = "STATIC"
|
|
175
|
+
}
|
|
176
|
+
export declare enum AvpAnalyticsModelStatus {
|
|
177
|
+
Active = "ACTIVE",
|
|
178
|
+
Draft = "DRAFT"
|
|
179
|
+
}
|
|
180
|
+
export declare type AvpAnalyticsModelSummary = {
|
|
181
|
+
__typename?: 'AVPAnalyticsModelSummary';
|
|
182
|
+
category: AvpAnalyticsModelCategory;
|
|
183
|
+
createdAt: Scalars['DateTime']['output'];
|
|
184
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
185
|
+
isTemplate: Scalars['Boolean']['output'];
|
|
186
|
+
modelId: Scalars['String']['output'];
|
|
187
|
+
name: Scalars['String']['output'];
|
|
188
|
+
numberOfAttributes: Scalars['Int']['output'];
|
|
189
|
+
numberOfModelsLinked: Scalars['Int']['output'];
|
|
190
|
+
product: AvpAnalyticsProductType;
|
|
191
|
+
sourceId?: Maybe<Scalars['String']['output']>;
|
|
192
|
+
sourceType?: Maybe<AvpAnalyticsSourceType>;
|
|
193
|
+
status: AvpAnalyticsModelStatus;
|
|
194
|
+
templateModelId?: Maybe<Scalars['String']['output']>;
|
|
195
|
+
type: AvpAnalyticsModelType;
|
|
196
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
197
|
+
version: Scalars['Int']['output'];
|
|
198
|
+
};
|
|
199
|
+
export declare enum AvpAnalyticsModelType {
|
|
200
|
+
System = "SYSTEM",
|
|
201
|
+
UserDefined = "USER_DEFINED"
|
|
202
|
+
}
|
|
203
|
+
export declare enum AvpAnalyticsProductType {
|
|
204
|
+
Assets = "ASSETS",
|
|
205
|
+
Jira = "JIRA"
|
|
206
|
+
}
|
|
207
|
+
export declare enum AvpAnalyticsSourceType {
|
|
208
|
+
AssetObjectType = "ASSET_OBJECT_TYPE",
|
|
209
|
+
AssetSchemaType = "ASSET_SCHEMA_TYPE"
|
|
210
|
+
}
|
|
157
211
|
export declare enum AvpCanvasRowHeight {
|
|
158
212
|
Large = "large",
|
|
159
213
|
Medium = "medium",
|
|
@@ -655,7 +709,8 @@ export declare type AvpHotTierFilterConfigInput = {
|
|
|
655
709
|
};
|
|
656
710
|
export declare enum AvpIntegrationId {
|
|
657
711
|
JsmAssets = "JSM_ASSETS",
|
|
658
|
-
JsmSummaryPage = "JSM_SUMMARY_PAGE"
|
|
712
|
+
JsmSummaryPage = "JSM_SUMMARY_PAGE",
|
|
713
|
+
Townsquare = "TOWNSQUARE"
|
|
659
714
|
}
|
|
660
715
|
export declare type AvpMetricsConfiguration = {
|
|
661
716
|
__typename?: 'AVPMetricsConfiguration';
|
|
@@ -1534,7 +1589,7 @@ export declare type AdminAccessUrlConnection = {
|
|
|
1534
1589
|
};
|
|
1535
1590
|
export declare type AdminAccessUrlCreationResponsePayload = Payload & {
|
|
1536
1591
|
__typename?: 'AdminAccessUrlCreationResponsePayload';
|
|
1537
|
-
accessUrl?: Maybe<
|
|
1592
|
+
accessUrl?: Maybe<AdminAccessUrlV2>;
|
|
1538
1593
|
errors?: Maybe<Array<MutationError>>;
|
|
1539
1594
|
success: Scalars['Boolean']['output'];
|
|
1540
1595
|
};
|
|
@@ -1546,7 +1601,16 @@ export declare type AdminAccessUrlDeletionResponsePayload = {
|
|
|
1546
1601
|
export declare type AdminAccessUrlEdge = {
|
|
1547
1602
|
__typename?: 'AdminAccessUrlEdge';
|
|
1548
1603
|
cursor: Scalars['String']['output'];
|
|
1549
|
-
node:
|
|
1604
|
+
node: AdminAccessUrlV2;
|
|
1605
|
+
};
|
|
1606
|
+
export declare type AdminAccessUrlV2 = {
|
|
1607
|
+
__typename?: 'AdminAccessUrlV2';
|
|
1608
|
+
expirationDate?: Maybe<Scalars['String']['output']>;
|
|
1609
|
+
id: Scalars['ID']['output'];
|
|
1610
|
+
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
1611
|
+
resources?: Maybe<Array<AdminResource>>;
|
|
1612
|
+
status: Scalars['String']['output'];
|
|
1613
|
+
url: Scalars['String']['output'];
|
|
1550
1614
|
};
|
|
1551
1615
|
export declare type AdminAccountStatusCounts = {
|
|
1552
1616
|
__typename?: 'AdminAccountStatusCounts';
|
|
@@ -1665,6 +1729,7 @@ export declare type AdminAuditLogEvent = {
|
|
|
1665
1729
|
};
|
|
1666
1730
|
export declare type AdminAuditLogEventAction = {
|
|
1667
1731
|
__typename?: 'AdminAuditLogEventAction';
|
|
1732
|
+
id: Scalars['String']['output'];
|
|
1668
1733
|
name: Scalars['String']['output'];
|
|
1669
1734
|
};
|
|
1670
1735
|
export declare type AdminAuditLogEventConnection = {
|
|
@@ -1965,6 +2030,28 @@ export declare type AdminGroupEdge = {
|
|
|
1965
2030
|
cursor: Scalars['String']['output'];
|
|
1966
2031
|
node?: Maybe<AdminGroup>;
|
|
1967
2032
|
};
|
|
2033
|
+
export declare type AdminGroupRoleAssignment = {
|
|
2034
|
+
__typename?: 'AdminGroupRoleAssignment';
|
|
2035
|
+
defaultRole?: Maybe<Scalars['String']['output']>;
|
|
2036
|
+
resourceId: Scalars['String']['output'];
|
|
2037
|
+
roles?: Maybe<Array<Scalars['String']['output']>>;
|
|
2038
|
+
};
|
|
2039
|
+
export declare type AdminGroupRoleAssignmentEdge = {
|
|
2040
|
+
__typename?: 'AdminGroupRoleAssignmentEdge';
|
|
2041
|
+
cursor: Scalars['String']['output'];
|
|
2042
|
+
node?: Maybe<AdminGroupRoleAssignment>;
|
|
2043
|
+
};
|
|
2044
|
+
export declare type AdminGroupRoleAssignmentsConnection = {
|
|
2045
|
+
__typename?: 'AdminGroupRoleAssignmentsConnection';
|
|
2046
|
+
edges?: Maybe<Array<AdminGroupRoleAssignmentEdge>>;
|
|
2047
|
+
pageInfo: PageInfo;
|
|
2048
|
+
};
|
|
2049
|
+
export declare type AdminGroupRoleAssignmentsInput = {
|
|
2050
|
+
directoryIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2051
|
+
resourceIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2052
|
+
resourceOwners?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2053
|
+
roleIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2054
|
+
};
|
|
1968
2055
|
export declare type AdminGroupStatsQueryInput = {
|
|
1969
2056
|
includeResources?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1970
2057
|
includeUsers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -2575,6 +2662,11 @@ export declare type AdminUnitsForOrgSearchInput = {
|
|
|
2575
2662
|
export declare type AdminUnitsForOrgSortInput = {
|
|
2576
2663
|
name: SortDirection;
|
|
2577
2664
|
};
|
|
2665
|
+
export declare type AdminUnlinkScimUserResponsePayload = Payload & {
|
|
2666
|
+
__typename?: 'AdminUnlinkScimUserResponsePayload';
|
|
2667
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2668
|
+
success: Scalars['Boolean']['output'];
|
|
2669
|
+
};
|
|
2578
2670
|
export declare type AdminUpdateInvitePolicyInput = {
|
|
2579
2671
|
allowedAction?: InputMaybe<AdminInviteAllowedAction>;
|
|
2580
2672
|
appliesTo?: InputMaybe<Array<AdminResourceRoleInput>>;
|
|
@@ -2645,12 +2737,32 @@ export declare type AdminUserEdge = {
|
|
|
2645
2737
|
cursor: Scalars['String']['output'];
|
|
2646
2738
|
node?: Maybe<AdminUser>;
|
|
2647
2739
|
};
|
|
2740
|
+
export declare type AdminUserEmailInput = {
|
|
2741
|
+
email: Scalars['String']['input'];
|
|
2742
|
+
};
|
|
2648
2743
|
export declare type AdminUserInviteAppliesTo = AdminInviteGroup | AdminResourceRole;
|
|
2649
2744
|
export declare type AdminUserManagement = {
|
|
2650
2745
|
__typename?: 'AdminUserManagement';
|
|
2651
2746
|
availableRoles?: Maybe<Array<Scalars['String']['output']>>;
|
|
2652
2747
|
userAccessEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
2653
2748
|
};
|
|
2749
|
+
export declare type AdminUserProvisioningScimLink = {
|
|
2750
|
+
__typename?: 'AdminUserProvisioningScimLink';
|
|
2751
|
+
atlassianAccountId?: Maybe<Scalars['ID']['output']>;
|
|
2752
|
+
orgId: Scalars['ID']['output'];
|
|
2753
|
+
scimDirectoryId: Scalars['ID']['output'];
|
|
2754
|
+
scimUserId: Scalars['ID']['output'];
|
|
2755
|
+
};
|
|
2756
|
+
export declare type AdminUserProvisioningScimLinkConnection = {
|
|
2757
|
+
__typename?: 'AdminUserProvisioningScimLinkConnection';
|
|
2758
|
+
edges?: Maybe<Array<AdminUserProvisioningScimLinkEdge>>;
|
|
2759
|
+
pageInfo: PageInfo;
|
|
2760
|
+
};
|
|
2761
|
+
export declare type AdminUserProvisioningScimLinkEdge = {
|
|
2762
|
+
__typename?: 'AdminUserProvisioningScimLinkEdge';
|
|
2763
|
+
cursor: Scalars['String']['output'];
|
|
2764
|
+
node?: Maybe<AdminUserProvisioningScimLink>;
|
|
2765
|
+
};
|
|
2654
2766
|
export declare type AdminUserRole = {
|
|
2655
2767
|
__typename?: 'AdminUserRole';
|
|
2656
2768
|
name: Scalars['String']['output'];
|
|
@@ -4440,6 +4552,7 @@ export declare type AppHostServiceScope = {
|
|
|
4440
4552
|
description: Scalars['String']['output'];
|
|
4441
4553
|
key: Scalars['String']['output'];
|
|
4442
4554
|
name: Scalars['String']['output'];
|
|
4555
|
+
restricted?: Maybe<Scalars['Boolean']['output']>;
|
|
4443
4556
|
service: AppHostService;
|
|
4444
4557
|
};
|
|
4445
4558
|
export declare type AppInstallation = {
|
|
@@ -5754,6 +5867,82 @@ export declare type AssetsDmCreateDataSourceTypeResponse = {
|
|
|
5754
5867
|
isSuccessful?: Maybe<Scalars['Boolean']['output']>;
|
|
5755
5868
|
message?: Maybe<Scalars['String']['output']>;
|
|
5756
5869
|
};
|
|
5870
|
+
export declare enum AssetsDmDataDictionaryColumnName {
|
|
5871
|
+
ComputeDictionaryId = "computeDictionaryId",
|
|
5872
|
+
DestinationObjectAttributeId = "destinationObjectAttributeId",
|
|
5873
|
+
DmComputeDictionaryDate = "dmComputeDictionaryDate",
|
|
5874
|
+
DmComputeDictionaryId = "dmComputeDictionaryId",
|
|
5875
|
+
Name = "name",
|
|
5876
|
+
ObjectId = "objectId",
|
|
5877
|
+
Priority = "priority",
|
|
5878
|
+
Scope = "scope",
|
|
5879
|
+
SourceObjectAttributeId = "sourceObjectAttributeId",
|
|
5880
|
+
SourceObjectAttributeId2 = "sourceObjectAttributeId2",
|
|
5881
|
+
TenantId = "tenantId"
|
|
5882
|
+
}
|
|
5883
|
+
export declare type AssetsDmDataDictionaryFilter = {
|
|
5884
|
+
columnName: AssetsDmDataDictionaryFilterColumn;
|
|
5885
|
+
value: Scalars['String']['input'];
|
|
5886
|
+
};
|
|
5887
|
+
export declare enum AssetsDmDataDictionaryFilterColumn {
|
|
5888
|
+
Name = "name"
|
|
5889
|
+
}
|
|
5890
|
+
export declare type AssetsDmDataDictionaryPageInfo = {
|
|
5891
|
+
__typename?: 'AssetsDMDataDictionaryPageInfo';
|
|
5892
|
+
currentPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
5893
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
5894
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
5895
|
+
nextPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
5896
|
+
pageSize: Scalars['Int']['output'];
|
|
5897
|
+
previousPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
5898
|
+
totalPages: Scalars['Int']['output'];
|
|
5899
|
+
};
|
|
5900
|
+
export declare type AssetsDmDataDictionaryPageInfoInput = {
|
|
5901
|
+
pageCursor?: InputMaybe<Scalars['Int']['input']>;
|
|
5902
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
5903
|
+
};
|
|
5904
|
+
export declare type AssetsDmDataDictionaryResponse = {
|
|
5905
|
+
__typename?: 'AssetsDMDataDictionaryResponse';
|
|
5906
|
+
pageInfo: AssetsDmDataDictionaryPageInfo;
|
|
5907
|
+
rows: Array<AssetsDmDataDictionaryRow>;
|
|
5908
|
+
totalCount: Scalars['Int']['output'];
|
|
5909
|
+
};
|
|
5910
|
+
export declare type AssetsDmDataDictionaryRow = {
|
|
5911
|
+
__typename?: 'AssetsDMDataDictionaryRow';
|
|
5912
|
+
computeDictionaryId: Scalars['ID']['output'];
|
|
5913
|
+
computedIssuesCount: Scalars['Int']['output'];
|
|
5914
|
+
destinationObjectAttributeId: Scalars['ID']['output'];
|
|
5915
|
+
dmComputeDictionaryDate: Scalars['String']['output'];
|
|
5916
|
+
dmComputeDictionaryId?: Maybe<Scalars['ID']['output']>;
|
|
5917
|
+
name: Scalars['String']['output'];
|
|
5918
|
+
objectId: Scalars['ID']['output'];
|
|
5919
|
+
priority: Scalars['Int']['output'];
|
|
5920
|
+
scope: AssetsDmDataDictionaryScope;
|
|
5921
|
+
sourceObjectAttributeId: Scalars['ID']['output'];
|
|
5922
|
+
sourceObjectAttributeId2?: Maybe<Scalars['ID']['output']>;
|
|
5923
|
+
tenantId: Scalars['ID']['output'];
|
|
5924
|
+
};
|
|
5925
|
+
export declare enum AssetsDmDataDictionaryScope {
|
|
5926
|
+
Imported = "imported",
|
|
5927
|
+
Local = "local"
|
|
5928
|
+
}
|
|
5929
|
+
export declare type AssetsDmDataDictionarySortBy = {
|
|
5930
|
+
columnName: AssetsDmDataDictionarySortColumn;
|
|
5931
|
+
order: AssetsDmDataDictionarySortOrder;
|
|
5932
|
+
};
|
|
5933
|
+
export declare enum AssetsDmDataDictionarySortColumn {
|
|
5934
|
+
ComputedIssuesCount = "computedIssuesCount",
|
|
5935
|
+
DestinationObjectAttributeId = "destinationObjectAttributeId",
|
|
5936
|
+
Name = "name",
|
|
5937
|
+
Priority = "priority",
|
|
5938
|
+
Scope = "scope",
|
|
5939
|
+
SourceObjectAttributeId = "sourceObjectAttributeId",
|
|
5940
|
+
SourceObjectAttributeId2 = "sourceObjectAttributeId2"
|
|
5941
|
+
}
|
|
5942
|
+
export declare enum AssetsDmDataDictionarySortOrder {
|
|
5943
|
+
Asc = "asc",
|
|
5944
|
+
Desc = "desc"
|
|
5945
|
+
}
|
|
5757
5946
|
export declare type AssetsDmDataSource = {
|
|
5758
5947
|
__typename?: 'AssetsDMDataSource';
|
|
5759
5948
|
dataSourceId?: Maybe<Scalars['String']['output']>;
|
|
@@ -6370,19 +6559,6 @@ export declare type AssetsDmDataSourceTypeInfo = {
|
|
|
6370
6559
|
name: Scalars['String']['output'];
|
|
6371
6560
|
tenantId: Scalars['ID']['output'];
|
|
6372
6561
|
};
|
|
6373
|
-
export declare type AssetsDmDataSourceTypeResponse = {
|
|
6374
|
-
__typename?: 'AssetsDMDataSourceTypeResponse';
|
|
6375
|
-
pageInfo: AssetsDmDefaultAttributeMappingPageInfo;
|
|
6376
|
-
rows: Array<AssetsDmDataSourceTypeRow>;
|
|
6377
|
-
totalCount: Scalars['Int']['output'];
|
|
6378
|
-
};
|
|
6379
|
-
export declare type AssetsDmDataSourceTypeRow = {
|
|
6380
|
-
__typename?: 'AssetsDMDataSourceTypeRow';
|
|
6381
|
-
dataSourceTypeId: Scalars['ID']['output'];
|
|
6382
|
-
defaultGap: Scalars['Int']['output'];
|
|
6383
|
-
name: Scalars['String']['output'];
|
|
6384
|
-
tenantId: Scalars['ID']['output'];
|
|
6385
|
-
};
|
|
6386
6562
|
export declare type AssetsDmDataSourceTypes = {
|
|
6387
6563
|
__typename?: 'AssetsDMDataSourceTypes';
|
|
6388
6564
|
dataSourceTypeId: Scalars['ID']['output'];
|
|
@@ -6487,6 +6663,11 @@ export declare type AssetsDmDeleteCleansingReasonResponse = {
|
|
|
6487
6663
|
isSuccessful: Scalars['Boolean']['output'];
|
|
6488
6664
|
message: Scalars['String']['output'];
|
|
6489
6665
|
};
|
|
6666
|
+
export declare type AssetsDmDeleteDataDictionaryResponse = {
|
|
6667
|
+
__typename?: 'AssetsDMDeleteDataDictionaryResponse';
|
|
6668
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
6669
|
+
message: Scalars['String']['output'];
|
|
6670
|
+
};
|
|
6490
6671
|
export declare type AssetsDmDeleteDataSourceArgs = {
|
|
6491
6672
|
cloudId: Scalars['ID']['input'];
|
|
6492
6673
|
input: AssetsDmDeleteDataSourceInput;
|
|
@@ -6505,6 +6686,20 @@ export declare type AssetsDmDeleteDefaultAttributeMappingResponse = {
|
|
|
6505
6686
|
isSuccessful: Scalars['Boolean']['output'];
|
|
6506
6687
|
message: Scalars['String']['output'];
|
|
6507
6688
|
};
|
|
6689
|
+
export declare type AssetsDmEditDataDictionaryInput = {
|
|
6690
|
+
computeDictionaryId: Scalars['ID']['input'];
|
|
6691
|
+
destinationObjectAttributeId: Scalars['ID']['input'];
|
|
6692
|
+
name: Scalars['String']['input'];
|
|
6693
|
+
objectId: Scalars['ID']['input'];
|
|
6694
|
+
priority: Scalars['Int']['input'];
|
|
6695
|
+
sourceObjectAttributeId: Scalars['ID']['input'];
|
|
6696
|
+
sourceObjectAttributeId2?: InputMaybe<Scalars['ID']['input']>;
|
|
6697
|
+
};
|
|
6698
|
+
export declare type AssetsDmEditDataDictionaryResponse = {
|
|
6699
|
+
__typename?: 'AssetsDMEditDataDictionaryResponse';
|
|
6700
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
6701
|
+
message: Scalars['String']['output'];
|
|
6702
|
+
};
|
|
6508
6703
|
export declare type AssetsDmEditDefaultAttributeMappingInput = {
|
|
6509
6704
|
columnType: AssetsDmDefaultAttributeMappingColumnType;
|
|
6510
6705
|
dataSourceTypeId: Scalars['ID']['input'];
|
|
@@ -8472,7 +8667,7 @@ export declare enum CcpCreateEntitlementExperienceOptionsConfirmationScreen {
|
|
|
8472
8667
|
}
|
|
8473
8668
|
export declare type CcpCreateEntitlementInput = {
|
|
8474
8669
|
experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
|
|
8475
|
-
|
|
8670
|
+
fallbackEntitlementIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
8476
8671
|
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
8477
8672
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
8478
8673
|
orderOptions?: InputMaybe<CcpCreateEntitlementOrderOptions>;
|
|
@@ -10447,6 +10642,11 @@ export declare enum ChannelPlatformContactState {
|
|
|
10447
10642
|
Initialized = "INITIALIZED",
|
|
10448
10643
|
Unassigned = "UNASSIGNED"
|
|
10449
10644
|
}
|
|
10645
|
+
export declare type ChannelPlatformCreateContactResponse = {
|
|
10646
|
+
__typename?: 'ChannelPlatformCreateContactResponse';
|
|
10647
|
+
channel?: Maybe<ChannelPlatformChannelType>;
|
|
10648
|
+
value?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
10649
|
+
};
|
|
10450
10650
|
export declare type ChannelPlatformCustomerConversationsResponse = {
|
|
10451
10651
|
__typename?: 'ChannelPlatformCustomerConversationsResponse';
|
|
10452
10652
|
conversations?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -15135,6 +15335,7 @@ export declare type CompassScorecardCriteriaScoreStatisticsHistoryQuery = {
|
|
|
15135
15335
|
filter?: InputMaybe<CompassScorecardCriteriaScoreStatisticsHistoryQueryFilter>;
|
|
15136
15336
|
};
|
|
15137
15337
|
export declare type CompassScorecardCriteriaScoreStatisticsHistoryQueryFilter = {
|
|
15338
|
+
componentStates?: InputMaybe<CompassScorecardAppliedToComponentsComponentStateFilter>;
|
|
15138
15339
|
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
15139
15340
|
customFields?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
|
|
15140
15341
|
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
@@ -16676,6 +16877,7 @@ export declare type ConfluenceBlogPostLinks = {
|
|
|
16676
16877
|
};
|
|
16677
16878
|
export declare type ConfluenceBlogPostProperty = {
|
|
16678
16879
|
__typename?: 'ConfluenceBlogPostProperty';
|
|
16880
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
16679
16881
|
key: Scalars['String']['output'];
|
|
16680
16882
|
value: Scalars['String']['output'];
|
|
16681
16883
|
};
|
|
@@ -19153,6 +19355,7 @@ export declare type ConfluenceNbmPerfPages = {
|
|
|
19153
19355
|
__typename?: 'ConfluenceNbmPerfPages';
|
|
19154
19356
|
analyzedCount?: Maybe<Scalars['Long']['output']>;
|
|
19155
19357
|
dashboardCount?: Maybe<Scalars['Long']['output']>;
|
|
19358
|
+
panelToExpandPageIds: Array<Maybe<Scalars['String']['output']>>;
|
|
19156
19359
|
severity?: Maybe<ConfluenceNbmPerfPageSeverity>;
|
|
19157
19360
|
sqlDuplicates: Array<ConfluenceNbmPerfSqlDuplicate>;
|
|
19158
19361
|
tableJoinerChains: Array<ConfluenceNbmPerfTableJoinerChain>;
|
|
@@ -19378,6 +19581,23 @@ export declare type ConfluenceNbmVerificationEntryInput = {
|
|
|
19378
19581
|
isApproved: Scalars['Boolean']['input'];
|
|
19379
19582
|
manualState?: InputMaybe<ConfluenceNbmCategoryTypes>;
|
|
19380
19583
|
};
|
|
19584
|
+
export declare type ConfluenceNbmVerificationJob = {
|
|
19585
|
+
__typename?: 'ConfluenceNbmVerificationJob';
|
|
19586
|
+
completeDate?: Maybe<Scalars['String']['output']>;
|
|
19587
|
+
phase?: Maybe<ConfluenceNbmVerificationPhase>;
|
|
19588
|
+
startDate?: Maybe<Scalars['String']['output']>;
|
|
19589
|
+
status?: Maybe<ConfluenceNbmVerificationStatus>;
|
|
19590
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
19591
|
+
verificationEntryIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
19592
|
+
};
|
|
19593
|
+
export declare enum ConfluenceNbmVerificationPhase {
|
|
19594
|
+
AiAnalysis = "AI_ANALYSIS",
|
|
19595
|
+
Completed = "COMPLETED",
|
|
19596
|
+
Copy = "COPY",
|
|
19597
|
+
Pending = "PENDING",
|
|
19598
|
+
Screenshot = "SCREENSHOT",
|
|
19599
|
+
Setup = "SETUP"
|
|
19600
|
+
}
|
|
19381
19601
|
export declare type ConfluenceNbmVerificationResultConnection = {
|
|
19382
19602
|
__typename?: 'ConfluenceNbmVerificationResultConnection';
|
|
19383
19603
|
edges?: Maybe<Array<Maybe<ConfluenceNbmVerificationResultEdge>>>;
|
|
@@ -19397,6 +19617,13 @@ export declare enum ConfluenceNbmVerificationResultOrder {
|
|
|
19397
19617
|
AiState = "AI_STATE",
|
|
19398
19618
|
ManualState = "MANUAL_STATE"
|
|
19399
19619
|
}
|
|
19620
|
+
export declare enum ConfluenceNbmVerificationStatus {
|
|
19621
|
+
Cancelled = "CANCELLED",
|
|
19622
|
+
Completed = "COMPLETED",
|
|
19623
|
+
Failed = "FAILED",
|
|
19624
|
+
Pending = "PENDING",
|
|
19625
|
+
Running = "RUNNING"
|
|
19626
|
+
}
|
|
19400
19627
|
export declare type ConfluenceNcsPdfExportConfiguration = {
|
|
19401
19628
|
__typename?: 'ConfluenceNcsPdfExportConfiguration';
|
|
19402
19629
|
bodyFontSize: Scalars['Int']['output'];
|
|
@@ -19538,6 +19765,7 @@ export declare type ConfluencePageMoved = {
|
|
|
19538
19765
|
};
|
|
19539
19766
|
export declare type ConfluencePageProperty = {
|
|
19540
19767
|
__typename?: 'ConfluencePageProperty';
|
|
19768
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
19541
19769
|
key: Scalars['String']['output'];
|
|
19542
19770
|
value: Scalars['String']['output'];
|
|
19543
19771
|
};
|
|
@@ -22146,6 +22374,7 @@ export declare type Content = {
|
|
|
22146
22374
|
status?: Maybe<Scalars['String']['output']>;
|
|
22147
22375
|
subType?: Maybe<Scalars['String']['output']>;
|
|
22148
22376
|
title?: Maybe<Scalars['String']['output']>;
|
|
22377
|
+
titleIsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
22149
22378
|
type?: Maybe<Scalars['String']['output']>;
|
|
22150
22379
|
version?: Maybe<Version>;
|
|
22151
22380
|
visibleDescendantsCount: Scalars['Long']['output'];
|
|
@@ -24653,6 +24882,21 @@ export declare type CplsFiltersInput = {
|
|
|
24653
24882
|
jiraWorkItems?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
24654
24883
|
workTypes?: InputMaybe<Array<CplsWorkType>>;
|
|
24655
24884
|
};
|
|
24885
|
+
export declare type CplsImportCapacityDataInput = {
|
|
24886
|
+
cloudId: Scalars['ID']['input'];
|
|
24887
|
+
contributions?: InputMaybe<Array<CplsAddContributionInput>>;
|
|
24888
|
+
contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
24889
|
+
contributorWorkAssociations?: InputMaybe<Array<CplsContributorWorkAssociation>>;
|
|
24890
|
+
scopeId: Scalars['ID']['input'];
|
|
24891
|
+
};
|
|
24892
|
+
export declare type CplsImportCapacityDataPayload = Payload & {
|
|
24893
|
+
__typename?: 'CplsImportCapacityDataPayload';
|
|
24894
|
+
contributionResults?: Maybe<CplsAddContributionsPayload>;
|
|
24895
|
+
contributorScopeAssociationResults?: Maybe<CplsAddContributorScopeAssociationPayload>;
|
|
24896
|
+
contributorWorkAssociationResults?: Maybe<CplsAddContributorWorkAssociationPayload>;
|
|
24897
|
+
errors?: Maybe<Array<MutationError>>;
|
|
24898
|
+
success: Scalars['Boolean']['output'];
|
|
24899
|
+
};
|
|
24656
24900
|
export declare type CplsJiraWorkItem = {
|
|
24657
24901
|
__typename?: 'CplsJiraWorkItem';
|
|
24658
24902
|
jiraWorkItem?: Maybe<JiraIssue>;
|
|
@@ -26083,9 +26327,15 @@ export declare type CsmAiWidgetClientKey = {
|
|
|
26083
26327
|
clientKeySecret: Scalars['String']['output'];
|
|
26084
26328
|
enabled: Scalars['Boolean']['output'];
|
|
26085
26329
|
};
|
|
26330
|
+
export declare type CsmAiWidgetClientKeyStatus = {
|
|
26331
|
+
__typename?: 'CsmAiWidgetClientKeyStatus';
|
|
26332
|
+
clientKeyId: Scalars['String']['output'];
|
|
26333
|
+
enabled: Scalars['Boolean']['output'];
|
|
26334
|
+
};
|
|
26086
26335
|
export declare type CsmAiWidgetConfig = {
|
|
26087
26336
|
__typename?: 'CsmAiWidgetConfig';
|
|
26088
26337
|
allowedDomains?: Maybe<Array<Scalars['String']['output']>>;
|
|
26338
|
+
clientKeys?: Maybe<Array<CsmAiWidgetClientKeyStatus>>;
|
|
26089
26339
|
description?: Maybe<Scalars['String']['output']>;
|
|
26090
26340
|
id: Scalars['ID']['output'];
|
|
26091
26341
|
isAnonymousAccessEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -28718,6 +28968,7 @@ export declare type DevAiRovoDevBulkSessionResult = {
|
|
|
28718
28968
|
};
|
|
28719
28969
|
export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
28720
28970
|
cloudId: Scalars['ID']['input'];
|
|
28971
|
+
linkConversationId?: InputMaybe<Scalars['String']['input']>;
|
|
28721
28972
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
28722
28973
|
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
28723
28974
|
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
@@ -28726,6 +28977,7 @@ export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
|
28726
28977
|
xid?: InputMaybe<Scalars['String']['input']>;
|
|
28727
28978
|
};
|
|
28728
28979
|
export declare type DevAiRovoDevCreateSessionInput = {
|
|
28980
|
+
linkConversationId?: InputMaybe<Scalars['String']['input']>;
|
|
28729
28981
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
28730
28982
|
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
28731
28983
|
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
@@ -30740,6 +30992,32 @@ export declare enum DistributionStatus {
|
|
|
30740
30992
|
Development = "DEVELOPMENT",
|
|
30741
30993
|
Public = "PUBLIC"
|
|
30742
30994
|
}
|
|
30995
|
+
export declare type DlpDetectorClassificationMappingListResponse = {
|
|
30996
|
+
__typename?: 'DlpDetectorClassificationMappingListResponse';
|
|
30997
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
30998
|
+
detectorClassificationMappingResponseList?: Maybe<Array<Maybe<DlpDetectorClassificationMappingResponse>>>;
|
|
30999
|
+
};
|
|
31000
|
+
export declare type DlpDetectorClassificationMappingRequestInput = {
|
|
31001
|
+
classificationAri?: InputMaybe<Scalars['String']['input']>;
|
|
31002
|
+
detectorId?: InputMaybe<Scalars['String']['input']>;
|
|
31003
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
31004
|
+
status?: InputMaybe<DlpMappingStatus>;
|
|
31005
|
+
};
|
|
31006
|
+
export declare type DlpDetectorClassificationMappingResponse = {
|
|
31007
|
+
__typename?: 'DlpDetectorClassificationMappingResponse';
|
|
31008
|
+
changedBy?: Maybe<Scalars['String']['output']>;
|
|
31009
|
+
changedOn?: Maybe<Scalars['String']['output']>;
|
|
31010
|
+
classificationAri?: Maybe<Scalars['String']['output']>;
|
|
31011
|
+
createdBy?: Maybe<Scalars['String']['output']>;
|
|
31012
|
+
createdOn?: Maybe<Scalars['String']['output']>;
|
|
31013
|
+
detectorId?: Maybe<Scalars['String']['output']>;
|
|
31014
|
+
orgId?: Maybe<Scalars['String']['output']>;
|
|
31015
|
+
status?: Maybe<DlpMappingStatus>;
|
|
31016
|
+
};
|
|
31017
|
+
export declare enum DlpMappingStatus {
|
|
31018
|
+
Draft = "DRAFT",
|
|
31019
|
+
Published = "PUBLISHED"
|
|
31020
|
+
}
|
|
30743
31021
|
export declare type DocumentBody = {
|
|
30744
31022
|
__typename?: 'DocumentBody';
|
|
30745
31023
|
representation: DocumentRepresentation;
|
|
@@ -35931,6 +36209,7 @@ export declare type GraphIntegrationTwgCapabilityContainer = {
|
|
|
35931
36209
|
description: Scalars['String']['output'];
|
|
35932
36210
|
icon: Scalars['String']['output'];
|
|
35933
36211
|
id: Scalars['String']['output'];
|
|
36212
|
+
maxInstallations: Scalars['Int']['output'];
|
|
35934
36213
|
name: Scalars['String']['output'];
|
|
35935
36214
|
productAri: Scalars['ID']['output'];
|
|
35936
36215
|
};
|
|
@@ -35948,6 +36227,7 @@ export declare type GraphIntegrationTwgCapabilityContainerMeta = {
|
|
|
35948
36227
|
__typename?: 'GraphIntegrationTwgCapabilityContainerMeta';
|
|
35949
36228
|
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
35950
36229
|
icon: Scalars['String']['output'];
|
|
36230
|
+
maxInstallations: Scalars['Int']['output'];
|
|
35951
36231
|
name: Scalars['String']['output'];
|
|
35952
36232
|
productAri: Scalars['ID']['output'];
|
|
35953
36233
|
};
|
|
@@ -38693,6 +38973,12 @@ export declare type GraphStore = {
|
|
|
38693
38973
|
atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
38694
38974
|
atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
|
|
38695
38975
|
atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
|
|
38976
|
+
atlassianUserCreatedExternalCustomerContact?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactConnection>;
|
|
38977
|
+
atlassianUserCreatedExternalCustomerContactInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactInverseConnection>;
|
|
38978
|
+
atlassianUserCreatedExternalCustomerOrgCategory?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryConnection>;
|
|
38979
|
+
atlassianUserCreatedExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseConnection>;
|
|
38980
|
+
atlassianUserCreatedExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamConnection>;
|
|
38981
|
+
atlassianUserCreatedExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseConnection>;
|
|
38696
38982
|
atlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
38697
38983
|
atlassianUserDismissedJiraForYouRecommendationEntityBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
38698
38984
|
atlassianUserDismissedJiraForYouRecommendationEntityInverse?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection>;
|
|
@@ -38701,6 +38987,18 @@ export declare type GraphStore = {
|
|
|
38701
38987
|
atlassianUserInvitedToLoomMeetingBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
|
|
38702
38988
|
atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
38703
38989
|
atlassianUserInvitedToLoomMeetingInverseBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
|
|
38990
|
+
atlassianUserOwnsExternalCustomerContact?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactConnection>;
|
|
38991
|
+
atlassianUserOwnsExternalCustomerContactInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactInverseConnection>;
|
|
38992
|
+
atlassianUserOwnsExternalCustomerOrgCategory?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryConnection>;
|
|
38993
|
+
atlassianUserOwnsExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseConnection>;
|
|
38994
|
+
atlassianUserOwnsExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamConnection>;
|
|
38995
|
+
atlassianUserOwnsExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseConnection>;
|
|
38996
|
+
atlassianUserUpdatedExternalCustomerContact?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection>;
|
|
38997
|
+
atlassianUserUpdatedExternalCustomerContactInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseConnection>;
|
|
38998
|
+
atlassianUserUpdatedExternalCustomerOrgCategory?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryConnection>;
|
|
38999
|
+
atlassianUserUpdatedExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseConnection>;
|
|
39000
|
+
atlassianUserUpdatedExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamConnection>;
|
|
39001
|
+
atlassianUserUpdatedExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseConnection>;
|
|
38704
39002
|
boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
|
|
38705
39003
|
boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
|
|
38706
39004
|
branchInRepo?: Maybe<GraphStoreSimplifiedBranchInRepoConnection>;
|
|
@@ -38778,6 +39076,14 @@ export declare type GraphStore = {
|
|
|
38778
39076
|
deploymentContainsCommitInverse?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseConnection>;
|
|
38779
39077
|
dynamicRelationshipAssetToAsset?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToAssetConnection>;
|
|
38780
39078
|
dynamicRelationshipAssetToAssetInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToAssetInverseConnection>;
|
|
39079
|
+
dynamicRelationshipAssetToGroup?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToGroupConnection>;
|
|
39080
|
+
dynamicRelationshipAssetToGroupInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToGroupInverseConnection>;
|
|
39081
|
+
dynamicRelationshipAssetToProject?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToProjectConnection>;
|
|
39082
|
+
dynamicRelationshipAssetToProjectInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseConnection>;
|
|
39083
|
+
dynamicRelationshipAssetToRepo?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoConnection>;
|
|
39084
|
+
dynamicRelationshipAssetToRepoInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseConnection>;
|
|
39085
|
+
dynamicRelationshipAssetToUser?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserConnection>;
|
|
39086
|
+
dynamicRelationshipAssetToUserInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseConnection>;
|
|
38781
39087
|
entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
38782
39088
|
entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
|
|
38783
39089
|
externalOrgHasExternalPosition?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionConnection>;
|
|
@@ -38794,6 +39100,8 @@ export declare type GraphStore = {
|
|
|
38794
39100
|
externalPositionManagesExternalOrgInverse?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseConnection>;
|
|
38795
39101
|
externalPositionManagesExternalPosition?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionConnection>;
|
|
38796
39102
|
externalPositionManagesExternalPositionInverse?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseConnection>;
|
|
39103
|
+
externalTeamWorksOnJiraWorkItemWorklog?: Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogConnection>;
|
|
39104
|
+
externalTeamWorksOnJiraWorkItemWorklogInverse?: Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogInverseConnection>;
|
|
38797
39105
|
externalWorkerConflatesToIdentity3pUser?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserConnection>;
|
|
38798
39106
|
externalWorkerConflatesToIdentity3pUserInverse?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserInverseConnection>;
|
|
38799
39107
|
externalWorkerConflatesToUser?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToUserConnection>;
|
|
@@ -39944,6 +40252,54 @@ export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemInverseArgs = {
|
|
|
39944
40252
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
39945
40253
|
sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
|
|
39946
40254
|
};
|
|
40255
|
+
export declare type GraphStoreAtlassianUserCreatedExternalCustomerContactArgs = {
|
|
40256
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40257
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40258
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40259
|
+
id: Scalars['ID']['input'];
|
|
40260
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40261
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalCustomerContactSortInput>;
|
|
40262
|
+
};
|
|
40263
|
+
export declare type GraphStoreAtlassianUserCreatedExternalCustomerContactInverseArgs = {
|
|
40264
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40265
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40266
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40267
|
+
id: Scalars['ID']['input'];
|
|
40268
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40269
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalCustomerContactSortInput>;
|
|
40270
|
+
};
|
|
40271
|
+
export declare type GraphStoreAtlassianUserCreatedExternalCustomerOrgCategoryArgs = {
|
|
40272
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40273
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40274
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40275
|
+
id: Scalars['ID']['input'];
|
|
40276
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40277
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalCustomerOrgCategorySortInput>;
|
|
40278
|
+
};
|
|
40279
|
+
export declare type GraphStoreAtlassianUserCreatedExternalCustomerOrgCategoryInverseArgs = {
|
|
40280
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40281
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40282
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40283
|
+
id: Scalars['ID']['input'];
|
|
40284
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40285
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalCustomerOrgCategorySortInput>;
|
|
40286
|
+
};
|
|
40287
|
+
export declare type GraphStoreAtlassianUserCreatedExternalTeamArgs = {
|
|
40288
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40289
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40290
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40291
|
+
id: Scalars['ID']['input'];
|
|
40292
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40293
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalTeamSortInput>;
|
|
40294
|
+
};
|
|
40295
|
+
export declare type GraphStoreAtlassianUserCreatedExternalTeamInverseArgs = {
|
|
40296
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40297
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40298
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40299
|
+
id: Scalars['ID']['input'];
|
|
40300
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40301
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalTeamSortInput>;
|
|
40302
|
+
};
|
|
39947
40303
|
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
39948
40304
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39949
40305
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40008,6 +40364,102 @@ export declare type GraphStoreAtlassianUserInvitedToLoomMeetingInverseBatchArgs
|
|
|
40008
40364
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40009
40365
|
sort?: InputMaybe<GraphStoreAtlassianUserInvitedToLoomMeetingSortInput>;
|
|
40010
40366
|
};
|
|
40367
|
+
export declare type GraphStoreAtlassianUserOwnsExternalCustomerContactArgs = {
|
|
40368
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40369
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40370
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40371
|
+
id: Scalars['ID']['input'];
|
|
40372
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40373
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalCustomerContactSortInput>;
|
|
40374
|
+
};
|
|
40375
|
+
export declare type GraphStoreAtlassianUserOwnsExternalCustomerContactInverseArgs = {
|
|
40376
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40377
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40378
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40379
|
+
id: Scalars['ID']['input'];
|
|
40380
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40381
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalCustomerContactSortInput>;
|
|
40382
|
+
};
|
|
40383
|
+
export declare type GraphStoreAtlassianUserOwnsExternalCustomerOrgCategoryArgs = {
|
|
40384
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40385
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40386
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40387
|
+
id: Scalars['ID']['input'];
|
|
40388
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40389
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalCustomerOrgCategorySortInput>;
|
|
40390
|
+
};
|
|
40391
|
+
export declare type GraphStoreAtlassianUserOwnsExternalCustomerOrgCategoryInverseArgs = {
|
|
40392
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40393
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40394
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40395
|
+
id: Scalars['ID']['input'];
|
|
40396
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40397
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalCustomerOrgCategorySortInput>;
|
|
40398
|
+
};
|
|
40399
|
+
export declare type GraphStoreAtlassianUserOwnsExternalTeamArgs = {
|
|
40400
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40401
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40402
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40403
|
+
id: Scalars['ID']['input'];
|
|
40404
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40405
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTeamSortInput>;
|
|
40406
|
+
};
|
|
40407
|
+
export declare type GraphStoreAtlassianUserOwnsExternalTeamInverseArgs = {
|
|
40408
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40409
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40410
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40411
|
+
id: Scalars['ID']['input'];
|
|
40412
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40413
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTeamSortInput>;
|
|
40414
|
+
};
|
|
40415
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerContactArgs = {
|
|
40416
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40417
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40418
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40419
|
+
id: Scalars['ID']['input'];
|
|
40420
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40421
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalCustomerContactSortInput>;
|
|
40422
|
+
};
|
|
40423
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerContactInverseArgs = {
|
|
40424
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40425
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40426
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40427
|
+
id: Scalars['ID']['input'];
|
|
40428
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40429
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalCustomerContactSortInput>;
|
|
40430
|
+
};
|
|
40431
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerOrgCategoryArgs = {
|
|
40432
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40433
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40434
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40435
|
+
id: Scalars['ID']['input'];
|
|
40436
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40437
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalCustomerOrgCategorySortInput>;
|
|
40438
|
+
};
|
|
40439
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerOrgCategoryInverseArgs = {
|
|
40440
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40441
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40442
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40443
|
+
id: Scalars['ID']['input'];
|
|
40444
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40445
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalCustomerOrgCategorySortInput>;
|
|
40446
|
+
};
|
|
40447
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalTeamArgs = {
|
|
40448
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40449
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40450
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40451
|
+
id: Scalars['ID']['input'];
|
|
40452
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40453
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalTeamSortInput>;
|
|
40454
|
+
};
|
|
40455
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalTeamInverseArgs = {
|
|
40456
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40457
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40458
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40459
|
+
id: Scalars['ID']['input'];
|
|
40460
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40461
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalTeamSortInput>;
|
|
40462
|
+
};
|
|
40011
40463
|
export declare type GraphStoreBoardBelongsToProjectArgs = {
|
|
40012
40464
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40013
40465
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40601,6 +41053,70 @@ export declare type GraphStoreDynamicRelationshipAssetToAssetInverseArgs = {
|
|
|
40601
41053
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40602
41054
|
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToAssetSortInput>;
|
|
40603
41055
|
};
|
|
41056
|
+
export declare type GraphStoreDynamicRelationshipAssetToGroupArgs = {
|
|
41057
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41058
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41059
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41060
|
+
id: Scalars['ID']['input'];
|
|
41061
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41062
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToGroupSortInput>;
|
|
41063
|
+
};
|
|
41064
|
+
export declare type GraphStoreDynamicRelationshipAssetToGroupInverseArgs = {
|
|
41065
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41066
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41067
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41068
|
+
id: Scalars['ID']['input'];
|
|
41069
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41070
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToGroupSortInput>;
|
|
41071
|
+
};
|
|
41072
|
+
export declare type GraphStoreDynamicRelationshipAssetToProjectArgs = {
|
|
41073
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41074
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41075
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41076
|
+
id: Scalars['ID']['input'];
|
|
41077
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41078
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToProjectSortInput>;
|
|
41079
|
+
};
|
|
41080
|
+
export declare type GraphStoreDynamicRelationshipAssetToProjectInverseArgs = {
|
|
41081
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41082
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41083
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41084
|
+
id: Scalars['ID']['input'];
|
|
41085
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41086
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToProjectSortInput>;
|
|
41087
|
+
};
|
|
41088
|
+
export declare type GraphStoreDynamicRelationshipAssetToRepoArgs = {
|
|
41089
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41090
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41091
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41092
|
+
id: Scalars['ID']['input'];
|
|
41093
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41094
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToRepoSortInput>;
|
|
41095
|
+
};
|
|
41096
|
+
export declare type GraphStoreDynamicRelationshipAssetToRepoInverseArgs = {
|
|
41097
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41098
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41099
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41100
|
+
id: Scalars['ID']['input'];
|
|
41101
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41102
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToRepoSortInput>;
|
|
41103
|
+
};
|
|
41104
|
+
export declare type GraphStoreDynamicRelationshipAssetToUserArgs = {
|
|
41105
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41106
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41107
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41108
|
+
id: Scalars['ID']['input'];
|
|
41109
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41110
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToUserSortInput>;
|
|
41111
|
+
};
|
|
41112
|
+
export declare type GraphStoreDynamicRelationshipAssetToUserInverseArgs = {
|
|
41113
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41114
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41115
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41116
|
+
id: Scalars['ID']['input'];
|
|
41117
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41118
|
+
sort?: InputMaybe<GraphStoreDynamicRelationshipAssetToUserSortInput>;
|
|
41119
|
+
};
|
|
40604
41120
|
export declare type GraphStoreEntityIsRelatedToEntityArgs = {
|
|
40605
41121
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40606
41122
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40729,6 +41245,22 @@ export declare type GraphStoreExternalPositionManagesExternalPositionInverseArgs
|
|
|
40729
41245
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40730
41246
|
sort?: InputMaybe<GraphStoreExternalPositionManagesExternalPositionSortInput>;
|
|
40731
41247
|
};
|
|
41248
|
+
export declare type GraphStoreExternalTeamWorksOnJiraWorkItemWorklogArgs = {
|
|
41249
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41250
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41251
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41252
|
+
id: Scalars['ID']['input'];
|
|
41253
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41254
|
+
sort?: InputMaybe<GraphStoreExternalTeamWorksOnJiraWorkItemWorklogSortInput>;
|
|
41255
|
+
};
|
|
41256
|
+
export declare type GraphStoreExternalTeamWorksOnJiraWorkItemWorklogInverseArgs = {
|
|
41257
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41258
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41259
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41260
|
+
id: Scalars['ID']['input'];
|
|
41261
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41262
|
+
sort?: InputMaybe<GraphStoreExternalTeamWorksOnJiraWorkItemWorklogSortInput>;
|
|
41263
|
+
};
|
|
40732
41264
|
export declare type GraphStoreExternalWorkerConflatesToIdentity3pUserArgs = {
|
|
40733
41265
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40734
41266
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -46483,6 +47015,15 @@ export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput = {
|
|
|
46483
47015
|
export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput = {
|
|
46484
47016
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46485
47017
|
};
|
|
47018
|
+
export declare type GraphStoreAtlassianUserCreatedExternalCustomerContactSortInput = {
|
|
47019
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47020
|
+
};
|
|
47021
|
+
export declare type GraphStoreAtlassianUserCreatedExternalCustomerOrgCategorySortInput = {
|
|
47022
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47023
|
+
};
|
|
47024
|
+
export declare type GraphStoreAtlassianUserCreatedExternalTeamSortInput = {
|
|
47025
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47026
|
+
};
|
|
46486
47027
|
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput = {
|
|
46487
47028
|
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>>>;
|
|
46488
47029
|
category?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryFilterInput>;
|
|
@@ -46533,6 +47074,24 @@ export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEnti
|
|
|
46533
47074
|
export declare type GraphStoreAtlassianUserInvitedToLoomMeetingSortInput = {
|
|
46534
47075
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46535
47076
|
};
|
|
47077
|
+
export declare type GraphStoreAtlassianUserOwnsExternalCustomerContactSortInput = {
|
|
47078
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47079
|
+
};
|
|
47080
|
+
export declare type GraphStoreAtlassianUserOwnsExternalCustomerOrgCategorySortInput = {
|
|
47081
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47082
|
+
};
|
|
47083
|
+
export declare type GraphStoreAtlassianUserOwnsExternalTeamSortInput = {
|
|
47084
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47085
|
+
};
|
|
47086
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerContactSortInput = {
|
|
47087
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47088
|
+
};
|
|
47089
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerOrgCategorySortInput = {
|
|
47090
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47091
|
+
};
|
|
47092
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalTeamSortInput = {
|
|
47093
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47094
|
+
};
|
|
46536
47095
|
export declare type GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection = HasPageInfo & {
|
|
46537
47096
|
__typename?: 'GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection';
|
|
46538
47097
|
edges: Array<Maybe<GraphStoreBatchAtlasGoalHasJiraAlignProjectEdge>>;
|
|
@@ -46753,7 +47312,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
46753
47312
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
46754
47313
|
id: Scalars['ID']['output'];
|
|
46755
47314
|
};
|
|
46756
|
-
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
47315
|
+
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
46757
47316
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
46758
47317
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
46759
47318
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -46778,7 +47337,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
46778
47337
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
46779
47338
|
id: Scalars['ID']['output'];
|
|
46780
47339
|
};
|
|
46781
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
47340
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
46782
47341
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
46783
47342
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
46784
47343
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -48547,7 +49106,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
48547
49106
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
48548
49107
|
id: Scalars['ID']['output'];
|
|
48549
49108
|
};
|
|
48550
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
49109
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
48551
49110
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
48552
49111
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
48553
49112
|
value: Scalars['String']['output'];
|
|
@@ -48561,13 +49120,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
48561
49120
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
48562
49121
|
id: Scalars['ID']['output'];
|
|
48563
49122
|
};
|
|
48564
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
49123
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
48565
49124
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
48566
49125
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
48567
49126
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
48568
49127
|
id: Scalars['ID']['output'];
|
|
48569
49128
|
};
|
|
48570
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
49129
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
48571
49130
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
48572
49131
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
48573
49132
|
value: Scalars['Boolean']['output'];
|
|
@@ -48680,7 +49239,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
48680
49239
|
V2 = "V2",
|
|
48681
49240
|
V3 = "V3"
|
|
48682
49241
|
}
|
|
48683
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
49242
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
48684
49243
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
48685
49244
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
48686
49245
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -49131,6 +49690,18 @@ export declare type GraphStoreDeploymentContainsCommitSortInput = {
|
|
|
49131
49690
|
export declare type GraphStoreDynamicRelationshipAssetToAssetSortInput = {
|
|
49132
49691
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49133
49692
|
};
|
|
49693
|
+
export declare type GraphStoreDynamicRelationshipAssetToGroupSortInput = {
|
|
49694
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49695
|
+
};
|
|
49696
|
+
export declare type GraphStoreDynamicRelationshipAssetToProjectSortInput = {
|
|
49697
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49698
|
+
};
|
|
49699
|
+
export declare type GraphStoreDynamicRelationshipAssetToRepoSortInput = {
|
|
49700
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49701
|
+
};
|
|
49702
|
+
export declare type GraphStoreDynamicRelationshipAssetToUserSortInput = {
|
|
49703
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49704
|
+
};
|
|
49134
49705
|
export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
49135
49706
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49136
49707
|
};
|
|
@@ -49161,6 +49732,9 @@ export declare type GraphStoreExternalPositionManagesExternalOrgSortInput = {
|
|
|
49161
49732
|
export declare type GraphStoreExternalPositionManagesExternalPositionSortInput = {
|
|
49162
49733
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49163
49734
|
};
|
|
49735
|
+
export declare type GraphStoreExternalTeamWorksOnJiraWorkItemWorklogSortInput = {
|
|
49736
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49737
|
+
};
|
|
49164
49738
|
export declare type GraphStoreExternalWorkerConflatesToIdentity3pUserSortInput = {
|
|
49165
49739
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49166
49740
|
};
|
|
@@ -49459,7 +50033,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
49459
50033
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
49460
50034
|
id: Scalars['ID']['output'];
|
|
49461
50035
|
};
|
|
49462
|
-
export declare type GraphStoreFullContentReferencedEntityEndUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
50036
|
+
export declare type GraphStoreFullContentReferencedEntityEndUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
49463
50037
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
49464
50038
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
49465
50039
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -49473,7 +50047,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
49473
50047
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
49474
50048
|
id: Scalars['ID']['output'];
|
|
49475
50049
|
};
|
|
49476
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
50050
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
49477
50051
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
49478
50052
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
49479
50053
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -54562,6 +55136,90 @@ export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverse
|
|
|
54562
55136
|
};
|
|
54563
55137
|
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseUnion = TownsquareProject;
|
|
54564
55138
|
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemUnion = JiraIssue;
|
|
55139
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactConnection = HasPageInfo & {
|
|
55140
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactConnection';
|
|
55141
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactEdge>>>;
|
|
55142
|
+
pageInfo: PageInfo;
|
|
55143
|
+
};
|
|
55144
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactEdge = {
|
|
55145
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactEdge';
|
|
55146
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55147
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55148
|
+
id: Scalars['ID']['output'];
|
|
55149
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55150
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactUnion>;
|
|
55151
|
+
};
|
|
55152
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactInverseConnection = HasPageInfo & {
|
|
55153
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactInverseConnection';
|
|
55154
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactInverseEdge>>>;
|
|
55155
|
+
pageInfo: PageInfo;
|
|
55156
|
+
};
|
|
55157
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactInverseEdge = {
|
|
55158
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactInverseEdge';
|
|
55159
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55160
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55161
|
+
id: Scalars['ID']['output'];
|
|
55162
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55163
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactInverseUnion>;
|
|
55164
|
+
};
|
|
55165
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55166
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactUnion = ExternalCustomerContact;
|
|
55167
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryConnection = HasPageInfo & {
|
|
55168
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryConnection';
|
|
55169
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryEdge>>>;
|
|
55170
|
+
pageInfo: PageInfo;
|
|
55171
|
+
};
|
|
55172
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryEdge = {
|
|
55173
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryEdge';
|
|
55174
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55175
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55176
|
+
id: Scalars['ID']['output'];
|
|
55177
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55178
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryUnion>;
|
|
55179
|
+
};
|
|
55180
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseConnection = HasPageInfo & {
|
|
55181
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseConnection';
|
|
55182
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseEdge>>>;
|
|
55183
|
+
pageInfo: PageInfo;
|
|
55184
|
+
};
|
|
55185
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseEdge = {
|
|
55186
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseEdge';
|
|
55187
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55188
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55189
|
+
id: Scalars['ID']['output'];
|
|
55190
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55191
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseUnion>;
|
|
55192
|
+
};
|
|
55193
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55194
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryUnion = ExternalCustomerOrgCategory;
|
|
55195
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTeamConnection = HasPageInfo & {
|
|
55196
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTeamConnection';
|
|
55197
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamEdge>>>;
|
|
55198
|
+
pageInfo: PageInfo;
|
|
55199
|
+
};
|
|
55200
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTeamEdge = {
|
|
55201
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTeamEdge';
|
|
55202
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55203
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55204
|
+
id: Scalars['ID']['output'];
|
|
55205
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55206
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamUnion>;
|
|
55207
|
+
};
|
|
55208
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseConnection = HasPageInfo & {
|
|
55209
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseConnection';
|
|
55210
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseEdge>>>;
|
|
55211
|
+
pageInfo: PageInfo;
|
|
55212
|
+
};
|
|
55213
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseEdge = {
|
|
55214
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseEdge';
|
|
55215
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55216
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55217
|
+
id: Scalars['ID']['output'];
|
|
55218
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55219
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseUnion>;
|
|
55220
|
+
};
|
|
55221
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55222
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTeamUnion = ExternalTeam;
|
|
54565
55223
|
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection = HasPageInfo & HasTotal & {
|
|
54566
55224
|
__typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection';
|
|
54567
55225
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge>>>;
|
|
@@ -54622,6 +55280,174 @@ export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverse
|
|
|
54622
55280
|
};
|
|
54623
55281
|
export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
54624
55282
|
export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingUnion = LoomMeeting;
|
|
55283
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactConnection = HasPageInfo & {
|
|
55284
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactConnection';
|
|
55285
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactEdge>>>;
|
|
55286
|
+
pageInfo: PageInfo;
|
|
55287
|
+
};
|
|
55288
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactEdge = {
|
|
55289
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactEdge';
|
|
55290
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55291
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55292
|
+
id: Scalars['ID']['output'];
|
|
55293
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55294
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactUnion>;
|
|
55295
|
+
};
|
|
55296
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactInverseConnection = HasPageInfo & {
|
|
55297
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactInverseConnection';
|
|
55298
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactInverseEdge>>>;
|
|
55299
|
+
pageInfo: PageInfo;
|
|
55300
|
+
};
|
|
55301
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactInverseEdge = {
|
|
55302
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactInverseEdge';
|
|
55303
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55304
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55305
|
+
id: Scalars['ID']['output'];
|
|
55306
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55307
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactInverseUnion>;
|
|
55308
|
+
};
|
|
55309
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55310
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerContactUnion = ExternalCustomerContact;
|
|
55311
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryConnection = HasPageInfo & {
|
|
55312
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryConnection';
|
|
55313
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryEdge>>>;
|
|
55314
|
+
pageInfo: PageInfo;
|
|
55315
|
+
};
|
|
55316
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryEdge = {
|
|
55317
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryEdge';
|
|
55318
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55319
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55320
|
+
id: Scalars['ID']['output'];
|
|
55321
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55322
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryUnion>;
|
|
55323
|
+
};
|
|
55324
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseConnection = HasPageInfo & {
|
|
55325
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseConnection';
|
|
55326
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseEdge>>>;
|
|
55327
|
+
pageInfo: PageInfo;
|
|
55328
|
+
};
|
|
55329
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseEdge = {
|
|
55330
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseEdge';
|
|
55331
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55332
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55333
|
+
id: Scalars['ID']['output'];
|
|
55334
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55335
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseUnion>;
|
|
55336
|
+
};
|
|
55337
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55338
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryUnion = ExternalCustomerOrgCategory;
|
|
55339
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTeamConnection = HasPageInfo & {
|
|
55340
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTeamConnection';
|
|
55341
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamEdge>>>;
|
|
55342
|
+
pageInfo: PageInfo;
|
|
55343
|
+
};
|
|
55344
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTeamEdge = {
|
|
55345
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTeamEdge';
|
|
55346
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55347
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55348
|
+
id: Scalars['ID']['output'];
|
|
55349
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55350
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamUnion>;
|
|
55351
|
+
};
|
|
55352
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseConnection = HasPageInfo & {
|
|
55353
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseConnection';
|
|
55354
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseEdge>>>;
|
|
55355
|
+
pageInfo: PageInfo;
|
|
55356
|
+
};
|
|
55357
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseEdge = {
|
|
55358
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseEdge';
|
|
55359
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55360
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55361
|
+
id: Scalars['ID']['output'];
|
|
55362
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55363
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseUnion>;
|
|
55364
|
+
};
|
|
55365
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55366
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTeamUnion = ExternalTeam;
|
|
55367
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection = HasPageInfo & {
|
|
55368
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection';
|
|
55369
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactEdge>>>;
|
|
55370
|
+
pageInfo: PageInfo;
|
|
55371
|
+
};
|
|
55372
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactEdge = {
|
|
55373
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactEdge';
|
|
55374
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55375
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55376
|
+
id: Scalars['ID']['output'];
|
|
55377
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55378
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactUnion>;
|
|
55379
|
+
};
|
|
55380
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseConnection = HasPageInfo & {
|
|
55381
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseConnection';
|
|
55382
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseEdge>>>;
|
|
55383
|
+
pageInfo: PageInfo;
|
|
55384
|
+
};
|
|
55385
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseEdge = {
|
|
55386
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseEdge';
|
|
55387
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55388
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55389
|
+
id: Scalars['ID']['output'];
|
|
55390
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55391
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseUnion>;
|
|
55392
|
+
};
|
|
55393
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55394
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactUnion = ExternalCustomerContact;
|
|
55395
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryConnection = HasPageInfo & {
|
|
55396
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryConnection';
|
|
55397
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryEdge>>>;
|
|
55398
|
+
pageInfo: PageInfo;
|
|
55399
|
+
};
|
|
55400
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryEdge = {
|
|
55401
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryEdge';
|
|
55402
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55403
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55404
|
+
id: Scalars['ID']['output'];
|
|
55405
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55406
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryUnion>;
|
|
55407
|
+
};
|
|
55408
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseConnection = HasPageInfo & {
|
|
55409
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseConnection';
|
|
55410
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseEdge>>>;
|
|
55411
|
+
pageInfo: PageInfo;
|
|
55412
|
+
};
|
|
55413
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseEdge = {
|
|
55414
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseEdge';
|
|
55415
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55416
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55417
|
+
id: Scalars['ID']['output'];
|
|
55418
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55419
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseUnion>;
|
|
55420
|
+
};
|
|
55421
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55422
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryUnion = ExternalCustomerOrgCategory;
|
|
55423
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamConnection = HasPageInfo & {
|
|
55424
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamConnection';
|
|
55425
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamEdge>>>;
|
|
55426
|
+
pageInfo: PageInfo;
|
|
55427
|
+
};
|
|
55428
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamEdge = {
|
|
55429
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamEdge';
|
|
55430
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55431
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55432
|
+
id: Scalars['ID']['output'];
|
|
55433
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55434
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamUnion>;
|
|
55435
|
+
};
|
|
55436
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseConnection = HasPageInfo & {
|
|
55437
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseConnection';
|
|
55438
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseEdge>>>;
|
|
55439
|
+
pageInfo: PageInfo;
|
|
55440
|
+
};
|
|
55441
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseEdge = {
|
|
55442
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseEdge';
|
|
55443
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55444
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55445
|
+
id: Scalars['ID']['output'];
|
|
55446
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55447
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseUnion>;
|
|
55448
|
+
};
|
|
55449
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55450
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamUnion = ExternalTeam;
|
|
54625
55451
|
export declare type GraphStoreSimplifiedBoardBelongsToProjectConnection = HasPageInfo & {
|
|
54626
55452
|
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectConnection';
|
|
54627
55453
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectEdge>>>;
|
|
@@ -55296,8 +56122,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
55296
56122
|
lastUpdated: Scalars['DateTime']['output'];
|
|
55297
56123
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
55298
56124
|
};
|
|
55299
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
55300
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
56125
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
56126
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
55301
56127
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
55302
56128
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
55303
56129
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
@@ -55494,6 +56320,118 @@ export declare type GraphStoreSimplifiedDynamicRelationshipAssetToAssetInverseEd
|
|
|
55494
56320
|
};
|
|
55495
56321
|
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToAssetInverseUnion = AssetsObject;
|
|
55496
56322
|
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToAssetUnion = AssetsObject;
|
|
56323
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToGroupConnection = HasPageInfo & {
|
|
56324
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToGroupConnection';
|
|
56325
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToGroupEdge>>>;
|
|
56326
|
+
pageInfo: PageInfo;
|
|
56327
|
+
};
|
|
56328
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToGroupEdge = {
|
|
56329
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToGroupEdge';
|
|
56330
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56331
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56332
|
+
id: Scalars['ID']['output'];
|
|
56333
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56334
|
+
node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToGroupUnion>;
|
|
56335
|
+
};
|
|
56336
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToGroupInverseConnection = HasPageInfo & {
|
|
56337
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToGroupInverseConnection';
|
|
56338
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToGroupInverseEdge>>>;
|
|
56339
|
+
pageInfo: PageInfo;
|
|
56340
|
+
};
|
|
56341
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToGroupInverseEdge = {
|
|
56342
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToGroupInverseEdge';
|
|
56343
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56344
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56345
|
+
id: Scalars['ID']['output'];
|
|
56346
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56347
|
+
node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToGroupInverseUnion>;
|
|
56348
|
+
};
|
|
56349
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToGroupInverseUnion = AssetsObject;
|
|
56350
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToGroupUnion = IdentityGroup;
|
|
56351
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToProjectConnection = HasPageInfo & {
|
|
56352
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToProjectConnection';
|
|
56353
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToProjectEdge>>>;
|
|
56354
|
+
pageInfo: PageInfo;
|
|
56355
|
+
};
|
|
56356
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToProjectEdge = {
|
|
56357
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToProjectEdge';
|
|
56358
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56359
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56360
|
+
id: Scalars['ID']['output'];
|
|
56361
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56362
|
+
node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToProjectUnion>;
|
|
56363
|
+
};
|
|
56364
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseConnection = HasPageInfo & {
|
|
56365
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseConnection';
|
|
56366
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseEdge>>>;
|
|
56367
|
+
pageInfo: PageInfo;
|
|
56368
|
+
};
|
|
56369
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseEdge = {
|
|
56370
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseEdge';
|
|
56371
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56372
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56373
|
+
id: Scalars['ID']['output'];
|
|
56374
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56375
|
+
node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseUnion>;
|
|
56376
|
+
};
|
|
56377
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToProjectInverseUnion = AssetsObject;
|
|
56378
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToProjectUnion = JiraProject;
|
|
56379
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToRepoConnection = HasPageInfo & {
|
|
56380
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToRepoConnection';
|
|
56381
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoEdge>>>;
|
|
56382
|
+
pageInfo: PageInfo;
|
|
56383
|
+
};
|
|
56384
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToRepoEdge = {
|
|
56385
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToRepoEdge';
|
|
56386
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56387
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56388
|
+
id: Scalars['ID']['output'];
|
|
56389
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56390
|
+
node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoUnion>;
|
|
56391
|
+
};
|
|
56392
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseConnection = HasPageInfo & {
|
|
56393
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseConnection';
|
|
56394
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseEdge>>>;
|
|
56395
|
+
pageInfo: PageInfo;
|
|
56396
|
+
};
|
|
56397
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseEdge = {
|
|
56398
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseEdge';
|
|
56399
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56400
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56401
|
+
id: Scalars['ID']['output'];
|
|
56402
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56403
|
+
node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseUnion>;
|
|
56404
|
+
};
|
|
56405
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToRepoInverseUnion = AssetsObject;
|
|
56406
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToRepoUnion = BitbucketRepository;
|
|
56407
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToUserConnection = HasPageInfo & {
|
|
56408
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToUserConnection';
|
|
56409
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserEdge>>>;
|
|
56410
|
+
pageInfo: PageInfo;
|
|
56411
|
+
};
|
|
56412
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToUserEdge = {
|
|
56413
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToUserEdge';
|
|
56414
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56415
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56416
|
+
id: Scalars['ID']['output'];
|
|
56417
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56418
|
+
node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserUnion>;
|
|
56419
|
+
};
|
|
56420
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseConnection = HasPageInfo & {
|
|
56421
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseConnection';
|
|
56422
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseEdge>>>;
|
|
56423
|
+
pageInfo: PageInfo;
|
|
56424
|
+
};
|
|
56425
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseEdge = {
|
|
56426
|
+
__typename?: 'GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseEdge';
|
|
56427
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56428
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56429
|
+
id: Scalars['ID']['output'];
|
|
56430
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56431
|
+
node?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseUnion>;
|
|
56432
|
+
};
|
|
56433
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseUnion = AssetsObject;
|
|
56434
|
+
export declare type GraphStoreSimplifiedDynamicRelationshipAssetToUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
55497
56435
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityConnection = HasPageInfo & {
|
|
55498
56436
|
__typename?: 'GraphStoreSimplifiedEntityIsRelatedToEntityConnection';
|
|
55499
56437
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityEdge>>>;
|
|
@@ -55726,6 +56664,34 @@ export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionI
|
|
|
55726
56664
|
};
|
|
55727
56665
|
export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseUnion = ExternalPosition;
|
|
55728
56666
|
export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionUnion = ExternalPosition;
|
|
56667
|
+
export declare type GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogConnection = HasPageInfo & {
|
|
56668
|
+
__typename?: 'GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogConnection';
|
|
56669
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogEdge>>>;
|
|
56670
|
+
pageInfo: PageInfo;
|
|
56671
|
+
};
|
|
56672
|
+
export declare type GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogEdge = {
|
|
56673
|
+
__typename?: 'GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogEdge';
|
|
56674
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56675
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56676
|
+
id: Scalars['ID']['output'];
|
|
56677
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56678
|
+
node?: Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogUnion>;
|
|
56679
|
+
};
|
|
56680
|
+
export declare type GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogInverseConnection = HasPageInfo & {
|
|
56681
|
+
__typename?: 'GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogInverseConnection';
|
|
56682
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogInverseEdge>>>;
|
|
56683
|
+
pageInfo: PageInfo;
|
|
56684
|
+
};
|
|
56685
|
+
export declare type GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogInverseEdge = {
|
|
56686
|
+
__typename?: 'GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogInverseEdge';
|
|
56687
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56688
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56689
|
+
id: Scalars['ID']['output'];
|
|
56690
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56691
|
+
node?: Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogInverseUnion>;
|
|
56692
|
+
};
|
|
56693
|
+
export declare type GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogInverseUnion = ExternalTeam;
|
|
56694
|
+
export declare type GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogUnion = JiraWorklog;
|
|
55729
56695
|
export declare type GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserConnection = HasPageInfo & {
|
|
55730
56696
|
__typename?: 'GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserConnection';
|
|
55731
56697
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserEdge>>>;
|
|
@@ -68988,7 +69954,7 @@ export declare type GraphStoreV2CypherQueryV2AriNode = {
|
|
|
68988
69954
|
data?: Maybe<GraphStoreV2CypherQueryV2AriNodeUnion>;
|
|
68989
69955
|
id: Scalars['ID']['output'];
|
|
68990
69956
|
};
|
|
68991
|
-
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
69957
|
+
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
68992
69958
|
export declare type GraphStoreV2CypherQueryV2BooleanObject = {
|
|
68993
69959
|
__typename?: 'GraphStoreV2CypherQueryV2BooleanObject';
|
|
68994
69960
|
value: Scalars['Boolean']['output'];
|
|
@@ -74203,8 +75169,8 @@ export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseEdge =
|
|
|
74203
75169
|
lastUpdated: Scalars['DateTime']['output'];
|
|
74204
75170
|
node?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion>;
|
|
74205
75171
|
};
|
|
74206
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
74207
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
75172
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
75173
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
74208
75174
|
export declare type GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationConnection = HasPageInfo & {
|
|
74209
75175
|
__typename?: 'GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationConnection';
|
|
74210
75176
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationEdge>>>;
|
|
@@ -78814,6 +79780,7 @@ export declare enum GrowthUnifiedProfileTrialTrigger {
|
|
|
78814
79780
|
AutoUpgradeUserLimit = "AUTO_UPGRADE_USER_LIMIT",
|
|
78815
79781
|
CrossflowUserLimit = "CROSSFLOW_USER_LIMIT",
|
|
78816
79782
|
EditionParity = "EDITION_PARITY",
|
|
79783
|
+
EditionParityAutoProvisioning = "EDITION_PARITY_AUTO_PROVISIONING",
|
|
78817
79784
|
Reactivation = "REACTIVATION",
|
|
78818
79785
|
ReverseTrial = "REVERSE_TRIAL",
|
|
78819
79786
|
Ui = "UI"
|
|
@@ -86081,6 +87048,16 @@ export declare type JiraCreateBoardViewStatusColumnPayload = Payload & {
|
|
|
86081
87048
|
errors?: Maybe<Array<MutationError>>;
|
|
86082
87049
|
success: Scalars['Boolean']['output'];
|
|
86083
87050
|
};
|
|
87051
|
+
export declare type JiraCreateBoardViewsForWorkflowsInput = {
|
|
87052
|
+
viewId: Scalars['ID']['input'];
|
|
87053
|
+
workflowIds: Array<Scalars['ID']['input']>;
|
|
87054
|
+
};
|
|
87055
|
+
export declare type JiraCreateBoardViewsForWorkflowsPayload = Payload & {
|
|
87056
|
+
__typename?: 'JiraCreateBoardViewsForWorkflowsPayload';
|
|
87057
|
+
containerNavigation?: Maybe<JiraContainerNavigationResult>;
|
|
87058
|
+
errors?: Maybe<Array<MutationError>>;
|
|
87059
|
+
success: Scalars['Boolean']['output'];
|
|
87060
|
+
};
|
|
86084
87061
|
export declare type JiraCreateCalendarIssuePayload = Payload & {
|
|
86085
87062
|
__typename?: 'JiraCreateCalendarIssuePayload';
|
|
86086
87063
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -88614,7 +89591,7 @@ export declare type JiraFormulaFieldFunctionInfo = {
|
|
|
88614
89591
|
};
|
|
88615
89592
|
export declare type JiraFormulaFieldIssuePreview = {
|
|
88616
89593
|
__typename?: 'JiraFormulaFieldIssuePreview';
|
|
88617
|
-
missingFields?: Maybe<Array<
|
|
89594
|
+
missingFields?: Maybe<Array<JiraFormulaReferencedField>>;
|
|
88618
89595
|
parseErrors?: Maybe<Array<JiraFormulaFieldParseError>>;
|
|
88619
89596
|
value?: Maybe<JiraFormulaFieldValue>;
|
|
88620
89597
|
};
|
|
@@ -91847,6 +92824,15 @@ export declare enum JiraJourneyTriggerType {
|
|
|
91847
92824
|
ParentIssueCreated = "PARENT_ISSUE_CREATED",
|
|
91848
92825
|
WorkdayIntegrationTriggered = "WORKDAY_INTEGRATION_TRIGGERED"
|
|
91849
92826
|
}
|
|
92827
|
+
export declare type JiraJourneyTypeCreatedEventPayload = {
|
|
92828
|
+
__typename?: 'JiraJourneyTypeCreatedEventPayload';
|
|
92829
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92830
|
+
createdBy?: Maybe<User>;
|
|
92831
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
92832
|
+
journeyTypeId: Scalars['ID']['output'];
|
|
92833
|
+
projectId: Scalars['Long']['output'];
|
|
92834
|
+
version?: Maybe<Scalars['Long']['output']>;
|
|
92835
|
+
};
|
|
91850
92836
|
export declare type JiraJourneyTypeUpdatedEventPayload = {
|
|
91851
92837
|
__typename?: 'JiraJourneyTypeUpdatedEventPayload';
|
|
91852
92838
|
etag?: Maybe<Scalars['String']['output']>;
|
|
@@ -97457,6 +98443,7 @@ export declare type JiraQueryIssueSearchArgs = {
|
|
|
97457
98443
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97458
98444
|
issueSearchInput: JiraIssueSearchInput;
|
|
97459
98445
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
98446
|
+
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
97460
98447
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
97461
98448
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97462
98449
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
@@ -100066,6 +101053,7 @@ export declare type JiraServiceManagementRequestType = Node & {
|
|
|
100066
101053
|
__typename?: 'JiraServiceManagementRequestType';
|
|
100067
101054
|
avatar?: Maybe<JiraAvatar>;
|
|
100068
101055
|
description?: Maybe<Scalars['String']['output']>;
|
|
101056
|
+
displayLink?: Maybe<Scalars['String']['output']>;
|
|
100069
101057
|
helpText?: Maybe<Scalars['String']['output']>;
|
|
100070
101058
|
id: Scalars['ID']['output'];
|
|
100071
101059
|
issueType?: Maybe<JiraIssueType>;
|
|
@@ -101539,6 +102527,7 @@ export declare type JiraSubscription = {
|
|
|
101539
102527
|
onChildIssueAddedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
|
|
101540
102528
|
onChildIssueCreatedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
|
|
101541
102529
|
onChildIssueRemovedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
|
|
102530
|
+
onChildIssueStatusUpdatedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
|
|
101542
102531
|
onChildIssueUpdatedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
|
|
101543
102532
|
onIssueCreatedByProject?: Maybe<JiraIssue>;
|
|
101544
102533
|
onIssueCreatedByProjectNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
@@ -101552,6 +102541,7 @@ export declare type JiraSubscription = {
|
|
|
101552
102541
|
onIssueUpdatedByProjectNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
101553
102542
|
onIssueUpdatedByProjectsNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
101554
102543
|
onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
|
|
102544
|
+
onJourneyTypeCreated?: Maybe<JiraJourneyTypeCreatedEventPayload>;
|
|
101555
102545
|
onJourneyTypeUpdated?: Maybe<JiraJourneyTypeUpdatedEventPayload>;
|
|
101556
102546
|
onJpdIssueSubscription?: Maybe<JiraProductDiscoveryIssueEventPayload>;
|
|
101557
102547
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
@@ -101617,6 +102607,10 @@ export declare type JiraSubscriptionOnChildIssueRemovedNoEnrichmentArgs = {
|
|
|
101617
102607
|
cloudId: Scalars['ID']['input'];
|
|
101618
102608
|
parentIssueId: Scalars['String']['input'];
|
|
101619
102609
|
};
|
|
102610
|
+
export declare type JiraSubscriptionOnChildIssueStatusUpdatedNoEnrichmentArgs = {
|
|
102611
|
+
cloudId: Scalars['ID']['input'];
|
|
102612
|
+
parentIssueId: Scalars['String']['input'];
|
|
102613
|
+
};
|
|
101620
102614
|
export declare type JiraSubscriptionOnChildIssueUpdatedNoEnrichmentArgs = {
|
|
101621
102615
|
cloudId: Scalars['ID']['input'];
|
|
101622
102616
|
parentIssueId: Scalars['String']['input'];
|
|
@@ -101669,6 +102663,10 @@ export declare type JiraSubscriptionOnJirtIssueSubscriptionArgs = {
|
|
|
101669
102663
|
events: Array<Scalars['String']['input']>;
|
|
101670
102664
|
projectIds: Array<Scalars['String']['input']>;
|
|
101671
102665
|
};
|
|
102666
|
+
export declare type JiraSubscriptionOnJourneyTypeCreatedArgs = {
|
|
102667
|
+
cloudId: Scalars['ID']['input'];
|
|
102668
|
+
projectId: Scalars['String']['input'];
|
|
102669
|
+
};
|
|
101672
102670
|
export declare type JiraSubscriptionOnJourneyTypeUpdatedArgs = {
|
|
101673
102671
|
cloudId: Scalars['ID']['input'];
|
|
101674
102672
|
journeyTypeId: Scalars['ID']['input'];
|
|
@@ -103754,6 +104752,7 @@ export declare type JiraViewProjectKeyAndItemQuery = {
|
|
|
103754
104752
|
export declare type JiraViewQueryInput = {
|
|
103755
104753
|
boardIdAndItemQuery?: InputMaybe<JiraViewBoardIdAndItemQuery>;
|
|
103756
104754
|
projectKeyAndItemQuery?: InputMaybe<JiraViewProjectKeyAndItemQuery>;
|
|
104755
|
+
subcontainerIdAndItemQuery?: InputMaybe<JiraViewSubcontainerIdAndItemQuery>;
|
|
103757
104756
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
103758
104757
|
};
|
|
103759
104758
|
export declare type JiraViewResult = JiraBoardView | QueryError;
|
|
@@ -103761,6 +104760,11 @@ export declare type JiraViewScopeInput = {
|
|
|
103761
104760
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
103762
104761
|
projectKeys?: InputMaybe<JiraProjectKeysInput>;
|
|
103763
104762
|
};
|
|
104763
|
+
export declare type JiraViewSubcontainerIdAndItemQuery = {
|
|
104764
|
+
cloudId: Scalars['ID']['input'];
|
|
104765
|
+
itemId: Scalars['String']['input'];
|
|
104766
|
+
subcontainerId: Scalars['String']['input'];
|
|
104767
|
+
};
|
|
103764
104768
|
export declare enum JiraVisibilityControlMechanism {
|
|
103765
104769
|
AppAccessRules = "AppAccessRules",
|
|
103766
104770
|
DisplayConditions = "DisplayConditions",
|
|
@@ -104810,6 +105814,7 @@ export declare enum JsmChannelsResolutionPlanStepStatus {
|
|
|
104810
105814
|
}
|
|
104811
105815
|
export declare type JsmChannelsServiceAgentResolutionPlan = {
|
|
104812
105816
|
__typename?: 'JsmChannelsServiceAgentResolutionPlan';
|
|
105817
|
+
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
104813
105818
|
planId?: Maybe<Scalars['ID']['output']>;
|
|
104814
105819
|
runbooks?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionRunbook>>>;
|
|
104815
105820
|
status?: Maybe<JsmChannelsResolutionPlanStatus>;
|
|
@@ -107656,6 +108661,12 @@ export declare enum LoomUserStatus {
|
|
|
107656
108661
|
Mastered = "MASTERED",
|
|
107657
108662
|
NotFound = "NOT_FOUND"
|
|
107658
108663
|
}
|
|
108664
|
+
export declare type LoomValidateSlackUserIds = {
|
|
108665
|
+
__typename?: 'LoomValidateSlackUserIds';
|
|
108666
|
+
atlassianAccountId?: Maybe<Scalars['String']['output']>;
|
|
108667
|
+
hasConnection: Scalars['Boolean']['output'];
|
|
108668
|
+
slackUserId: Scalars['ID']['output'];
|
|
108669
|
+
};
|
|
107659
108670
|
export declare type LoomVideo = Node & {
|
|
107660
108671
|
__typename?: 'LoomVideo';
|
|
107661
108672
|
collaborators?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -108651,6 +109662,12 @@ export declare enum MarketplaceConsoleDevSpaceTier {
|
|
|
108651
109662
|
Platinum = "PLATINUM",
|
|
108652
109663
|
Silver = "SILVER"
|
|
108653
109664
|
}
|
|
109665
|
+
export declare type MarketplaceConsoleDeveloperNewsletterSubscribeResponse = MarketplaceConsoleDeveloperNewsletterSubscribeResult | MarketplaceConsoleKnownError;
|
|
109666
|
+
export declare type MarketplaceConsoleDeveloperNewsletterSubscribeResult = {
|
|
109667
|
+
__typename?: 'MarketplaceConsoleDeveloperNewsletterSubscribeResult';
|
|
109668
|
+
locale: Scalars['String']['output'];
|
|
109669
|
+
subscribedEmail: Scalars['String']['output'];
|
|
109670
|
+
};
|
|
108654
109671
|
export declare type MarketplaceConsoleDomainError = MarketplaceConsoleError & {
|
|
108655
109672
|
__typename?: 'MarketplaceConsoleDomainError';
|
|
108656
109673
|
code: Scalars['String']['output'];
|
|
@@ -109118,6 +110135,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
109118
110135
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
109119
110136
|
makeAppVersionPublic?: Maybe<MarketplaceConsoleMakeAppVersionPublicMutationOutput>;
|
|
109120
110137
|
patchProductMigration?: Maybe<MarketplaceConsoleProductMigrationResponse>;
|
|
110138
|
+
subscribeToDeveloperNewsletter: MarketplaceConsoleDeveloperNewsletterSubscribeResponse;
|
|
109121
110139
|
updateAppDetails?: Maybe<MarketplaceConsoleUpdateAppDetailsResponse>;
|
|
109122
110140
|
updateMakerAccountAndMakerListing?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
109123
110141
|
updateMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
@@ -110117,6 +111135,11 @@ export declare type MarketplaceStoreCompatibilityRanges = {
|
|
|
110117
111135
|
end?: Maybe<Scalars['String']['output']>;
|
|
110118
111136
|
start?: Maybe<Scalars['String']['output']>;
|
|
110119
111137
|
};
|
|
111138
|
+
export declare type MarketplaceStoreCompatibleAtlassianProduct = {
|
|
111139
|
+
__typename?: 'MarketplaceStoreCompatibleAtlassianProduct';
|
|
111140
|
+
id: Scalars['ID']['output'];
|
|
111141
|
+
name: Scalars['String']['output'];
|
|
111142
|
+
};
|
|
110120
111143
|
export declare type MarketplaceStoreCompatibleProducts = {
|
|
110121
111144
|
__typename?: 'MarketplaceStoreCompatibleProducts';
|
|
110122
111145
|
entitlementDetails?: Maybe<Array<Maybe<MarketplaceStoreEntitlementDetails>>>;
|
|
@@ -110694,6 +111717,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
110694
111717
|
editionsByAppKey: Array<MarketplaceStoreEdition>;
|
|
110695
111718
|
eligibleOfferingsForApp: MarketplaceStoreEligibleAppOfferingsResponse;
|
|
110696
111719
|
geoip: MarketplaceStoreGeoIpResponse;
|
|
111720
|
+
getAppMigration: MarketplaceStoreProductMigrationResponse;
|
|
110697
111721
|
getProductMigration: MarketplaceStoreProductMigrationResponse;
|
|
110698
111722
|
homePage: MarketplaceStoreHomePageResponse;
|
|
110699
111723
|
hostStatus: MarketplaceStoreHostStatusResponse;
|
|
@@ -110768,6 +111792,9 @@ export declare type MarketplaceStoreQueryApiEditionsByAppKeyArgs = {
|
|
|
110768
111792
|
export declare type MarketplaceStoreQueryApiEligibleOfferingsForAppArgs = {
|
|
110769
111793
|
input: MarketplaceStoreEligibleAppOfferingsInput;
|
|
110770
111794
|
};
|
|
111795
|
+
export declare type MarketplaceStoreQueryApiGetAppMigrationArgs = {
|
|
111796
|
+
appKey: Scalars['String']['input'];
|
|
111797
|
+
};
|
|
110771
111798
|
export declare type MarketplaceStoreQueryApiGetProductMigrationArgs = {
|
|
110772
111799
|
productId: Scalars['ID']['input'];
|
|
110773
111800
|
};
|
|
@@ -110861,6 +111888,7 @@ export declare type MarketplaceStoreReviewNodeWithProductListing = MarketplaceSt
|
|
|
110861
111888
|
export declare type MarketplaceStoreReviewsByUserResponse = {
|
|
110862
111889
|
__typename?: 'MarketplaceStoreReviewsByUserResponse';
|
|
110863
111890
|
id: Scalars['ID']['output'];
|
|
111891
|
+
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
110864
111892
|
reviews: Array<Maybe<MarketplaceStoreReviewNodeWithProductListing>>;
|
|
110865
111893
|
};
|
|
110866
111894
|
export declare type MarketplaceStoreReviewsResponse = {
|
|
@@ -110880,6 +111908,7 @@ export declare type MarketplaceStoreSiteDetailsInput = {
|
|
|
110880
111908
|
};
|
|
110881
111909
|
export declare type MarketplaceStoreSiteDetailsResponse = {
|
|
110882
111910
|
__typename?: 'MarketplaceStoreSiteDetailsResponse';
|
|
111911
|
+
additionalCompatibleProducts?: Maybe<Array<Maybe<MarketplaceStoreCompatibleAtlassianProduct>>>;
|
|
110883
111912
|
cloudId: Scalars['String']['output'];
|
|
110884
111913
|
compatibleProducts?: Maybe<MarketplaceStoreCompatibleProducts>;
|
|
110885
111914
|
installedAppUsers?: Maybe<Scalars['Int']['output']>;
|
|
@@ -112600,7 +113629,7 @@ export declare type MercuryInsightsQueryApiFocusAreaInsightsArgs = {
|
|
|
112600
113629
|
export declare type MercuryInsightsQueryApiFocusAreaWorkSuggestionsArgs = {
|
|
112601
113630
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
112602
113631
|
focusAreaId: Scalars['ID']['input'];
|
|
112603
|
-
workContainerAri
|
|
113632
|
+
workContainerAri: Scalars['String']['input'];
|
|
112604
113633
|
};
|
|
112605
113634
|
export declare type MercuryIntegrationsContext = {
|
|
112606
113635
|
__typename?: 'MercuryIntegrationsContext';
|
|
@@ -114908,6 +115937,7 @@ export declare type Mutation = {
|
|
|
114908
115937
|
admin_removeUser?: Maybe<AdminRemoveUserResponsePayload>;
|
|
114909
115938
|
admin_revokeRole?: Maybe<AdminRevokeRoleResponsePayload>;
|
|
114910
115939
|
admin_unitCreate?: Maybe<AdminUnitCreatePayload>;
|
|
115940
|
+
admin_unlinkScimUser?: Maybe<AdminUnlinkScimUserResponsePayload>;
|
|
114911
115941
|
admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
|
|
114912
115942
|
agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
|
|
114913
115943
|
agentStudio_cancelBatchEvaluationJobRun?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
@@ -114968,12 +115998,14 @@ export declare type Mutation = {
|
|
|
114968
115998
|
assetsDM_dataSourceRunTransform?: Maybe<AssetsDmDataSourceRunTransformResponse>;
|
|
114969
115999
|
assetsDM_deleteAttributePriority?: Maybe<AssetsDmAttributePriorityResponse>;
|
|
114970
116000
|
assetsDM_deleteCleansingReason?: Maybe<AssetsDmDeleteCleansingReasonResponse>;
|
|
116001
|
+
assetsDM_deleteDataDictionary?: Maybe<AssetsDmDeleteDataDictionaryResponse>;
|
|
114971
116002
|
assetsDM_deleteDataSource?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
114972
116003
|
assetsDM_deleteDataSourceType?: Maybe<AssetsDmDeleteDataSourceTypeResponse>;
|
|
114973
116004
|
assetsDM_deleteDefaultAttributeMapping?: Maybe<AssetsDmDeleteDefaultAttributeMappingResponse>;
|
|
114974
116005
|
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
114975
116006
|
assetsDM_deleteSavedSearch?: Maybe<AssetsDmSavedSearchesDeleteResponse>;
|
|
114976
116007
|
assetsDM_dissociateObjectTag?: Maybe<AssetsDmObjectTagDissociateResponse>;
|
|
116008
|
+
assetsDM_editDataDictionary?: Maybe<AssetsDmEditDataDictionaryResponse>;
|
|
114977
116009
|
assetsDM_editDefaultAttributeMapping?: Maybe<AssetsDmEditDefaultAttributeMappingResponse>;
|
|
114978
116010
|
assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
|
|
114979
116011
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
@@ -115146,6 +116178,7 @@ export declare type Mutation = {
|
|
|
115146
116178
|
cpls_createCustomContributionTargetWithWorkAssociation?: Maybe<CplsCreateCustomContributionTargetWithWorkAssociationPayload>;
|
|
115147
116179
|
cpls_deleteContributorScopeAssociation?: Maybe<CplsDeleteContributorScopeAssociationPayload>;
|
|
115148
116180
|
cpls_deleteContributorWorkAssociation?: Maybe<CplsDeleteContributorWorkAssociationPayload>;
|
|
116181
|
+
cpls_importCapacityData?: Maybe<CplsImportCapacityDataPayload>;
|
|
115149
116182
|
cpls_updateCustomContributionTarget?: Maybe<CplsUpdateCustomContributionTargetPayload>;
|
|
115150
116183
|
cpls_updateFilters?: Maybe<CplsUpdateFiltersPayload>;
|
|
115151
116184
|
cpls_updateViewSettings?: Maybe<CplsUpdateViewSettingsPayload>;
|
|
@@ -115284,6 +116317,7 @@ export declare type Mutation = {
|
|
|
115284
116317
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
115285
116318
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
115286
116319
|
disableSuperAdmin?: Maybe<SuperAdminPayload>;
|
|
116320
|
+
dlp_saveDetectorClassificationMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
115287
116321
|
ecosystem?: Maybe<EcosystemMutation>;
|
|
115288
116322
|
editSprint?: Maybe<SprintResponse>;
|
|
115289
116323
|
editorDraftSyncAction?: Maybe<EditorDraftSyncPayload>;
|
|
@@ -115302,6 +116336,7 @@ export declare type Mutation = {
|
|
|
115302
116336
|
goals_addProjectLink?: Maybe<TownsquareAddProjectLinkPayload>;
|
|
115303
116337
|
goals_archiveMetric?: Maybe<TownsquareGoalsArchiveMetricPayload>;
|
|
115304
116338
|
goals_clone?: Maybe<TownsquareGoalsClonePayload>;
|
|
116339
|
+
goals_create?: Maybe<TownsquareGoalsCreatePayload>;
|
|
115305
116340
|
goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
|
|
115306
116341
|
goals_createComment?: Maybe<TownsquareGoalsCreateCommentPayload>;
|
|
115307
116342
|
goals_createDecision?: Maybe<TownsquareGoalsCreateDecisionPayload>;
|
|
@@ -115385,6 +116420,7 @@ export declare type Mutation = {
|
|
|
115385
116420
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
115386
116421
|
jira_clearBoardIssueCardCover?: Maybe<JiraClearBoardIssueCardCoverPayload>;
|
|
115387
116422
|
jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
|
|
116423
|
+
jira_createBoardViewsForWorkflows?: Maybe<JiraCreateBoardViewsForWorkflowsPayload>;
|
|
115388
116424
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
115389
116425
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
115390
116426
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
@@ -115708,6 +116744,7 @@ export declare type Mutation = {
|
|
|
115708
116744
|
stakeholderComms_deleteDraftPage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
115709
116745
|
stakeholderComms_deletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
115710
116746
|
stakeholderComms_deleteStakeholder?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
116747
|
+
stakeholderComms_deleteSubscribers?: Maybe<Scalars['Boolean']['output']>;
|
|
115711
116748
|
stakeholderComms_getPreSignedUrl?: Maybe<StakeholderCommsPreSignedUrlResponse>;
|
|
115712
116749
|
stakeholderComms_publishPage?: Maybe<StakeholderCommsPageResponse>;
|
|
115713
116750
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
@@ -115866,7 +116903,7 @@ export declare type MutationAdmin_ImpersonateUserArgs = {
|
|
|
115866
116903
|
input: AdminImpersonateUserInput;
|
|
115867
116904
|
};
|
|
115868
116905
|
export declare type MutationAdmin_InviteArgs = {
|
|
115869
|
-
inviteInput
|
|
116906
|
+
inviteInput: AdminInviteInput;
|
|
115870
116907
|
orgId: Scalars['ID']['input'];
|
|
115871
116908
|
};
|
|
115872
116909
|
export declare type MutationAdmin_ReleaseImpersonationUserArgs = {
|
|
@@ -115886,6 +116923,11 @@ export declare type MutationAdmin_UnitCreateArgs = {
|
|
|
115886
116923
|
orgId: Scalars['ID']['input'];
|
|
115887
116924
|
unit: AdminUnitCreateInput;
|
|
115888
116925
|
};
|
|
116926
|
+
export declare type MutationAdmin_UnlinkScimUserArgs = {
|
|
116927
|
+
orgId: Scalars['ID']['input'];
|
|
116928
|
+
scimDirectoryId: Scalars['ID']['input'];
|
|
116929
|
+
scimUserId: Scalars['ID']['input'];
|
|
116930
|
+
};
|
|
115889
116931
|
export declare type MutationAdmin_UpdateInvitePolicyArgs = {
|
|
115890
116932
|
orgId: Scalars['ID']['input'];
|
|
115891
116933
|
policyId: Scalars['ID']['input'];
|
|
@@ -116164,6 +117206,11 @@ export declare type MutationAssetsDm_DeleteCleansingReasonArgs = {
|
|
|
116164
117206
|
reasonId: Scalars['ID']['input'];
|
|
116165
117207
|
workspaceId: Scalars['ID']['input'];
|
|
116166
117208
|
};
|
|
117209
|
+
export declare type MutationAssetsDm_DeleteDataDictionaryArgs = {
|
|
117210
|
+
cloudId: Scalars['ID']['input'];
|
|
117211
|
+
computeDictionaryId: Scalars['ID']['input'];
|
|
117212
|
+
workspaceId: Scalars['ID']['input'];
|
|
117213
|
+
};
|
|
116167
117214
|
export declare type MutationAssetsDm_DeleteDataSourceArgs = {
|
|
116168
117215
|
cloudId: Scalars['ID']['input'];
|
|
116169
117216
|
input: AssetsDmDeleteDataSourceInput;
|
|
@@ -116194,6 +117241,11 @@ export declare type MutationAssetsDm_DissociateObjectTagArgs = {
|
|
|
116194
117241
|
input: AssetsDmObjectTagDissociateInput;
|
|
116195
117242
|
workspaceId: Scalars['ID']['input'];
|
|
116196
117243
|
};
|
|
117244
|
+
export declare type MutationAssetsDm_EditDataDictionaryArgs = {
|
|
117245
|
+
cloudId: Scalars['ID']['input'];
|
|
117246
|
+
payload: AssetsDmEditDataDictionaryInput;
|
|
117247
|
+
workspaceId: Scalars['ID']['input'];
|
|
117248
|
+
};
|
|
116197
117249
|
export declare type MutationAssetsDm_EditDefaultAttributeMappingArgs = {
|
|
116198
117250
|
cloudId: Scalars['ID']['input'];
|
|
116199
117251
|
payload: AssetsDmEditDefaultAttributeMappingInput;
|
|
@@ -116830,6 +117882,9 @@ export declare type MutationCpls_DeleteContributorScopeAssociationArgs = {
|
|
|
116830
117882
|
export declare type MutationCpls_DeleteContributorWorkAssociationArgs = {
|
|
116831
117883
|
input: CplsDeleteContributorWorkAssociationInput;
|
|
116832
117884
|
};
|
|
117885
|
+
export declare type MutationCpls_ImportCapacityDataArgs = {
|
|
117886
|
+
input: CplsImportCapacityDataInput;
|
|
117887
|
+
};
|
|
116833
117888
|
export declare type MutationCpls_UpdateCustomContributionTargetArgs = {
|
|
116834
117889
|
input: CplsUpdateCustomContributionTargetInput;
|
|
116835
117890
|
};
|
|
@@ -117337,6 +118392,10 @@ export declare type MutationDisableExperimentArgs = {
|
|
|
117337
118392
|
export declare type MutationDisablePublicLinkForPageArgs = {
|
|
117338
118393
|
pageId: Scalars['ID']['input'];
|
|
117339
118394
|
};
|
|
118395
|
+
export declare type MutationDlp_SaveDetectorClassificationMappingArgs = {
|
|
118396
|
+
mappingRequests?: InputMaybe<Array<InputMaybe<DlpDetectorClassificationMappingRequestInput>>>;
|
|
118397
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
118398
|
+
};
|
|
117340
118399
|
export declare type MutationEditSprintArgs = {
|
|
117341
118400
|
input?: InputMaybe<EditSprintInput>;
|
|
117342
118401
|
};
|
|
@@ -117378,6 +118437,9 @@ export declare type MutationGoals_ArchiveMetricArgs = {
|
|
|
117378
118437
|
export declare type MutationGoals_CloneArgs = {
|
|
117379
118438
|
input: TownsquareGoalsCloneInput;
|
|
117380
118439
|
};
|
|
118440
|
+
export declare type MutationGoals_CreateArgs = {
|
|
118441
|
+
input: TownsquareGoalsCreateInput;
|
|
118442
|
+
};
|
|
117381
118443
|
export declare type MutationGoals_CreateAndAddMetricTargetArgs = {
|
|
117382
118444
|
input: TownsquareGoalsCreateAddMetricTargetInput;
|
|
117383
118445
|
};
|
|
@@ -117613,6 +118675,9 @@ export declare type MutationJira_ClearBoardIssueCardCoverArgs = {
|
|
|
117613
118675
|
export declare type MutationJira_CreateBoardViewStatusColumnArgs = {
|
|
117614
118676
|
input: JiraCreateBoardViewStatusColumnInput;
|
|
117615
118677
|
};
|
|
118678
|
+
export declare type MutationJira_CreateBoardViewsForWorkflowsArgs = {
|
|
118679
|
+
input: JiraCreateBoardViewsForWorkflowsInput;
|
|
118680
|
+
};
|
|
117616
118681
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
117617
118682
|
input: JiraCreateCustomBackgroundInput;
|
|
117618
118683
|
};
|
|
@@ -118623,6 +119688,9 @@ export declare type MutationStakeholderComms_DeletePageArgs = {
|
|
|
118623
119688
|
export declare type MutationStakeholderComms_DeleteStakeholderArgs = {
|
|
118624
119689
|
id: Scalars['String']['input'];
|
|
118625
119690
|
};
|
|
119691
|
+
export declare type MutationStakeholderComms_DeleteSubscribersArgs = {
|
|
119692
|
+
ids?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
119693
|
+
};
|
|
118626
119694
|
export declare type MutationStakeholderComms_GetPreSignedUrlArgs = {
|
|
118627
119695
|
input: StakeholderCommsPreSignedUrlInput;
|
|
118628
119696
|
};
|
|
@@ -121804,6 +122872,7 @@ export declare type Query = {
|
|
|
121804
122872
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
121805
122873
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
121806
122874
|
admin_group?: Maybe<AdminGroup>;
|
|
122875
|
+
admin_groupRoleAssignments?: Maybe<AdminGroupRoleAssignmentsConnection>;
|
|
121807
122876
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
121808
122877
|
admin_identityProviderDirectories?: Maybe<Array<AdminIdentityProviderDirectorySummary>>;
|
|
121809
122878
|
admin_identityProviderDirectoryDetails?: Maybe<AdminIdentityProviderDirectoryDetails>;
|
|
@@ -121819,6 +122888,7 @@ export declare type Query = {
|
|
|
121819
122888
|
admin_unitsForOrg?: Maybe<AdminUnitConnection>;
|
|
121820
122889
|
admin_user?: Maybe<AdminUser>;
|
|
121821
122890
|
admin_userAuthPolicy?: Maybe<AdminUserAuthPolicy>;
|
|
122891
|
+
admin_userProvisioningScimLinks?: Maybe<AdminUserProvisioningScimLinkConnection>;
|
|
121822
122892
|
admin_userRoles?: Maybe<AdminUserRoleConnection>;
|
|
121823
122893
|
admin_userStats?: Maybe<AdminUserStats>;
|
|
121824
122894
|
admin_users?: Maybe<AdminUserConnection>;
|
|
@@ -121905,6 +122975,7 @@ export declare type Query = {
|
|
|
121905
122975
|
assetsDM_adapters?: Maybe<AssetsDmAdapters>;
|
|
121906
122976
|
assetsDM_attributePrioritiesList?: Maybe<AssetsDmAttributePrioritiesList>;
|
|
121907
122977
|
assetsDM_attributePriority?: Maybe<AssetsDmAttributePriority>;
|
|
122978
|
+
assetsDM_dataDictionaries?: Maybe<AssetsDmDataDictionaryResponse>;
|
|
121908
122979
|
assetsDM_dataSource?: Maybe<AssetsDmDataSourceDetailResponse>;
|
|
121909
122980
|
assetsDM_dataSourceConfig?: Maybe<AssetsDmDataSourceConfig>;
|
|
121910
122981
|
assetsDM_dataSourceDetails?: Maybe<AssetsDmDataSourceDetails>;
|
|
@@ -121916,7 +122987,6 @@ export declare type Query = {
|
|
|
121916
122987
|
assetsDM_dataSourceMergeGetObjectsForImport?: Maybe<Array<AssetsDmDataSourceMergeObjectForImportInfo>>;
|
|
121917
122988
|
assetsDM_dataSourceMergeIsImportProgressing?: Maybe<AssetsDmDataSourceMergeIsImportProgressingResponse>;
|
|
121918
122989
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
121919
|
-
assetsDM_dataSourceType?: Maybe<AssetsDmDataSourceTypeResponse>;
|
|
121920
122990
|
assetsDM_dataSourceTypes?: Maybe<AssetsDmDataSourceTypeConnection>;
|
|
121921
122991
|
assetsDM_dataSourcesList?: Maybe<AssetsDmDataSourcesList>;
|
|
121922
122992
|
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
@@ -121956,6 +123026,7 @@ export declare type Query = {
|
|
|
121956
123026
|
avp_getChart?: Maybe<AvpChart>;
|
|
121957
123027
|
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
121958
123028
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
123029
|
+
avpanalytics_listModels?: Maybe<AvpAnalyticsListModelsResponse>;
|
|
121959
123030
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
121960
123031
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
121961
123032
|
blockService_health?: Maybe<Scalars['String']['output']>;
|
|
@@ -121982,6 +123053,7 @@ export declare type Query = {
|
|
|
121982
123053
|
ccp_pricingPlan?: Maybe<CcpPricingPlan>;
|
|
121983
123054
|
ccp_pricingPlans?: Maybe<Array<Maybe<CcpPricingPlan>>>;
|
|
121984
123055
|
ccp_product?: Maybe<CcpProduct>;
|
|
123056
|
+
ccp_products?: Maybe<Array<Maybe<CcpProduct>>>;
|
|
121985
123057
|
ccp_promotions?: Maybe<Array<Maybe<CcpPromotion>>>;
|
|
121986
123058
|
ccp_quotes?: Maybe<Array<Maybe<CcpQuote>>>;
|
|
121987
123059
|
ccp_shipToParties?: Maybe<Array<Maybe<CcpShipToParty>>>;
|
|
@@ -121989,6 +123061,7 @@ export declare type Query = {
|
|
|
121989
123061
|
ccp_transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
|
|
121990
123062
|
cfo_analytics?: Maybe<CfoAnalyticsResult>;
|
|
121991
123063
|
channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
123064
|
+
channelPlatform_createContact?: Maybe<ChannelPlatformCreateContactResponse>;
|
|
121992
123065
|
channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
|
|
121993
123066
|
channelPlatform_getAgentIdForAaid?: Maybe<Scalars['String']['output']>;
|
|
121994
123067
|
channelPlatform_getAgentStatus?: Maybe<ChannelPlatformAgentStatusResponse>;
|
|
@@ -122077,6 +123150,7 @@ export declare type Query = {
|
|
|
122077
123150
|
confluence_mediaTokenData?: Maybe<ConfluenceMediaTokenData>;
|
|
122078
123151
|
confluence_nbmChainsForTransformation?: Maybe<ConfluenceNbmChainsForTransformationConnection>;
|
|
122079
123152
|
confluence_nbmEligibleTransformersForChain?: Maybe<Array<Maybe<ConfluenceNbmTransformer>>>;
|
|
123153
|
+
confluence_nbmMostRecentVerificationJob?: Maybe<ConfluenceNbmVerificationJob>;
|
|
122080
123154
|
confluence_nbmPerfReportList?: Maybe<ConfluenceNbmScanConnection>;
|
|
122081
123155
|
confluence_nbmPerfScanResult?: Maybe<ConfluenceNbmPerfScanResult>;
|
|
122082
123156
|
confluence_nbmScanList?: Maybe<ConfluenceNbmScanConnection>;
|
|
@@ -122253,6 +123327,7 @@ export declare type Query = {
|
|
|
122253
123327
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
122254
123328
|
devopsmetrics_echo?: Maybe<Scalars['String']['output']>;
|
|
122255
123329
|
diagnostics?: Maybe<Scalars['JSON']['output']>;
|
|
123330
|
+
dlp_getDetectorClassificationMapping?: Maybe<DlpDetectorClassificationMappingListResponse>;
|
|
122256
123331
|
dvcs?: Maybe<DvcsQuery>;
|
|
122257
123332
|
echo?: Maybe<Scalars['String']['output']>;
|
|
122258
123333
|
ecosystem?: Maybe<EcosystemQuery>;
|
|
@@ -122462,6 +123537,7 @@ export declare type Query = {
|
|
|
122462
123537
|
loom_space?: Maybe<LoomSpace>;
|
|
122463
123538
|
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
122464
123539
|
loom_spacesSearch?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
123540
|
+
loom_validateSlackUserIds?: Maybe<Array<Maybe<LoomValidateSlackUserIds>>>;
|
|
122465
123541
|
loom_video?: Maybe<LoomVideo>;
|
|
122466
123542
|
loom_videoDurations?: Maybe<LoomVideoDurations>;
|
|
122467
123543
|
loom_videos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
@@ -122688,6 +123764,7 @@ export declare type Query = {
|
|
|
122688
123764
|
stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
122689
123765
|
stakeholderComms_getStakeholdersFromSimilarIncidents?: Maybe<StakeholderCommsGetStakeholdersFromSimilarIncidentsResponse>;
|
|
122690
123766
|
stakeholderComms_getStakeholdersbyAri?: Maybe<Array<Maybe<StakeholderCommsSimplifiedStakeholder>>>;
|
|
123767
|
+
stakeholderComms_getSuggestedPublicCommunication?: Maybe<StakeholderCommsPublicCommunicationResponse>;
|
|
122691
123768
|
stakeholderComms_getTotalSubscribersInCloud?: Maybe<Scalars['Int']['output']>;
|
|
122692
123769
|
stakeholderComms_getUniqueSubdomainForPage?: Maybe<Scalars['String']['output']>;
|
|
122693
123770
|
stakeholderComms_getUploadMediaToken?: Maybe<StakeholderCommsMediaToken>;
|
|
@@ -122793,6 +123870,7 @@ export declare type QueryAdmin_AccessUrlsArgs = {
|
|
|
122793
123870
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122794
123871
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
122795
123872
|
orgId: Scalars['ID']['input'];
|
|
123873
|
+
resourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
122796
123874
|
};
|
|
122797
123875
|
export declare type QueryAdmin_AppModulesArgs = {
|
|
122798
123876
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -122848,6 +123926,15 @@ export declare type QueryAdmin_EffectiveRoleAssignmentsByPrincipalArgs = {
|
|
|
122848
123926
|
export declare type QueryAdmin_GroupArgs = {
|
|
122849
123927
|
input?: InputMaybe<AdminFetchGroupInput>;
|
|
122850
123928
|
};
|
|
123929
|
+
export declare type QueryAdmin_GroupRoleAssignmentsArgs = {
|
|
123930
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
123931
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
123932
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
123933
|
+
groupId: Scalars['ID']['input'];
|
|
123934
|
+
groupRoleAssignmentsInput?: InputMaybe<AdminGroupRoleAssignmentsInput>;
|
|
123935
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
123936
|
+
orgId: Scalars['ID']['input'];
|
|
123937
|
+
};
|
|
122851
123938
|
export declare type QueryAdmin_GroupsArgs = {
|
|
122852
123939
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
122853
123940
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -122925,6 +124012,14 @@ export declare type QueryAdmin_UserAuthPolicyArgs = {
|
|
|
122925
124012
|
orgId: Scalars['ID']['input'];
|
|
122926
124013
|
userId: Scalars['ID']['input'];
|
|
122927
124014
|
};
|
|
124015
|
+
export declare type QueryAdmin_UserProvisioningScimLinksArgs = {
|
|
124016
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
124017
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
124018
|
+
email: AdminUserEmailInput;
|
|
124019
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124020
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
124021
|
+
orgId: Scalars['ID']['input'];
|
|
124022
|
+
};
|
|
122928
124023
|
export declare type QueryAdmin_UserRolesArgs = {
|
|
122929
124024
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
122930
124025
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -123393,6 +124488,14 @@ export declare type QueryAssetsDm_AttributePriorityArgs = {
|
|
|
123393
124488
|
objectAttributePriorityId: Scalars['ID']['input'];
|
|
123394
124489
|
workspaceId: Scalars['ID']['input'];
|
|
123395
124490
|
};
|
|
124491
|
+
export declare type QueryAssetsDm_DataDictionariesArgs = {
|
|
124492
|
+
cloudId: Scalars['ID']['input'];
|
|
124493
|
+
filter?: InputMaybe<AssetsDmDataDictionaryFilter>;
|
|
124494
|
+
objectClassId: Scalars['ID']['input'];
|
|
124495
|
+
pageInfo?: InputMaybe<AssetsDmDataDictionaryPageInfoInput>;
|
|
124496
|
+
sortBy?: InputMaybe<AssetsDmDataDictionarySortBy>;
|
|
124497
|
+
workspaceId: Scalars['ID']['input'];
|
|
124498
|
+
};
|
|
123396
124499
|
export declare type QueryAssetsDm_DataSourceArgs = {
|
|
123397
124500
|
cloudId: Scalars['ID']['input'];
|
|
123398
124501
|
dataSourceId: Scalars['ID']['input'];
|
|
@@ -123456,12 +124559,6 @@ export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
|
123456
124559
|
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
123457
124560
|
workspaceId: Scalars['ID']['input'];
|
|
123458
124561
|
};
|
|
123459
|
-
export declare type QueryAssetsDm_DataSourceTypeArgs = {
|
|
123460
|
-
cloudId: Scalars['ID']['input'];
|
|
123461
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
123462
|
-
pageInfo?: InputMaybe<AssetsDmDefaultAttributeMappingPageInfoInput>;
|
|
123463
|
-
workspaceId: Scalars['ID']['input'];
|
|
123464
|
-
};
|
|
123465
124562
|
export declare type QueryAssetsDm_DataSourceTypesArgs = {
|
|
123466
124563
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
123467
124564
|
cloudId: Scalars['String']['input'];
|
|
@@ -123667,6 +124764,9 @@ export declare type QueryAvp_GetDashboardArgs = {
|
|
|
123667
124764
|
export declare type QueryAvp_GetDashboardTemplatesArgs = {
|
|
123668
124765
|
input: AvpGetDashboardTemplatesInput;
|
|
123669
124766
|
};
|
|
124767
|
+
export declare type QueryAvpanalytics_ListModelsArgs = {
|
|
124768
|
+
input?: InputMaybe<AvpAnalyticsListModelsRequest>;
|
|
124769
|
+
};
|
|
123670
124770
|
export declare type QueryBitbucketRepositoriesAvailableToLinkWithNewDevOpsServiceArgs = {
|
|
123671
124771
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
123672
124772
|
cloudId: Scalars['ID']['input'];
|
|
@@ -123760,6 +124860,9 @@ export declare type QueryCcp_PricingPlansArgs = {
|
|
|
123760
124860
|
export declare type QueryCcp_ProductArgs = {
|
|
123761
124861
|
id: Scalars['ID']['input'];
|
|
123762
124862
|
};
|
|
124863
|
+
export declare type QueryCcp_ProductsArgs = {
|
|
124864
|
+
ids: Array<Scalars['ID']['input']>;
|
|
124865
|
+
};
|
|
123763
124866
|
export declare type QueryCcp_PromotionsArgs = {
|
|
123764
124867
|
ids: Array<Scalars['ID']['input']>;
|
|
123765
124868
|
};
|
|
@@ -123783,6 +124886,10 @@ export declare type QueryCfo_AnalyticsArgs = {
|
|
|
123783
124886
|
export declare type QueryChannelPlatform_ChatRequestDetailsArgs = {
|
|
123784
124887
|
request?: InputMaybe<ChannelPlatformChatRequestDetailsRequest>;
|
|
123785
124888
|
};
|
|
124889
|
+
export declare type QueryChannelPlatform_CreateContactArgs = {
|
|
124890
|
+
request?: InputMaybe<ChannelPlatformSubmitRequestInput>;
|
|
124891
|
+
requestType?: InputMaybe<ChannelPlatformChannelType>;
|
|
124892
|
+
};
|
|
123786
124893
|
export declare type QueryChannelPlatform_EvaluateChannelAvailabilityArgs = {
|
|
123787
124894
|
request?: InputMaybe<ChannelPlatformChannelAvailabilityRequestInput>;
|
|
123788
124895
|
};
|
|
@@ -124169,6 +125276,10 @@ export declare type QueryConfluence_NbmEligibleTransformersForChainArgs = {
|
|
|
124169
125276
|
chain: Scalars['String']['input'];
|
|
124170
125277
|
cloudId: Scalars['ID']['input'];
|
|
124171
125278
|
};
|
|
125279
|
+
export declare type QueryConfluence_NbmMostRecentVerificationJobArgs = {
|
|
125280
|
+
cloudId: Scalars['ID']['input'];
|
|
125281
|
+
scanId: Scalars['ID']['input'];
|
|
125282
|
+
};
|
|
124172
125283
|
export declare type QueryConfluence_NbmPerfReportListArgs = {
|
|
124173
125284
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
124174
125285
|
cloudId: Scalars['ID']['input'];
|
|
@@ -125043,6 +126154,11 @@ export declare type QueryDevelopmentInformationArgs = {
|
|
|
125043
126154
|
export declare type QueryDevopsmetrics_EchoArgs = {
|
|
125044
126155
|
message: Scalars['String']['input'];
|
|
125045
126156
|
};
|
|
126157
|
+
export declare type QueryDlp_GetDetectorClassificationMappingArgs = {
|
|
126158
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
126159
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
126160
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
126161
|
+
};
|
|
125046
126162
|
export declare type QueryEditorConversionSettingsArgs = {
|
|
125047
126163
|
spaceKey: Scalars['String']['input'];
|
|
125048
126164
|
};
|
|
@@ -125770,6 +126886,9 @@ export declare type QueryLoom_SpacesSearchArgs = {
|
|
|
125770
126886
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
125771
126887
|
siteId: Scalars['ID']['input'];
|
|
125772
126888
|
};
|
|
126889
|
+
export declare type QueryLoom_ValidateSlackUserIdsArgs = {
|
|
126890
|
+
userIds: Array<Scalars['ID']['input']>;
|
|
126891
|
+
};
|
|
125773
126892
|
export declare type QueryLoom_VideoArgs = {
|
|
125774
126893
|
id: Scalars['ID']['input'];
|
|
125775
126894
|
};
|
|
@@ -126220,6 +127339,7 @@ export declare type QueryRadar_WorktypeAllocationsAveragesByEntityArgs = {
|
|
|
126220
127339
|
cloudId: Scalars['ID']['input'];
|
|
126221
127340
|
entity: RadarPositionsByEntityType;
|
|
126222
127341
|
id: Scalars['ID']['input'];
|
|
127342
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
126223
127343
|
};
|
|
126224
127344
|
export declare type QueryReactedUsersArgs = {
|
|
126225
127345
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -126607,6 +127727,10 @@ export declare type QueryStakeholderComms_GetStakeholdersFromSimilarIncidentsArg
|
|
|
126607
127727
|
export declare type QueryStakeholderComms_GetStakeholdersbyAriArgs = {
|
|
126608
127728
|
stakeholderAris: Array<Scalars['String']['input']>;
|
|
126609
127729
|
};
|
|
127730
|
+
export declare type QueryStakeholderComms_GetSuggestedPublicCommunicationArgs = {
|
|
127731
|
+
dataJson?: InputMaybe<Scalars['String']['input']>;
|
|
127732
|
+
promptTemplate?: InputMaybe<Scalars['String']['input']>;
|
|
127733
|
+
};
|
|
126610
127734
|
export declare type QueryStakeholderComms_GetUniqueSubdomainForPageArgs = {
|
|
126611
127735
|
pageName: Scalars['String']['input'];
|
|
126612
127736
|
};
|
|
@@ -127418,6 +128542,7 @@ export declare type RadarPositionEdge = RadarEdge & {
|
|
|
127418
128542
|
};
|
|
127419
128543
|
export declare type RadarPositionLaborCostEstimateSettings = {
|
|
127420
128544
|
__typename?: 'RadarPositionLaborCostEstimateSettings';
|
|
128545
|
+
currency: Scalars['String']['output'];
|
|
127421
128546
|
defaultAmount?: Maybe<RadarMoney>;
|
|
127422
128547
|
fieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
127423
128548
|
id: Scalars['ID']['output'];
|
|
@@ -127515,12 +128640,17 @@ export declare type RadarStringFieldValue = {
|
|
|
127515
128640
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
127516
128641
|
value?: Maybe<Scalars['String']['output']>;
|
|
127517
128642
|
};
|
|
128643
|
+
export declare type RadarSyncData = {
|
|
128644
|
+
__typename?: 'RadarSyncData';
|
|
128645
|
+
lastSuccessfulSync?: Maybe<Scalars['DateTime']['output']>;
|
|
128646
|
+
};
|
|
127518
128647
|
export declare type RadarUpdateFocusAreaProposalChangesMutationResponse = {
|
|
127519
128648
|
__typename?: 'RadarUpdateFocusAreaProposalChangesMutationResponse';
|
|
127520
128649
|
changes?: Maybe<Array<RadarPositionAllocationChange>>;
|
|
127521
128650
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
127522
128651
|
};
|
|
127523
128652
|
export declare type RadarUpdatePositionLaborCostEstimateSettingsInput = {
|
|
128653
|
+
currency?: InputMaybe<Scalars['String']['input']>;
|
|
127524
128654
|
defaultAmount?: InputMaybe<RadarMoneyInput>;
|
|
127525
128655
|
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
127526
128656
|
};
|
|
@@ -127648,6 +128778,7 @@ export declare type RadarWorkspace = {
|
|
|
127648
128778
|
proposalFields: Array<RadarFieldDefinition>;
|
|
127649
128779
|
proposedMovementFields: Array<RadarFieldDefinition>;
|
|
127650
128780
|
settings: RadarSettings;
|
|
128781
|
+
syncData?: Maybe<RadarSyncData>;
|
|
127651
128782
|
teamFields: Array<RadarFieldDefinition>;
|
|
127652
128783
|
userContext?: Maybe<RadarUserContext>;
|
|
127653
128784
|
workerFields: Array<RadarFieldDefinition>;
|
|
@@ -129663,6 +130794,7 @@ export declare enum SearchIssueStatusCategory {
|
|
|
129663
130794
|
export declare type SearchItemConnection = {
|
|
129664
130795
|
__typename?: 'SearchItemConnection';
|
|
129665
130796
|
abTest?: Maybe<SearchAbTest>;
|
|
130797
|
+
autocompleteSuggestions?: Maybe<Array<Scalars['String']['output']>>;
|
|
129666
130798
|
deferredEdges?: Maybe<Array<SearchResultItemEdge>>;
|
|
129667
130799
|
edges: Array<SearchResultItemEdge>;
|
|
129668
130800
|
errors?: Maybe<Array<SearchError>>;
|
|
@@ -152137,6 +153269,12 @@ export declare type StakeholderCommsPreferencesInput = {
|
|
|
152137
153269
|
sms?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
152138
153270
|
webhook?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
152139
153271
|
};
|
|
153272
|
+
export declare type StakeholderCommsPublicCommunicationResponse = {
|
|
153273
|
+
__typename?: 'StakeholderCommsPublicCommunicationResponse';
|
|
153274
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
153275
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
153276
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
153277
|
+
};
|
|
152140
153278
|
export declare type StakeholderCommsResendInviteInput = {
|
|
152141
153279
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
152142
153280
|
emailId: Scalars['String']['input'];
|
|
@@ -152413,8 +153551,10 @@ export declare type StakeholderCommsSubscriptionData = {
|
|
|
152413
153551
|
email?: InputMaybe<Scalars['String']['input']>;
|
|
152414
153552
|
phoneCountry?: InputMaybe<Scalars['String']['input']>;
|
|
152415
153553
|
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
153554
|
+
webhookEndpoint?: InputMaybe<Scalars['String']['input']>;
|
|
152416
153555
|
};
|
|
152417
153556
|
export declare type StakeholderCommsSubscriptionRequest = {
|
|
153557
|
+
captchaToken?: InputMaybe<Scalars['String']['input']>;
|
|
152418
153558
|
itemId: Scalars['String']['input'];
|
|
152419
153559
|
itemType: StakeholderCommsSubscriberItemType;
|
|
152420
153560
|
subscriptionData?: InputMaybe<StakeholderCommsSubscriptionData>;
|
|
@@ -152807,6 +153947,7 @@ export declare type SupportRequest = {
|
|
|
152807
153947
|
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
152808
153948
|
reporter: SupportRequestUser;
|
|
152809
153949
|
requestTypeName: Scalars['String']['output'];
|
|
153950
|
+
requesterQmId?: Maybe<Scalars['String']['output']>;
|
|
152810
153951
|
sourceId?: Maybe<Scalars['String']['output']>;
|
|
152811
153952
|
sourceLicense?: Maybe<Scalars['String']['output']>;
|
|
152812
153953
|
sourceSystemLink?: Maybe<Scalars['String']['output']>;
|
|
@@ -153552,6 +154693,7 @@ export declare enum TeamSearchField {
|
|
|
153552
154693
|
export declare type TeamSearchFilter = {
|
|
153553
154694
|
membership?: InputMaybe<TeamMembershipFilter>;
|
|
153554
154695
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
154696
|
+
teamTypes?: InputMaybe<TeamTypeFilter>;
|
|
153555
154697
|
};
|
|
153556
154698
|
export declare type TeamSearchResult = {
|
|
153557
154699
|
__typename?: 'TeamSearchResult';
|
|
@@ -153641,6 +154783,9 @@ export declare type TeamTypeEdge = {
|
|
|
153641
154783
|
cursor: Scalars['String']['output'];
|
|
153642
154784
|
node?: Maybe<TeamType>;
|
|
153643
154785
|
};
|
|
154786
|
+
export declare type TeamTypeFilter = {
|
|
154787
|
+
teamTypeIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
154788
|
+
};
|
|
153644
154789
|
export declare enum TeamTypeState {
|
|
153645
154790
|
Active = "ACTIVE",
|
|
153646
154791
|
DeleteInProgress = "DELETE_IN_PROGRESS"
|
|
@@ -155159,6 +156304,14 @@ export declare type TownsquareGoalsCreateGoalTypePairInput = {
|
|
|
155159
156304
|
goalType: TownsquareCreateGoalTypeInputV2;
|
|
155160
156305
|
successMeasureType?: InputMaybe<TownsquareCreateOrEditSuccessMeasureInput>;
|
|
155161
156306
|
};
|
|
156307
|
+
export declare type TownsquareGoalsCreateInput = {
|
|
156308
|
+
containerId: Scalars['ID']['input'];
|
|
156309
|
+
goalTypeId: Scalars['ID']['input'];
|
|
156310
|
+
name: Scalars['String']['input'];
|
|
156311
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
156312
|
+
parentGoalId?: InputMaybe<Scalars['ID']['input']>;
|
|
156313
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
156314
|
+
};
|
|
155162
156315
|
export declare type TownsquareGoalsCreateLearningInput = {
|
|
155163
156316
|
description: Scalars['String']['input'];
|
|
155164
156317
|
goalId: Scalars['ID']['input'];
|
|
@@ -155170,6 +156323,12 @@ export declare type TownsquareGoalsCreateLearningPayload = {
|
|
|
155170
156323
|
learning?: Maybe<TownsquareLearning>;
|
|
155171
156324
|
success: Scalars['Boolean']['output'];
|
|
155172
156325
|
};
|
|
156326
|
+
export declare type TownsquareGoalsCreatePayload = {
|
|
156327
|
+
__typename?: 'TownsquareGoalsCreatePayload';
|
|
156328
|
+
errors?: Maybe<Array<MutationError>>;
|
|
156329
|
+
goal?: Maybe<TownsquareGoal>;
|
|
156330
|
+
success: Scalars['Boolean']['output'];
|
|
156331
|
+
};
|
|
155173
156332
|
export declare type TownsquareGoalsCreateRiskInput = {
|
|
155174
156333
|
description: Scalars['String']['input'];
|
|
155175
156334
|
goalId: Scalars['ID']['input'];
|
|
@@ -159577,6 +160736,7 @@ export declare type TrelloMemberPrefs = {
|
|
|
159577
160736
|
__typename?: 'TrelloMemberPrefs';
|
|
159578
160737
|
colorBlind?: Maybe<Scalars['Boolean']['output']>;
|
|
159579
160738
|
keyboardShortcutsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
160739
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
159580
160740
|
};
|
|
159581
160741
|
export declare type TrelloMemberReferral = {
|
|
159582
160742
|
__typename?: 'TrelloMemberReferral';
|
|
@@ -159806,6 +160966,7 @@ export declare type TrelloMutationApi = {
|
|
|
159806
160966
|
updateCardRole?: Maybe<TrelloUpdateCardRolePayload>;
|
|
159807
160967
|
updateInboxBackground?: Maybe<TrelloUpdateInboxBackgroundPayload>;
|
|
159808
160968
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
160969
|
+
updateMemberTimezone?: Maybe<TrelloUpdateMemberTimezonePayload>;
|
|
159809
160970
|
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
159810
160971
|
updatePrimaryPlannerAccount?: Maybe<TrelloUpdatePrimaryPlannerAccountPayload>;
|
|
159811
160972
|
updateProactiveSmartScheduleStatus?: Maybe<TrelloUpdateProactiveSmartScheduleStatusPayload>;
|
|
@@ -159996,6 +161157,9 @@ export declare type TrelloMutationApiUpdateInboxBackgroundArgs = {
|
|
|
159996
161157
|
export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
159997
161158
|
input: TrelloUpdateKeyboardShortcutsPrefInput;
|
|
159998
161159
|
};
|
|
161160
|
+
export declare type TrelloMutationApiUpdateMemberTimezoneArgs = {
|
|
161161
|
+
input: TrelloUpdateMemberTimezoneInput;
|
|
161162
|
+
};
|
|
159999
161163
|
export declare type TrelloMutationApiUpdateOAuth2ClientArgs = {
|
|
160000
161164
|
input: TrelloUpdateOAuth2ClientInput;
|
|
160001
161165
|
};
|
|
@@ -161452,6 +162616,15 @@ export declare type TrelloUpdateKeyboardShortcutsPrefPayload = Payload & {
|
|
|
161452
162616
|
errors?: Maybe<Array<MutationError>>;
|
|
161453
162617
|
success: Scalars['Boolean']['output'];
|
|
161454
162618
|
};
|
|
162619
|
+
export declare type TrelloUpdateMemberTimezoneInput = {
|
|
162620
|
+
value: Scalars['String']['input'];
|
|
162621
|
+
};
|
|
162622
|
+
export declare type TrelloUpdateMemberTimezonePayload = Payload & {
|
|
162623
|
+
__typename?: 'TrelloUpdateMemberTimezonePayload';
|
|
162624
|
+
errors?: Maybe<Array<MutationError>>;
|
|
162625
|
+
member?: Maybe<TrelloMember>;
|
|
162626
|
+
success: Scalars['Boolean']['output'];
|
|
162627
|
+
};
|
|
161455
162628
|
export declare type TrelloUpdateOAuth2ClientInput = {
|
|
161456
162629
|
appContactLink?: InputMaybe<Scalars['String']['input']>;
|
|
161457
162630
|
appDescription?: InputMaybe<Scalars['String']['input']>;
|