@forge/cli-shared 6.5.2-experimental-4d5d98e → 6.5.2-experimental-147ff14
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 +4 -3
- package/out/graphql/graphql-types.d.ts +1624 -70
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +75 -26
- package/out/ui/text.d.ts +0 -131
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -142
- package/package.json +2 -2
|
@@ -929,6 +929,7 @@ export declare type App = {
|
|
|
929
929
|
termsOfService?: Maybe<Scalars['String']['output']>;
|
|
930
930
|
updatedAt: Scalars['DateTime']['output'];
|
|
931
931
|
vendorName?: Maybe<Scalars['String']['output']>;
|
|
932
|
+
vendorType?: Maybe<Scalars['String']['output']>;
|
|
932
933
|
};
|
|
933
934
|
export declare type AppDeploymentsArgs = {
|
|
934
935
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1121,6 +1122,7 @@ export declare type AppEnvironmentVersion = {
|
|
|
1121
1122
|
extensionByKey?: Maybe<AppVersionExtension>;
|
|
1122
1123
|
extensions?: Maybe<AppVersionExtensions>;
|
|
1123
1124
|
id: Scalars['ID']['output'];
|
|
1125
|
+
installations?: Maybe<AppInstallationByIndexConnection>;
|
|
1124
1126
|
isLatest: Scalars['Boolean']['output'];
|
|
1125
1127
|
migrationKeys?: Maybe<MigrationKeys>;
|
|
1126
1128
|
permissions: Array<AppPermission>;
|
|
@@ -1129,14 +1131,24 @@ export declare type AppEnvironmentVersion = {
|
|
|
1129
1131
|
storage: Storage;
|
|
1130
1132
|
trustSignal: TrustSignal;
|
|
1131
1133
|
updatedAt: Scalars['String']['output'];
|
|
1134
|
+
upgradeableByRolloutFromVersion: UpgradeableByRollout;
|
|
1132
1135
|
version: Scalars['String']['output'];
|
|
1133
1136
|
};
|
|
1134
1137
|
export declare type AppEnvironmentVersionExtensionByKeyArgs = {
|
|
1135
1138
|
key: Scalars['String']['input'];
|
|
1136
1139
|
};
|
|
1140
|
+
export declare type AppEnvironmentVersionInstallationsArgs = {
|
|
1141
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1142
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1143
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1144
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1145
|
+
};
|
|
1137
1146
|
export declare type AppEnvironmentVersionTrustSignalArgs = {
|
|
1138
1147
|
key: Scalars['ID']['input'];
|
|
1139
1148
|
};
|
|
1149
|
+
export declare type AppEnvironmentVersionUpgradeableByRolloutFromVersionArgs = {
|
|
1150
|
+
sourceVersionId: Scalars['ID']['input'];
|
|
1151
|
+
};
|
|
1140
1152
|
export declare type AppEnvironmentVersionConnection = {
|
|
1141
1153
|
__typename?: 'AppEnvironmentVersionConnection';
|
|
1142
1154
|
edges?: Maybe<Array<Maybe<AppEnvironmentVersionEdge>>>;
|
|
@@ -1521,6 +1533,26 @@ export declare type AppRecUndoDismissalResult = {
|
|
|
1521
1533
|
description: Scalars['String']['output'];
|
|
1522
1534
|
undone: Scalars['Boolean']['output'];
|
|
1523
1535
|
};
|
|
1536
|
+
export declare type AppRollout = {
|
|
1537
|
+
__typename?: 'AppRollout';
|
|
1538
|
+
appId: Scalars['ID']['output'];
|
|
1539
|
+
cancelledByAccountId?: Maybe<Scalars['String']['output']>;
|
|
1540
|
+
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1541
|
+
completedUpgradeCount: Scalars['Int']['output'];
|
|
1542
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1543
|
+
createdByAccountId: Scalars['String']['output'];
|
|
1544
|
+
failedUpgradeCount: Scalars['Int']['output'];
|
|
1545
|
+
fromVersionId: Scalars['ID']['output'];
|
|
1546
|
+
id: Scalars['ID']['output'];
|
|
1547
|
+
pendingUpgradeCount: Scalars['Int']['output'];
|
|
1548
|
+
status: AppRolloutStatus;
|
|
1549
|
+
toVersionId: Scalars['ID']['output'];
|
|
1550
|
+
};
|
|
1551
|
+
export declare enum AppRolloutStatus {
|
|
1552
|
+
Cancelled = "CANCELLED",
|
|
1553
|
+
Complete = "COMPLETE",
|
|
1554
|
+
Running = "RUNNING"
|
|
1555
|
+
}
|
|
1524
1556
|
export declare type AppSecurityPoliciesPermission = {
|
|
1525
1557
|
__typename?: 'AppSecurityPoliciesPermission';
|
|
1526
1558
|
policies?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -2736,6 +2768,14 @@ export declare type CqlDisplayableType = {
|
|
|
2736
2768
|
label?: Maybe<Scalars['String']['output']>;
|
|
2737
2769
|
type?: Maybe<Scalars['String']['output']>;
|
|
2738
2770
|
};
|
|
2771
|
+
export declare type CancelAppRolloutInput = {
|
|
2772
|
+
id: Scalars['ID']['input'];
|
|
2773
|
+
};
|
|
2774
|
+
export declare type CancelAppRolloutPayload = Payload & {
|
|
2775
|
+
__typename?: 'CancelAppRolloutPayload';
|
|
2776
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2777
|
+
success: Scalars['Boolean']['output'];
|
|
2778
|
+
};
|
|
2739
2779
|
export declare type CanvasToken = {
|
|
2740
2780
|
__typename?: 'CanvasToken';
|
|
2741
2781
|
expiryDateTime: Scalars['Long']['output'];
|
|
@@ -3869,6 +3909,7 @@ export declare type CommerceTransactionAccountExperienceCapabilities = {
|
|
|
3869
3909
|
};
|
|
3870
3910
|
export declare type CommerceTrial = {
|
|
3871
3911
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
3912
|
+
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
3872
3913
|
};
|
|
3873
3914
|
export declare type CompanyHubFeature = {
|
|
3874
3915
|
__typename?: 'CompanyHubFeature';
|
|
@@ -6503,12 +6544,18 @@ export declare type CompassJqlMetricSourceConfiguration = {
|
|
|
6503
6544
|
__typename?: 'CompassJQLMetricSourceConfiguration';
|
|
6504
6545
|
executingJql?: Maybe<Scalars['String']['output']>;
|
|
6505
6546
|
jql?: Maybe<Scalars['String']['output']>;
|
|
6547
|
+
potentialErrors?: Maybe<CompassJqlMetricSourceConfigurationPotentialErrorsResult>;
|
|
6506
6548
|
userContext?: Maybe<User>;
|
|
6507
6549
|
viewerPermissions?: Maybe<CompassJqlMetricSourceInstancePermissions>;
|
|
6508
6550
|
};
|
|
6509
6551
|
export declare type CompassJqlMetricSourceConfigurationInput = {
|
|
6510
6552
|
jql: Scalars['String']['input'];
|
|
6511
6553
|
};
|
|
6554
|
+
export declare type CompassJqlMetricSourceConfigurationPotentialErrors = {
|
|
6555
|
+
__typename?: 'CompassJQLMetricSourceConfigurationPotentialErrors';
|
|
6556
|
+
configErrors?: Maybe<Array<Scalars['String']['output']>>;
|
|
6557
|
+
};
|
|
6558
|
+
export declare type CompassJqlMetricSourceConfigurationPotentialErrorsResult = CompassJqlMetricSourceConfigurationPotentialErrors | QueryError;
|
|
6512
6559
|
export declare type CompassJqlMetricSourceInstancePermissions = {
|
|
6513
6560
|
__typename?: 'CompassJQLMetricSourceInstancePermissions';
|
|
6514
6561
|
revokePollingUser?: Maybe<CompassPermissionResult>;
|
|
@@ -17795,6 +17842,17 @@ export declare type CreateAppResponse = Payload & {
|
|
|
17795
17842
|
errors?: Maybe<Array<MutationError>>;
|
|
17796
17843
|
success: Scalars['Boolean']['output'];
|
|
17797
17844
|
};
|
|
17845
|
+
export declare type CreateAppRolloutInput = {
|
|
17846
|
+
appId: Scalars['ID']['input'];
|
|
17847
|
+
fromVersionId: Scalars['ID']['input'];
|
|
17848
|
+
toVersionId: Scalars['ID']['input'];
|
|
17849
|
+
};
|
|
17850
|
+
export declare type CreateAppRolloutPayload = Payload & {
|
|
17851
|
+
__typename?: 'CreateAppRolloutPayload';
|
|
17852
|
+
appRollout?: Maybe<AppRollout>;
|
|
17853
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17854
|
+
success: Scalars['Boolean']['output'];
|
|
17855
|
+
};
|
|
17798
17856
|
export declare type CreateAppTunnelResponse = Payload & {
|
|
17799
17857
|
__typename?: 'CreateAppTunnelResponse';
|
|
17800
17858
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -19960,6 +20018,12 @@ export declare type DevAiGetSupportedReposArgs = {
|
|
|
19960
20018
|
repoUrls?: InputMaybe<Array<Scalars['URL']['input']>>;
|
|
19961
20019
|
workspaceId: Scalars['ID']['input'];
|
|
19962
20020
|
};
|
|
20021
|
+
export declare type DevAiAutodevContinueJobWithPromptPayload = Payload & {
|
|
20022
|
+
__typename?: 'DevAiAutodevContinueJobWithPromptPayload';
|
|
20023
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20024
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
20025
|
+
success: Scalars['Boolean']['output'];
|
|
20026
|
+
};
|
|
19963
20027
|
export declare type DevAiAutodevLog = {
|
|
19964
20028
|
id: Scalars['ID']['output'];
|
|
19965
20029
|
phase?: Maybe<DevAiAutodevLogPhase>;
|
|
@@ -20187,6 +20251,12 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
|
|
|
20187
20251
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
20188
20252
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
20189
20253
|
};
|
|
20254
|
+
export declare type DevAiInvokeAutodevRovoAgentPayload = Payload & {
|
|
20255
|
+
__typename?: 'DevAiInvokeAutodevRovoAgentPayload';
|
|
20256
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20257
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
20258
|
+
success: Scalars['Boolean']['output'];
|
|
20259
|
+
};
|
|
20190
20260
|
export declare enum DevAiIssueScopingLabel {
|
|
20191
20261
|
Complex = "COMPLEX",
|
|
20192
20262
|
InScope = "IN_SCOPE",
|
|
@@ -20201,6 +20271,7 @@ export declare type DevAiIssueScopingResult = {
|
|
|
20201
20271
|
isAddingCodingTermsSuggested?: Maybe<Scalars['Boolean']['output']>;
|
|
20202
20272
|
issueId: Scalars['ID']['output'];
|
|
20203
20273
|
label?: Maybe<DevAiIssueScopingLabel>;
|
|
20274
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
20204
20275
|
};
|
|
20205
20276
|
export declare type DevAiMutations = {
|
|
20206
20277
|
__typename?: 'DevAiMutations';
|
|
@@ -20251,6 +20322,22 @@ export declare type DevAiPlaintextAutodevLog = DevAiAutodevLog & {
|
|
|
20251
20322
|
status?: Maybe<DevAiAutodevLogStatus>;
|
|
20252
20323
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
20253
20324
|
};
|
|
20325
|
+
export declare type DevAiRovoAgent = {
|
|
20326
|
+
__typename?: 'DevAiRovoAgent';
|
|
20327
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20328
|
+
id: Scalars['ID']['output'];
|
|
20329
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
20330
|
+
};
|
|
20331
|
+
export declare type DevAiRovoAgentConnection = {
|
|
20332
|
+
__typename?: 'DevAiRovoAgentConnection';
|
|
20333
|
+
edges?: Maybe<Array<Maybe<DevAiRovoAgentEdge>>>;
|
|
20334
|
+
pageInfo: PageInfo;
|
|
20335
|
+
};
|
|
20336
|
+
export declare type DevAiRovoAgentEdge = {
|
|
20337
|
+
__typename?: 'DevAiRovoAgentEdge';
|
|
20338
|
+
cursor: Scalars['String']['output'];
|
|
20339
|
+
node?: Maybe<DevAiRovoAgent>;
|
|
20340
|
+
};
|
|
20254
20341
|
export declare type DevAiRunAutofixScanInput = {
|
|
20255
20342
|
repoUrl: Scalars['URL']['input'];
|
|
20256
20343
|
restartIfCurrentlyRunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -22107,7 +22194,9 @@ export declare type EcosystemMutation = {
|
|
|
22107
22194
|
__typename?: 'EcosystemMutation';
|
|
22108
22195
|
addAppContributor?: Maybe<AddAppContributorResponsePayload>;
|
|
22109
22196
|
addMultipleAppContributor?: Maybe<AddMultipleAppContributorResponsePayload>;
|
|
22197
|
+
cancelAppRollout?: Maybe<CancelAppRolloutPayload>;
|
|
22110
22198
|
createAppEnvironment?: Maybe<CreateAppEnvironmentResponse>;
|
|
22199
|
+
createAppRollout?: Maybe<CreateAppRolloutPayload>;
|
|
22111
22200
|
deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
|
|
22112
22201
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
22113
22202
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
@@ -22126,9 +22215,15 @@ export declare type EcosystemMutationAddAppContributorArgs = {
|
|
|
22126
22215
|
export declare type EcosystemMutationAddMultipleAppContributorArgs = {
|
|
22127
22216
|
input: AddMultipleAppContributorInput;
|
|
22128
22217
|
};
|
|
22218
|
+
export declare type EcosystemMutationCancelAppRolloutArgs = {
|
|
22219
|
+
input: CancelAppRolloutInput;
|
|
22220
|
+
};
|
|
22129
22221
|
export declare type EcosystemMutationCreateAppEnvironmentArgs = {
|
|
22130
22222
|
input: CreateAppEnvironmentInput;
|
|
22131
22223
|
};
|
|
22224
|
+
export declare type EcosystemMutationCreateAppRolloutArgs = {
|
|
22225
|
+
input: CreateAppRolloutInput;
|
|
22226
|
+
};
|
|
22132
22227
|
export declare type EcosystemMutationDeleteAppEnvironmentArgs = {
|
|
22133
22228
|
input: DeleteAppEnvironmentInput;
|
|
22134
22229
|
};
|
|
@@ -22188,6 +22283,7 @@ export declare type EcosystemQuery = {
|
|
|
22188
22283
|
appInstallationsByApp?: Maybe<AppInstallationByIndexConnection>;
|
|
22189
22284
|
appInstallationsByContext?: Maybe<AppInstallationByIndexConnection>;
|
|
22190
22285
|
appPoliciesByAppIds?: Maybe<Array<EcosystemAppPoliciesByAppId>>;
|
|
22286
|
+
appRollout?: Maybe<AppRollout>;
|
|
22191
22287
|
appsInstalledInContexts: EcosystemAppsInstalledInContextsConnection;
|
|
22192
22288
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
22193
22289
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
@@ -22223,6 +22319,9 @@ export declare type EcosystemQueryAppInstallationsByContextArgs = {
|
|
|
22223
22319
|
export declare type EcosystemQueryAppPoliciesByAppIdsArgs = {
|
|
22224
22320
|
appIds: Array<Scalars['ID']['input']>;
|
|
22225
22321
|
};
|
|
22322
|
+
export declare type EcosystemQueryAppRolloutArgs = {
|
|
22323
|
+
id: Scalars['ID']['input'];
|
|
22324
|
+
};
|
|
22226
22325
|
export declare type EcosystemQueryAppsInstalledInContextsArgs = {
|
|
22227
22326
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
22228
22327
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -22629,7 +22728,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
22629
22728
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
22630
22729
|
node?: Maybe<ExternalAssociation>;
|
|
22631
22730
|
};
|
|
22632
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
22731
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
22633
22732
|
export declare type ExternalAttachment = {
|
|
22634
22733
|
__typename?: 'ExternalAttachment';
|
|
22635
22734
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -22775,6 +22874,29 @@ export declare type ExternalCollaboratorFeature = {
|
|
|
22775
22874
|
__typename?: 'ExternalCollaboratorFeature';
|
|
22776
22875
|
isEntitled: Scalars['Boolean']['output'];
|
|
22777
22876
|
};
|
|
22877
|
+
export declare type ExternalComment = Node & {
|
|
22878
|
+
__typename?: 'ExternalComment';
|
|
22879
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
22880
|
+
container?: Maybe<ExternalEntity>;
|
|
22881
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
22882
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
22883
|
+
createdBy?: Maybe<ExternalUser>;
|
|
22884
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
22885
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
22886
|
+
id: Scalars['ID']['output'];
|
|
22887
|
+
largeText?: Maybe<ExternalLargeContent>;
|
|
22888
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
22889
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
22890
|
+
parent?: Maybe<ExternalEntity>;
|
|
22891
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
22892
|
+
reactions?: Maybe<Array<Maybe<ExternalReactions>>>;
|
|
22893
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
22894
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
22895
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
22896
|
+
};
|
|
22897
|
+
export declare enum ExternalCommentReactionType {
|
|
22898
|
+
Like = "LIKE"
|
|
22899
|
+
}
|
|
22778
22900
|
export declare type ExternalCommit = Node & {
|
|
22779
22901
|
__typename?: 'ExternalCommit';
|
|
22780
22902
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -22958,6 +23080,7 @@ export declare type ExternalEntities = {
|
|
|
22958
23080
|
branch?: Maybe<Array<Maybe<ExternalBranch>>>;
|
|
22959
23081
|
buildInfo?: Maybe<Array<Maybe<ExternalBuildInfo>>>;
|
|
22960
23082
|
calendarEvent?: Maybe<Array<Maybe<ExternalCalendarEvent>>>;
|
|
23083
|
+
comment?: Maybe<Array<Maybe<ExternalComment>>>;
|
|
22961
23084
|
commit?: Maybe<Array<Maybe<ExternalCommit>>>;
|
|
22962
23085
|
conversation?: Maybe<Array<Maybe<ExternalConversation>>>;
|
|
22963
23086
|
deployment?: Maybe<Array<Maybe<ExternalDeployment>>>;
|
|
@@ -22976,7 +23099,7 @@ export declare type ExternalEntities = {
|
|
|
22976
23099
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
22977
23100
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
22978
23101
|
};
|
|
22979
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
23102
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
22980
23103
|
export declare type ExternalEnvironment = {
|
|
22981
23104
|
__typename?: 'ExternalEnvironment';
|
|
22982
23105
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -23187,6 +23310,11 @@ export declare enum ExternalPullRequestStatus {
|
|
|
23187
23310
|
Open = "OPEN",
|
|
23188
23311
|
Unknown = "UNKNOWN"
|
|
23189
23312
|
}
|
|
23313
|
+
export declare type ExternalReactions = {
|
|
23314
|
+
__typename?: 'ExternalReactions';
|
|
23315
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
23316
|
+
type?: Maybe<ExternalCommentReactionType>;
|
|
23317
|
+
};
|
|
23190
23318
|
export declare type ExternalRemoteLink = Node & {
|
|
23191
23319
|
__typename?: 'ExternalRemoteLink';
|
|
23192
23320
|
actionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -28392,6 +28520,8 @@ export declare type GraphStore = {
|
|
|
28392
28520
|
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
28393
28521
|
confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
|
|
28394
28522
|
confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
|
|
28523
|
+
confluencePageHasConfluenceDatabase?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseConnection>;
|
|
28524
|
+
confluencePageHasConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseConnection>;
|
|
28395
28525
|
confluencePageHasParentPage?: Maybe<GraphStoreSimplifiedConfluencePageHasParentPageConnection>;
|
|
28396
28526
|
confluencePageHasParentPageInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasParentPageInverseConnection>;
|
|
28397
28527
|
confluencePageSharedWithGroupInverse?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithGroupInverseConnection>;
|
|
@@ -28399,6 +28529,10 @@ export declare type GraphStore = {
|
|
|
28399
28529
|
confluencePageSharedWithUserInverse?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithUserInverseConnection>;
|
|
28400
28530
|
confluenceSpaceHasConfluenceBlogpost?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostConnection>;
|
|
28401
28531
|
confluenceSpaceHasConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseConnection>;
|
|
28532
|
+
confluenceSpaceHasConfluenceDatabase?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseConnection>;
|
|
28533
|
+
confluenceSpaceHasConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseConnection>;
|
|
28534
|
+
confluenceSpaceHasConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardConnection>;
|
|
28535
|
+
confluenceSpaceHasConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseConnection>;
|
|
28402
28536
|
contentReferencedEntity?: Maybe<GraphStoreSimplifiedContentReferencedEntityConnection>;
|
|
28403
28537
|
contentReferencedEntityBatch?: Maybe<GraphStoreBatchContentReferencedEntityConnection>;
|
|
28404
28538
|
contentReferencedEntityInverse?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseConnection>;
|
|
@@ -28738,6 +28872,8 @@ export declare type GraphStore = {
|
|
|
28738
28872
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
28739
28873
|
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
28740
28874
|
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
28875
|
+
userAssignedPir?: Maybe<GraphStoreSimplifiedUserAssignedPirConnection>;
|
|
28876
|
+
userAssignedPirInverse?: Maybe<GraphStoreSimplifiedUserAssignedPirInverseConnection>;
|
|
28741
28877
|
userAttendedCalendarEvent?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventConnection>;
|
|
28742
28878
|
userAttendedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection>;
|
|
28743
28879
|
userAuthoredCommit?: Maybe<GraphStoreSimplifiedUserAuthoredCommitConnection>;
|
|
@@ -28746,32 +28882,58 @@ export declare type GraphStore = {
|
|
|
28746
28882
|
userAuthoredPrInverse?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseConnection>;
|
|
28747
28883
|
userCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceConnection>;
|
|
28748
28884
|
userCanViewConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseConnection>;
|
|
28885
|
+
userCollaboratedOnDocument?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentConnection>;
|
|
28886
|
+
userCollaboratedOnDocumentInverse?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentInverseConnection>;
|
|
28749
28887
|
userContributedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection>;
|
|
28750
28888
|
userContributedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseConnection>;
|
|
28889
|
+
userContributedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseConnection>;
|
|
28890
|
+
userContributedConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseConnection>;
|
|
28751
28891
|
userContributedConfluencePage?: Maybe<GraphStoreSimplifiedUserContributedConfluencePageConnection>;
|
|
28752
28892
|
userContributedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluencePageInverseConnection>;
|
|
28893
|
+
userContributedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardConnection>;
|
|
28894
|
+
userContributedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseConnection>;
|
|
28753
28895
|
userCreatedBranch?: Maybe<GraphStoreSimplifiedUserCreatedBranchConnection>;
|
|
28754
28896
|
userCreatedBranchInverse?: Maybe<GraphStoreSimplifiedUserCreatedBranchInverseConnection>;
|
|
28897
|
+
userCreatedCalendarEvent?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventConnection>;
|
|
28898
|
+
userCreatedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection>;
|
|
28755
28899
|
userCreatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection>;
|
|
28756
28900
|
userCreatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection>;
|
|
28901
|
+
userCreatedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection>;
|
|
28902
|
+
userCreatedConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseConnection>;
|
|
28757
28903
|
userCreatedConfluencePage?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageConnection>;
|
|
28758
28904
|
userCreatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection>;
|
|
28905
|
+
userCreatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection>;
|
|
28906
|
+
userCreatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseConnection>;
|
|
28907
|
+
userCreatedDesign?: Maybe<GraphStoreSimplifiedUserCreatedDesignConnection>;
|
|
28908
|
+
userCreatedDesignInverse?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseConnection>;
|
|
28909
|
+
userCreatedDocument?: Maybe<GraphStoreSimplifiedUserCreatedDocumentConnection>;
|
|
28910
|
+
userCreatedDocumentInverse?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseConnection>;
|
|
28759
28911
|
userCreatedLoomVideo?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoConnection>;
|
|
28760
28912
|
userCreatedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection>;
|
|
28761
28913
|
userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
|
|
28762
28914
|
userCreatedMessageInverse?: Maybe<GraphStoreSimplifiedUserCreatedMessageInverseConnection>;
|
|
28915
|
+
userCreatedRemoteLink?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkConnection>;
|
|
28916
|
+
userCreatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkInverseConnection>;
|
|
28763
28917
|
userCreatedRepository?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryConnection>;
|
|
28764
28918
|
userCreatedRepositoryInverse?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryInverseConnection>;
|
|
28765
28919
|
userFavoritedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection>;
|
|
28766
28920
|
userFavoritedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseConnection>;
|
|
28921
|
+
userFavoritedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseConnection>;
|
|
28922
|
+
userFavoritedConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseConnection>;
|
|
28767
28923
|
userFavoritedConfluencePage?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageConnection>;
|
|
28768
28924
|
userFavoritedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageInverseConnection>;
|
|
28925
|
+
userFavoritedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardConnection>;
|
|
28926
|
+
userFavoritedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseConnection>;
|
|
28769
28927
|
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
28770
28928
|
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
28771
28929
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
28772
28930
|
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
28773
28931
|
userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
|
|
28774
28932
|
userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
|
|
28933
|
+
userLastUpdatedDesign?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignConnection>;
|
|
28934
|
+
userLastUpdatedDesignInverse?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignInverseConnection>;
|
|
28935
|
+
userLaunchedRelease?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseConnection>;
|
|
28936
|
+
userLaunchedReleaseInverse?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseInverseConnection>;
|
|
28775
28937
|
userMemberOfConversation?: Maybe<GraphStoreSimplifiedUserMemberOfConversationConnection>;
|
|
28776
28938
|
userMemberOfConversationInverse?: Maybe<GraphStoreSimplifiedUserMemberOfConversationInverseConnection>;
|
|
28777
28939
|
userMergedPullRequest?: Maybe<GraphStoreSimplifiedUserMergedPullRequestConnection>;
|
|
@@ -28780,6 +28942,8 @@ export declare type GraphStore = {
|
|
|
28780
28942
|
userOwnedBranchInverse?: Maybe<GraphStoreSimplifiedUserOwnedBranchInverseConnection>;
|
|
28781
28943
|
userOwnedCalendarEvent?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventConnection>;
|
|
28782
28944
|
userOwnedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventInverseConnection>;
|
|
28945
|
+
userOwnedDocument?: Maybe<GraphStoreSimplifiedUserOwnedDocumentConnection>;
|
|
28946
|
+
userOwnedDocumentInverse?: Maybe<GraphStoreSimplifiedUserOwnedDocumentInverseConnection>;
|
|
28783
28947
|
userOwnedRemoteLink?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkConnection>;
|
|
28784
28948
|
userOwnedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkInverseConnection>;
|
|
28785
28949
|
userOwnedRepository?: Maybe<GraphStoreSimplifiedUserOwnedRepositoryConnection>;
|
|
@@ -28794,6 +28958,8 @@ export declare type GraphStore = {
|
|
|
28794
28958
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
28795
28959
|
userTaggedInComment?: Maybe<GraphStoreSimplifiedUserTaggedInCommentConnection>;
|
|
28796
28960
|
userTaggedInCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseConnection>;
|
|
28961
|
+
userTaggedInConfluencePage?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageConnection>;
|
|
28962
|
+
userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
|
|
28797
28963
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
28798
28964
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
28799
28965
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
@@ -28802,6 +28968,8 @@ export declare type GraphStore = {
|
|
|
28802
28968
|
userUpdatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageInverseConnection>;
|
|
28803
28969
|
userUpdatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceConnection>;
|
|
28804
28970
|
userUpdatedConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseConnection>;
|
|
28971
|
+
userUpdatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardConnection>;
|
|
28972
|
+
userUpdatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseConnection>;
|
|
28805
28973
|
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
28806
28974
|
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
28807
28975
|
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
@@ -28816,6 +28984,8 @@ export declare type GraphStore = {
|
|
|
28816
28984
|
userWatchesConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseConnection>;
|
|
28817
28985
|
userWatchesConfluencePage?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageConnection>;
|
|
28818
28986
|
userWatchesConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageInverseConnection>;
|
|
28987
|
+
userWatchesConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardConnection>;
|
|
28988
|
+
userWatchesConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseConnection>;
|
|
28819
28989
|
versionAssociatedBranch?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchConnection>;
|
|
28820
28990
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
28821
28991
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
@@ -29152,6 +29322,20 @@ export declare type GraphStoreConfluencePageHasConfluenceCommentInverseArgs = {
|
|
|
29152
29322
|
id: Scalars['ID']['input'];
|
|
29153
29323
|
sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceCommentSortInput>;
|
|
29154
29324
|
};
|
|
29325
|
+
export declare type GraphStoreConfluencePageHasConfluenceDatabaseArgs = {
|
|
29326
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29327
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29328
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29329
|
+
id: Scalars['ID']['input'];
|
|
29330
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceDatabaseSortInput>;
|
|
29331
|
+
};
|
|
29332
|
+
export declare type GraphStoreConfluencePageHasConfluenceDatabaseInverseArgs = {
|
|
29333
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29334
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29335
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29336
|
+
id: Scalars['ID']['input'];
|
|
29337
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceDatabaseSortInput>;
|
|
29338
|
+
};
|
|
29155
29339
|
export declare type GraphStoreConfluencePageHasParentPageArgs = {
|
|
29156
29340
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29157
29341
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29201,6 +29385,34 @@ export declare type GraphStoreConfluenceSpaceHasConfluenceBlogpostInverseArgs =
|
|
|
29201
29385
|
id: Scalars['ID']['input'];
|
|
29202
29386
|
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceBlogpostSortInput>;
|
|
29203
29387
|
};
|
|
29388
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceDatabaseArgs = {
|
|
29389
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29390
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29391
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29392
|
+
id: Scalars['ID']['input'];
|
|
29393
|
+
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceDatabaseSortInput>;
|
|
29394
|
+
};
|
|
29395
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceDatabaseInverseArgs = {
|
|
29396
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29397
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29398
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29399
|
+
id: Scalars['ID']['input'];
|
|
29400
|
+
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceDatabaseSortInput>;
|
|
29401
|
+
};
|
|
29402
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceWhiteboardArgs = {
|
|
29403
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29404
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29405
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29406
|
+
id: Scalars['ID']['input'];
|
|
29407
|
+
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceWhiteboardSortInput>;
|
|
29408
|
+
};
|
|
29409
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceWhiteboardInverseArgs = {
|
|
29410
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29411
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29412
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29413
|
+
id: Scalars['ID']['input'];
|
|
29414
|
+
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceWhiteboardSortInput>;
|
|
29415
|
+
};
|
|
29204
29416
|
export declare type GraphStoreContentReferencedEntityArgs = {
|
|
29205
29417
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29206
29418
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31353,6 +31565,20 @@ export declare type GraphStoreUserAssignedIncidentInverseArgs = {
|
|
|
31353
31565
|
id: Scalars['ID']['input'];
|
|
31354
31566
|
sort?: InputMaybe<GraphStoreUserAssignedIncidentSortInput>;
|
|
31355
31567
|
};
|
|
31568
|
+
export declare type GraphStoreUserAssignedPirArgs = {
|
|
31569
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31570
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31571
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31572
|
+
id: Scalars['ID']['input'];
|
|
31573
|
+
sort?: InputMaybe<GraphStoreUserAssignedPirSortInput>;
|
|
31574
|
+
};
|
|
31575
|
+
export declare type GraphStoreUserAssignedPirInverseArgs = {
|
|
31576
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31577
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31578
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31579
|
+
id: Scalars['ID']['input'];
|
|
31580
|
+
sort?: InputMaybe<GraphStoreUserAssignedPirSortInput>;
|
|
31581
|
+
};
|
|
31356
31582
|
export declare type GraphStoreUserAttendedCalendarEventArgs = {
|
|
31357
31583
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31358
31584
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31409,6 +31635,20 @@ export declare type GraphStoreUserCanViewConfluenceSpaceInverseArgs = {
|
|
|
31409
31635
|
id: Scalars['ID']['input'];
|
|
31410
31636
|
sort?: InputMaybe<GraphStoreUserCanViewConfluenceSpaceSortInput>;
|
|
31411
31637
|
};
|
|
31638
|
+
export declare type GraphStoreUserCollaboratedOnDocumentArgs = {
|
|
31639
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31640
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31641
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31642
|
+
id: Scalars['ID']['input'];
|
|
31643
|
+
sort?: InputMaybe<GraphStoreUserCollaboratedOnDocumentSortInput>;
|
|
31644
|
+
};
|
|
31645
|
+
export declare type GraphStoreUserCollaboratedOnDocumentInverseArgs = {
|
|
31646
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31647
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31648
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31649
|
+
id: Scalars['ID']['input'];
|
|
31650
|
+
sort?: InputMaybe<GraphStoreUserCollaboratedOnDocumentSortInput>;
|
|
31651
|
+
};
|
|
31412
31652
|
export declare type GraphStoreUserContributedConfluenceBlogpostArgs = {
|
|
31413
31653
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31414
31654
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31423,6 +31663,20 @@ export declare type GraphStoreUserContributedConfluenceBlogpostInverseArgs = {
|
|
|
31423
31663
|
id: Scalars['ID']['input'];
|
|
31424
31664
|
sort?: InputMaybe<GraphStoreUserContributedConfluenceBlogpostSortInput>;
|
|
31425
31665
|
};
|
|
31666
|
+
export declare type GraphStoreUserContributedConfluenceDatabaseArgs = {
|
|
31667
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31668
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31669
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31670
|
+
id: Scalars['ID']['input'];
|
|
31671
|
+
sort?: InputMaybe<GraphStoreUserContributedConfluenceDatabaseSortInput>;
|
|
31672
|
+
};
|
|
31673
|
+
export declare type GraphStoreUserContributedConfluenceDatabaseInverseArgs = {
|
|
31674
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31675
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31676
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31677
|
+
id: Scalars['ID']['input'];
|
|
31678
|
+
sort?: InputMaybe<GraphStoreUserContributedConfluenceDatabaseSortInput>;
|
|
31679
|
+
};
|
|
31426
31680
|
export declare type GraphStoreUserContributedConfluencePageArgs = {
|
|
31427
31681
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31428
31682
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31437,6 +31691,20 @@ export declare type GraphStoreUserContributedConfluencePageInverseArgs = {
|
|
|
31437
31691
|
id: Scalars['ID']['input'];
|
|
31438
31692
|
sort?: InputMaybe<GraphStoreUserContributedConfluencePageSortInput>;
|
|
31439
31693
|
};
|
|
31694
|
+
export declare type GraphStoreUserContributedConfluenceWhiteboardArgs = {
|
|
31695
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31696
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31697
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31698
|
+
id: Scalars['ID']['input'];
|
|
31699
|
+
sort?: InputMaybe<GraphStoreUserContributedConfluenceWhiteboardSortInput>;
|
|
31700
|
+
};
|
|
31701
|
+
export declare type GraphStoreUserContributedConfluenceWhiteboardInverseArgs = {
|
|
31702
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31703
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31704
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31705
|
+
id: Scalars['ID']['input'];
|
|
31706
|
+
sort?: InputMaybe<GraphStoreUserContributedConfluenceWhiteboardSortInput>;
|
|
31707
|
+
};
|
|
31440
31708
|
export declare type GraphStoreUserCreatedBranchArgs = {
|
|
31441
31709
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31442
31710
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31451,6 +31719,20 @@ export declare type GraphStoreUserCreatedBranchInverseArgs = {
|
|
|
31451
31719
|
id: Scalars['ID']['input'];
|
|
31452
31720
|
sort?: InputMaybe<GraphStoreUserCreatedBranchSortInput>;
|
|
31453
31721
|
};
|
|
31722
|
+
export declare type GraphStoreUserCreatedCalendarEventArgs = {
|
|
31723
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31724
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31725
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31726
|
+
id: Scalars['ID']['input'];
|
|
31727
|
+
sort?: InputMaybe<GraphStoreUserCreatedCalendarEventSortInput>;
|
|
31728
|
+
};
|
|
31729
|
+
export declare type GraphStoreUserCreatedCalendarEventInverseArgs = {
|
|
31730
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31731
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31732
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31733
|
+
id: Scalars['ID']['input'];
|
|
31734
|
+
sort?: InputMaybe<GraphStoreUserCreatedCalendarEventSortInput>;
|
|
31735
|
+
};
|
|
31454
31736
|
export declare type GraphStoreUserCreatedConfluenceBlogpostArgs = {
|
|
31455
31737
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31456
31738
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31465,6 +31747,20 @@ export declare type GraphStoreUserCreatedConfluenceBlogpostInverseArgs = {
|
|
|
31465
31747
|
id: Scalars['ID']['input'];
|
|
31466
31748
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostSortInput>;
|
|
31467
31749
|
};
|
|
31750
|
+
export declare type GraphStoreUserCreatedConfluenceDatabaseArgs = {
|
|
31751
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31752
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31753
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31754
|
+
id: Scalars['ID']['input'];
|
|
31755
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceDatabaseSortInput>;
|
|
31756
|
+
};
|
|
31757
|
+
export declare type GraphStoreUserCreatedConfluenceDatabaseInverseArgs = {
|
|
31758
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31759
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31760
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31761
|
+
id: Scalars['ID']['input'];
|
|
31762
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceDatabaseSortInput>;
|
|
31763
|
+
};
|
|
31468
31764
|
export declare type GraphStoreUserCreatedConfluencePageArgs = {
|
|
31469
31765
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31470
31766
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31479,6 +31775,48 @@ export declare type GraphStoreUserCreatedConfluencePageInverseArgs = {
|
|
|
31479
31775
|
id: Scalars['ID']['input'];
|
|
31480
31776
|
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
|
|
31481
31777
|
};
|
|
31778
|
+
export declare type GraphStoreUserCreatedConfluenceWhiteboardArgs = {
|
|
31779
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31780
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31781
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31782
|
+
id: Scalars['ID']['input'];
|
|
31783
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceWhiteboardSortInput>;
|
|
31784
|
+
};
|
|
31785
|
+
export declare type GraphStoreUserCreatedConfluenceWhiteboardInverseArgs = {
|
|
31786
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31787
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31788
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31789
|
+
id: Scalars['ID']['input'];
|
|
31790
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceWhiteboardSortInput>;
|
|
31791
|
+
};
|
|
31792
|
+
export declare type GraphStoreUserCreatedDesignArgs = {
|
|
31793
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31794
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31795
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31796
|
+
id: Scalars['ID']['input'];
|
|
31797
|
+
sort?: InputMaybe<GraphStoreUserCreatedDesignSortInput>;
|
|
31798
|
+
};
|
|
31799
|
+
export declare type GraphStoreUserCreatedDesignInverseArgs = {
|
|
31800
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31801
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31802
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31803
|
+
id: Scalars['ID']['input'];
|
|
31804
|
+
sort?: InputMaybe<GraphStoreUserCreatedDesignSortInput>;
|
|
31805
|
+
};
|
|
31806
|
+
export declare type GraphStoreUserCreatedDocumentArgs = {
|
|
31807
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31808
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31809
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31810
|
+
id: Scalars['ID']['input'];
|
|
31811
|
+
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
31812
|
+
};
|
|
31813
|
+
export declare type GraphStoreUserCreatedDocumentInverseArgs = {
|
|
31814
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31815
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31816
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31817
|
+
id: Scalars['ID']['input'];
|
|
31818
|
+
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
31819
|
+
};
|
|
31482
31820
|
export declare type GraphStoreUserCreatedLoomVideoArgs = {
|
|
31483
31821
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31484
31822
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31507,6 +31845,20 @@ export declare type GraphStoreUserCreatedMessageInverseArgs = {
|
|
|
31507
31845
|
id: Scalars['ID']['input'];
|
|
31508
31846
|
sort?: InputMaybe<GraphStoreUserCreatedMessageSortInput>;
|
|
31509
31847
|
};
|
|
31848
|
+
export declare type GraphStoreUserCreatedRemoteLinkArgs = {
|
|
31849
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31850
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31851
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31852
|
+
id: Scalars['ID']['input'];
|
|
31853
|
+
sort?: InputMaybe<GraphStoreUserCreatedRemoteLinkSortInput>;
|
|
31854
|
+
};
|
|
31855
|
+
export declare type GraphStoreUserCreatedRemoteLinkInverseArgs = {
|
|
31856
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31857
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31858
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31859
|
+
id: Scalars['ID']['input'];
|
|
31860
|
+
sort?: InputMaybe<GraphStoreUserCreatedRemoteLinkSortInput>;
|
|
31861
|
+
};
|
|
31510
31862
|
export declare type GraphStoreUserCreatedRepositoryArgs = {
|
|
31511
31863
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31512
31864
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31535,6 +31887,20 @@ export declare type GraphStoreUserFavoritedConfluenceBlogpostInverseArgs = {
|
|
|
31535
31887
|
id: Scalars['ID']['input'];
|
|
31536
31888
|
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceBlogpostSortInput>;
|
|
31537
31889
|
};
|
|
31890
|
+
export declare type GraphStoreUserFavoritedConfluenceDatabaseArgs = {
|
|
31891
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31892
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31893
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31894
|
+
id: Scalars['ID']['input'];
|
|
31895
|
+
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceDatabaseSortInput>;
|
|
31896
|
+
};
|
|
31897
|
+
export declare type GraphStoreUserFavoritedConfluenceDatabaseInverseArgs = {
|
|
31898
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31899
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31900
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31901
|
+
id: Scalars['ID']['input'];
|
|
31902
|
+
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceDatabaseSortInput>;
|
|
31903
|
+
};
|
|
31538
31904
|
export declare type GraphStoreUserFavoritedConfluencePageArgs = {
|
|
31539
31905
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31540
31906
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31549,6 +31915,20 @@ export declare type GraphStoreUserFavoritedConfluencePageInverseArgs = {
|
|
|
31549
31915
|
id: Scalars['ID']['input'];
|
|
31550
31916
|
sort?: InputMaybe<GraphStoreUserFavoritedConfluencePageSortInput>;
|
|
31551
31917
|
};
|
|
31918
|
+
export declare type GraphStoreUserFavoritedConfluenceWhiteboardArgs = {
|
|
31919
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31920
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31921
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31922
|
+
id: Scalars['ID']['input'];
|
|
31923
|
+
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceWhiteboardSortInput>;
|
|
31924
|
+
};
|
|
31925
|
+
export declare type GraphStoreUserFavoritedConfluenceWhiteboardInverseArgs = {
|
|
31926
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31927
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31928
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31929
|
+
id: Scalars['ID']['input'];
|
|
31930
|
+
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceWhiteboardSortInput>;
|
|
31931
|
+
};
|
|
31552
31932
|
export declare type GraphStoreUserHasRelevantProjectArgs = {
|
|
31553
31933
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31554
31934
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31591,6 +31971,34 @@ export declare type GraphStoreUserIsInTeamInverseArgs = {
|
|
|
31591
31971
|
id: Scalars['ID']['input'];
|
|
31592
31972
|
sort?: InputMaybe<GraphStoreUserIsInTeamSortInput>;
|
|
31593
31973
|
};
|
|
31974
|
+
export declare type GraphStoreUserLastUpdatedDesignArgs = {
|
|
31975
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31976
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31977
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31978
|
+
id: Scalars['ID']['input'];
|
|
31979
|
+
sort?: InputMaybe<GraphStoreUserLastUpdatedDesignSortInput>;
|
|
31980
|
+
};
|
|
31981
|
+
export declare type GraphStoreUserLastUpdatedDesignInverseArgs = {
|
|
31982
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31983
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31984
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31985
|
+
id: Scalars['ID']['input'];
|
|
31986
|
+
sort?: InputMaybe<GraphStoreUserLastUpdatedDesignSortInput>;
|
|
31987
|
+
};
|
|
31988
|
+
export declare type GraphStoreUserLaunchedReleaseArgs = {
|
|
31989
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31990
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31991
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31992
|
+
id: Scalars['ID']['input'];
|
|
31993
|
+
sort?: InputMaybe<GraphStoreUserLaunchedReleaseSortInput>;
|
|
31994
|
+
};
|
|
31995
|
+
export declare type GraphStoreUserLaunchedReleaseInverseArgs = {
|
|
31996
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31997
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31998
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31999
|
+
id: Scalars['ID']['input'];
|
|
32000
|
+
sort?: InputMaybe<GraphStoreUserLaunchedReleaseSortInput>;
|
|
32001
|
+
};
|
|
31594
32002
|
export declare type GraphStoreUserMemberOfConversationArgs = {
|
|
31595
32003
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31596
32004
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31647,6 +32055,20 @@ export declare type GraphStoreUserOwnedCalendarEventInverseArgs = {
|
|
|
31647
32055
|
id: Scalars['ID']['input'];
|
|
31648
32056
|
sort?: InputMaybe<GraphStoreUserOwnedCalendarEventSortInput>;
|
|
31649
32057
|
};
|
|
32058
|
+
export declare type GraphStoreUserOwnedDocumentArgs = {
|
|
32059
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32060
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32061
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32062
|
+
id: Scalars['ID']['input'];
|
|
32063
|
+
sort?: InputMaybe<GraphStoreUserOwnedDocumentSortInput>;
|
|
32064
|
+
};
|
|
32065
|
+
export declare type GraphStoreUserOwnedDocumentInverseArgs = {
|
|
32066
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32067
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32068
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32069
|
+
id: Scalars['ID']['input'];
|
|
32070
|
+
sort?: InputMaybe<GraphStoreUserOwnedDocumentSortInput>;
|
|
32071
|
+
};
|
|
31650
32072
|
export declare type GraphStoreUserOwnedRemoteLinkArgs = {
|
|
31651
32073
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31652
32074
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31745,6 +32167,20 @@ export declare type GraphStoreUserTaggedInCommentInverseArgs = {
|
|
|
31745
32167
|
id: Scalars['ID']['input'];
|
|
31746
32168
|
sort?: InputMaybe<GraphStoreUserTaggedInCommentSortInput>;
|
|
31747
32169
|
};
|
|
32170
|
+
export declare type GraphStoreUserTaggedInConfluencePageArgs = {
|
|
32171
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32172
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32173
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32174
|
+
id: Scalars['ID']['input'];
|
|
32175
|
+
sort?: InputMaybe<GraphStoreUserTaggedInConfluencePageSortInput>;
|
|
32176
|
+
};
|
|
32177
|
+
export declare type GraphStoreUserTaggedInConfluencePageInverseArgs = {
|
|
32178
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32179
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32180
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32181
|
+
id: Scalars['ID']['input'];
|
|
32182
|
+
sort?: InputMaybe<GraphStoreUserTaggedInConfluencePageSortInput>;
|
|
32183
|
+
};
|
|
31748
32184
|
export declare type GraphStoreUserTriggeredDeploymentArgs = {
|
|
31749
32185
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31750
32186
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31801,6 +32237,20 @@ export declare type GraphStoreUserUpdatedConfluenceSpaceInverseArgs = {
|
|
|
31801
32237
|
id: Scalars['ID']['input'];
|
|
31802
32238
|
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceSpaceSortInput>;
|
|
31803
32239
|
};
|
|
32240
|
+
export declare type GraphStoreUserUpdatedConfluenceWhiteboardArgs = {
|
|
32241
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32242
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32243
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32244
|
+
id: Scalars['ID']['input'];
|
|
32245
|
+
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceWhiteboardSortInput>;
|
|
32246
|
+
};
|
|
32247
|
+
export declare type GraphStoreUserUpdatedConfluenceWhiteboardInverseArgs = {
|
|
32248
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32249
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32250
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32251
|
+
id: Scalars['ID']['input'];
|
|
32252
|
+
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceWhiteboardSortInput>;
|
|
32253
|
+
};
|
|
31804
32254
|
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
31805
32255
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31806
32256
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31899,6 +32349,20 @@ export declare type GraphStoreUserWatchesConfluencePageInverseArgs = {
|
|
|
31899
32349
|
id: Scalars['ID']['input'];
|
|
31900
32350
|
sort?: InputMaybe<GraphStoreUserWatchesConfluencePageSortInput>;
|
|
31901
32351
|
};
|
|
32352
|
+
export declare type GraphStoreUserWatchesConfluenceWhiteboardArgs = {
|
|
32353
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32354
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32355
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32356
|
+
id: Scalars['ID']['input'];
|
|
32357
|
+
sort?: InputMaybe<GraphStoreUserWatchesConfluenceWhiteboardSortInput>;
|
|
32358
|
+
};
|
|
32359
|
+
export declare type GraphStoreUserWatchesConfluenceWhiteboardInverseArgs = {
|
|
32360
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32361
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32362
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32363
|
+
id: Scalars['ID']['input'];
|
|
32364
|
+
sort?: InputMaybe<GraphStoreUserWatchesConfluenceWhiteboardSortInput>;
|
|
32365
|
+
};
|
|
31902
32366
|
export declare type GraphStoreVersionAssociatedBranchArgs = {
|
|
31903
32367
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31904
32368
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32434,7 +32898,7 @@ export declare type GraphStoreBatchFocusAreaHasProjectEndNode = {
|
|
|
32434
32898
|
data?: Maybe<GraphStoreBatchFocusAreaHasProjectEndUnion>;
|
|
32435
32899
|
id: Scalars['ID']['output'];
|
|
32436
32900
|
};
|
|
32437
|
-
export declare type GraphStoreBatchFocusAreaHasProjectEndUnion = JiraAlignAggProject | JiraIssue |
|
|
32901
|
+
export declare type GraphStoreBatchFocusAreaHasProjectEndUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
32438
32902
|
export declare type GraphStoreBatchFocusAreaHasProjectInnerConnection = {
|
|
32439
32903
|
__typename?: 'GraphStoreBatchFocusAreaHasProjectInnerConnection';
|
|
32440
32904
|
edges: Array<Maybe<GraphStoreBatchFocusAreaHasProjectInnerEdge>>;
|
|
@@ -32928,6 +33392,9 @@ export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
|
32928
33392
|
export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
|
|
32929
33393
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32930
33394
|
};
|
|
33395
|
+
export declare type GraphStoreConfluencePageHasConfluenceDatabaseSortInput = {
|
|
33396
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33397
|
+
};
|
|
32931
33398
|
export declare type GraphStoreConfluencePageHasParentPageSortInput = {
|
|
32932
33399
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32933
33400
|
};
|
|
@@ -32940,6 +33407,12 @@ export declare type GraphStoreConfluencePageSharedWithUserSortInput = {
|
|
|
32940
33407
|
export declare type GraphStoreConfluenceSpaceHasConfluenceBlogpostSortInput = {
|
|
32941
33408
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32942
33409
|
};
|
|
33410
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceDatabaseSortInput = {
|
|
33411
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33412
|
+
};
|
|
33413
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceWhiteboardSortInput = {
|
|
33414
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33415
|
+
};
|
|
32943
33416
|
export declare type GraphStoreContentReferencedEntitySortInput = {
|
|
32944
33417
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32945
33418
|
};
|
|
@@ -33346,7 +33819,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
33346
33819
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
33347
33820
|
id: Scalars['ID']['output'];
|
|
33348
33821
|
};
|
|
33349
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea |
|
|
33822
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
33350
33823
|
export declare type GraphStoreCypherQueryNode = {
|
|
33351
33824
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
33352
33825
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -33357,7 +33830,7 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
33357
33830
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
33358
33831
|
id: Scalars['ID']['output'];
|
|
33359
33832
|
};
|
|
33360
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea |
|
|
33833
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
33361
33834
|
export declare type GraphStoreDateFilterInput = {
|
|
33362
33835
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
33363
33836
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -38514,6 +38987,34 @@ export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInvers
|
|
|
38514
38987
|
};
|
|
38515
38988
|
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
38516
38989
|
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
38990
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseConnection = HasPageInfo & {
|
|
38991
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseConnection';
|
|
38992
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseEdge>>>;
|
|
38993
|
+
pageInfo: PageInfo;
|
|
38994
|
+
};
|
|
38995
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseEdge = {
|
|
38996
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseEdge';
|
|
38997
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38998
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38999
|
+
id: Scalars['ID']['output'];
|
|
39000
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39001
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseUnion>;
|
|
39002
|
+
};
|
|
39003
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseConnection = HasPageInfo & {
|
|
39004
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseConnection';
|
|
39005
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseEdge>>>;
|
|
39006
|
+
pageInfo: PageInfo;
|
|
39007
|
+
};
|
|
39008
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseEdge = {
|
|
39009
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseEdge';
|
|
39010
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39011
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39012
|
+
id: Scalars['ID']['output'];
|
|
39013
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39014
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseUnion>;
|
|
39015
|
+
};
|
|
39016
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseUnion = ConfluencePage;
|
|
39017
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
38517
39018
|
export declare type GraphStoreSimplifiedConfluencePageHasParentPageConnection = HasPageInfo & {
|
|
38518
39019
|
__typename?: 'GraphStoreSimplifiedConfluencePageHasParentPageConnection';
|
|
38519
39020
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasParentPageEdge>>>;
|
|
@@ -38612,6 +39113,62 @@ export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInve
|
|
|
38612
39113
|
};
|
|
38613
39114
|
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseUnion = ConfluenceSpace;
|
|
38614
39115
|
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
39116
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseConnection = HasPageInfo & {
|
|
39117
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseConnection';
|
|
39118
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseEdge>>>;
|
|
39119
|
+
pageInfo: PageInfo;
|
|
39120
|
+
};
|
|
39121
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseEdge = {
|
|
39122
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseEdge';
|
|
39123
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39124
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39125
|
+
id: Scalars['ID']['output'];
|
|
39126
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39127
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseUnion>;
|
|
39128
|
+
};
|
|
39129
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseConnection = HasPageInfo & {
|
|
39130
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseConnection';
|
|
39131
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseEdge>>>;
|
|
39132
|
+
pageInfo: PageInfo;
|
|
39133
|
+
};
|
|
39134
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseEdge = {
|
|
39135
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseEdge';
|
|
39136
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39137
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39138
|
+
id: Scalars['ID']['output'];
|
|
39139
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39140
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseUnion>;
|
|
39141
|
+
};
|
|
39142
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseUnion = ConfluenceSpace;
|
|
39143
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
39144
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardConnection = HasPageInfo & {
|
|
39145
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardConnection';
|
|
39146
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardEdge>>>;
|
|
39147
|
+
pageInfo: PageInfo;
|
|
39148
|
+
};
|
|
39149
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardEdge = {
|
|
39150
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardEdge';
|
|
39151
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39152
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39153
|
+
id: Scalars['ID']['output'];
|
|
39154
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39155
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardUnion>;
|
|
39156
|
+
};
|
|
39157
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseConnection = HasPageInfo & {
|
|
39158
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseConnection';
|
|
39159
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseEdge>>>;
|
|
39160
|
+
pageInfo: PageInfo;
|
|
39161
|
+
};
|
|
39162
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseEdge = {
|
|
39163
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseEdge';
|
|
39164
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39165
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39166
|
+
id: Scalars['ID']['output'];
|
|
39167
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39168
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseUnion>;
|
|
39169
|
+
};
|
|
39170
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseUnion = ConfluenceSpace;
|
|
39171
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
38615
39172
|
export declare type GraphStoreSimplifiedContentReferencedEntityConnection = HasPageInfo & {
|
|
38616
39173
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityConnection';
|
|
38617
39174
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedContentReferencedEntityEdge>>>;
|
|
@@ -38807,7 +39364,7 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
|
|
|
38807
39364
|
node?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseUnion>;
|
|
38808
39365
|
};
|
|
38809
39366
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseUnion = MercuryFocusArea;
|
|
38810
|
-
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraAlignAggProject | JiraIssue |
|
|
39367
|
+
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
38811
39368
|
export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection = HasPageInfo & {
|
|
38812
39369
|
__typename?: 'GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection';
|
|
38813
39370
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge>>>;
|
|
@@ -41204,6 +41761,34 @@ export declare type GraphStoreSimplifiedUserAssignedIncidentInverseEdge = {
|
|
|
41204
41761
|
};
|
|
41205
41762
|
export declare type GraphStoreSimplifiedUserAssignedIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41206
41763
|
export declare type GraphStoreSimplifiedUserAssignedIncidentUnion = JiraIssue;
|
|
41764
|
+
export declare type GraphStoreSimplifiedUserAssignedPirConnection = HasPageInfo & {
|
|
41765
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedPirConnection';
|
|
41766
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedPirEdge>>>;
|
|
41767
|
+
pageInfo: PageInfo;
|
|
41768
|
+
};
|
|
41769
|
+
export declare type GraphStoreSimplifiedUserAssignedPirEdge = {
|
|
41770
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedPirEdge';
|
|
41771
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41772
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41773
|
+
id: Scalars['ID']['output'];
|
|
41774
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41775
|
+
node?: Maybe<GraphStoreSimplifiedUserAssignedPirUnion>;
|
|
41776
|
+
};
|
|
41777
|
+
export declare type GraphStoreSimplifiedUserAssignedPirInverseConnection = HasPageInfo & {
|
|
41778
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedPirInverseConnection';
|
|
41779
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedPirInverseEdge>>>;
|
|
41780
|
+
pageInfo: PageInfo;
|
|
41781
|
+
};
|
|
41782
|
+
export declare type GraphStoreSimplifiedUserAssignedPirInverseEdge = {
|
|
41783
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedPirInverseEdge';
|
|
41784
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41785
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41786
|
+
id: Scalars['ID']['output'];
|
|
41787
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41788
|
+
node?: Maybe<GraphStoreSimplifiedUserAssignedPirInverseUnion>;
|
|
41789
|
+
};
|
|
41790
|
+
export declare type GraphStoreSimplifiedUserAssignedPirInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41791
|
+
export declare type GraphStoreSimplifiedUserAssignedPirUnion = JiraIssue;
|
|
41207
41792
|
export declare type GraphStoreSimplifiedUserAttendedCalendarEventConnection = HasPageInfo & {
|
|
41208
41793
|
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventConnection';
|
|
41209
41794
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAttendedCalendarEventEdge>>>;
|
|
@@ -41316,6 +41901,34 @@ export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseEdge =
|
|
|
41316
41901
|
};
|
|
41317
41902
|
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41318
41903
|
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceUnion = ConfluenceSpace;
|
|
41904
|
+
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentConnection = HasPageInfo & {
|
|
41905
|
+
__typename?: 'GraphStoreSimplifiedUserCollaboratedOnDocumentConnection';
|
|
41906
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentEdge>>>;
|
|
41907
|
+
pageInfo: PageInfo;
|
|
41908
|
+
};
|
|
41909
|
+
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentEdge = {
|
|
41910
|
+
__typename?: 'GraphStoreSimplifiedUserCollaboratedOnDocumentEdge';
|
|
41911
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41912
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41913
|
+
id: Scalars['ID']['output'];
|
|
41914
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41915
|
+
node?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentUnion>;
|
|
41916
|
+
};
|
|
41917
|
+
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentInverseConnection = HasPageInfo & {
|
|
41918
|
+
__typename?: 'GraphStoreSimplifiedUserCollaboratedOnDocumentInverseConnection';
|
|
41919
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentInverseEdge>>>;
|
|
41920
|
+
pageInfo: PageInfo;
|
|
41921
|
+
};
|
|
41922
|
+
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentInverseEdge = {
|
|
41923
|
+
__typename?: 'GraphStoreSimplifiedUserCollaboratedOnDocumentInverseEdge';
|
|
41924
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41925
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41926
|
+
id: Scalars['ID']['output'];
|
|
41927
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41928
|
+
node?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentInverseUnion>;
|
|
41929
|
+
};
|
|
41930
|
+
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41931
|
+
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
41319
41932
|
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection = HasPageInfo & {
|
|
41320
41933
|
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection';
|
|
41321
41934
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostEdge>>>;
|
|
@@ -41344,6 +41957,34 @@ export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostInverse
|
|
|
41344
41957
|
};
|
|
41345
41958
|
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41346
41959
|
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
41960
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceDatabaseConnection = HasPageInfo & {
|
|
41961
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceDatabaseConnection';
|
|
41962
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseEdge>>>;
|
|
41963
|
+
pageInfo: PageInfo;
|
|
41964
|
+
};
|
|
41965
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceDatabaseEdge = {
|
|
41966
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceDatabaseEdge';
|
|
41967
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41968
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41969
|
+
id: Scalars['ID']['output'];
|
|
41970
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41971
|
+
node?: Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseUnion>;
|
|
41972
|
+
};
|
|
41973
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseConnection = HasPageInfo & {
|
|
41974
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseConnection';
|
|
41975
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseEdge>>>;
|
|
41976
|
+
pageInfo: PageInfo;
|
|
41977
|
+
};
|
|
41978
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseEdge = {
|
|
41979
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseEdge';
|
|
41980
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41981
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41982
|
+
id: Scalars['ID']['output'];
|
|
41983
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41984
|
+
node?: Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseUnion>;
|
|
41985
|
+
};
|
|
41986
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41987
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
41347
41988
|
export declare type GraphStoreSimplifiedUserContributedConfluencePageConnection = HasPageInfo & {
|
|
41348
41989
|
__typename?: 'GraphStoreSimplifiedUserContributedConfluencePageConnection';
|
|
41349
41990
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluencePageEdge>>>;
|
|
@@ -41372,6 +42013,34 @@ export declare type GraphStoreSimplifiedUserContributedConfluencePageInverseEdge
|
|
|
41372
42013
|
};
|
|
41373
42014
|
export declare type GraphStoreSimplifiedUserContributedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41374
42015
|
export declare type GraphStoreSimplifiedUserContributedConfluencePageUnion = ConfluencePage;
|
|
42016
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardConnection = HasPageInfo & {
|
|
42017
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceWhiteboardConnection';
|
|
42018
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardEdge>>>;
|
|
42019
|
+
pageInfo: PageInfo;
|
|
42020
|
+
};
|
|
42021
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardEdge = {
|
|
42022
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceWhiteboardEdge';
|
|
42023
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42024
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42025
|
+
id: Scalars['ID']['output'];
|
|
42026
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42027
|
+
node?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardUnion>;
|
|
42028
|
+
};
|
|
42029
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseConnection = HasPageInfo & {
|
|
42030
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseConnection';
|
|
42031
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseEdge>>>;
|
|
42032
|
+
pageInfo: PageInfo;
|
|
42033
|
+
};
|
|
42034
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseEdge = {
|
|
42035
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseEdge';
|
|
42036
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42037
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42038
|
+
id: Scalars['ID']['output'];
|
|
42039
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42040
|
+
node?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseUnion>;
|
|
42041
|
+
};
|
|
42042
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42043
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
41375
42044
|
export declare type GraphStoreSimplifiedUserCreatedBranchConnection = HasPageInfo & {
|
|
41376
42045
|
__typename?: 'GraphStoreSimplifiedUserCreatedBranchConnection';
|
|
41377
42046
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedBranchEdge>>>;
|
|
@@ -41400,6 +42069,34 @@ export declare type GraphStoreSimplifiedUserCreatedBranchInverseEdge = {
|
|
|
41400
42069
|
};
|
|
41401
42070
|
export declare type GraphStoreSimplifiedUserCreatedBranchInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41402
42071
|
export declare type GraphStoreSimplifiedUserCreatedBranchUnion = ExternalBranch;
|
|
42072
|
+
export declare type GraphStoreSimplifiedUserCreatedCalendarEventConnection = HasPageInfo & {
|
|
42073
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventConnection';
|
|
42074
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedCalendarEventEdge>>>;
|
|
42075
|
+
pageInfo: PageInfo;
|
|
42076
|
+
};
|
|
42077
|
+
export declare type GraphStoreSimplifiedUserCreatedCalendarEventEdge = {
|
|
42078
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventEdge';
|
|
42079
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42080
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42081
|
+
id: Scalars['ID']['output'];
|
|
42082
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42083
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventUnion>;
|
|
42084
|
+
};
|
|
42085
|
+
export declare type GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection = HasPageInfo & {
|
|
42086
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection';
|
|
42087
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedCalendarEventInverseEdge>>>;
|
|
42088
|
+
pageInfo: PageInfo;
|
|
42089
|
+
};
|
|
42090
|
+
export declare type GraphStoreSimplifiedUserCreatedCalendarEventInverseEdge = {
|
|
42091
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventInverseEdge';
|
|
42092
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42093
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42094
|
+
id: Scalars['ID']['output'];
|
|
42095
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42096
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventInverseUnion>;
|
|
42097
|
+
};
|
|
42098
|
+
export declare type GraphStoreSimplifiedUserCreatedCalendarEventInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42099
|
+
export declare type GraphStoreSimplifiedUserCreatedCalendarEventUnion = ExternalCalendarEvent;
|
|
41403
42100
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
41404
42101
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection';
|
|
41405
42102
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostEdge>>>;
|
|
@@ -41428,6 +42125,34 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseEdge
|
|
|
41428
42125
|
};
|
|
41429
42126
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41430
42127
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
42128
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection = HasPageInfo & {
|
|
42129
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection';
|
|
42130
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseEdge>>>;
|
|
42131
|
+
pageInfo: PageInfo;
|
|
42132
|
+
};
|
|
42133
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseEdge = {
|
|
42134
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceDatabaseEdge';
|
|
42135
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42136
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42137
|
+
id: Scalars['ID']['output'];
|
|
42138
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42139
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseUnion>;
|
|
42140
|
+
};
|
|
42141
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseConnection = HasPageInfo & {
|
|
42142
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseConnection';
|
|
42143
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseEdge>>>;
|
|
42144
|
+
pageInfo: PageInfo;
|
|
42145
|
+
};
|
|
42146
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseEdge = {
|
|
42147
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseEdge';
|
|
42148
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42149
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42150
|
+
id: Scalars['ID']['output'];
|
|
42151
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42152
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseUnion>;
|
|
42153
|
+
};
|
|
42154
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42155
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
41431
42156
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageConnection = HasPageInfo & {
|
|
41432
42157
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageConnection';
|
|
41433
42158
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageEdge>>>;
|
|
@@ -41456,6 +42181,90 @@ export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge = {
|
|
|
41456
42181
|
};
|
|
41457
42182
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41458
42183
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageUnion = ConfluencePage;
|
|
42184
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection = HasPageInfo & {
|
|
42185
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection';
|
|
42186
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardEdge>>>;
|
|
42187
|
+
pageInfo: PageInfo;
|
|
42188
|
+
};
|
|
42189
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardEdge = {
|
|
42190
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceWhiteboardEdge';
|
|
42191
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42192
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42193
|
+
id: Scalars['ID']['output'];
|
|
42194
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42195
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardUnion>;
|
|
42196
|
+
};
|
|
42197
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseConnection = HasPageInfo & {
|
|
42198
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseConnection';
|
|
42199
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseEdge>>>;
|
|
42200
|
+
pageInfo: PageInfo;
|
|
42201
|
+
};
|
|
42202
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseEdge = {
|
|
42203
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseEdge';
|
|
42204
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42205
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42206
|
+
id: Scalars['ID']['output'];
|
|
42207
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42208
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseUnion>;
|
|
42209
|
+
};
|
|
42210
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42211
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
42212
|
+
export declare type GraphStoreSimplifiedUserCreatedDesignConnection = HasPageInfo & {
|
|
42213
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedDesignConnection';
|
|
42214
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedDesignEdge>>>;
|
|
42215
|
+
pageInfo: PageInfo;
|
|
42216
|
+
};
|
|
42217
|
+
export declare type GraphStoreSimplifiedUserCreatedDesignEdge = {
|
|
42218
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedDesignEdge';
|
|
42219
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42220
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42221
|
+
id: Scalars['ID']['output'];
|
|
42222
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42223
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedDesignUnion>;
|
|
42224
|
+
};
|
|
42225
|
+
export declare type GraphStoreSimplifiedUserCreatedDesignInverseConnection = HasPageInfo & {
|
|
42226
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedDesignInverseConnection';
|
|
42227
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedDesignInverseEdge>>>;
|
|
42228
|
+
pageInfo: PageInfo;
|
|
42229
|
+
};
|
|
42230
|
+
export declare type GraphStoreSimplifiedUserCreatedDesignInverseEdge = {
|
|
42231
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedDesignInverseEdge';
|
|
42232
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42233
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42234
|
+
id: Scalars['ID']['output'];
|
|
42235
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42236
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseUnion>;
|
|
42237
|
+
};
|
|
42238
|
+
export declare type GraphStoreSimplifiedUserCreatedDesignInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42239
|
+
export declare type GraphStoreSimplifiedUserCreatedDesignUnion = DevOpsDesign | ExternalDesign;
|
|
42240
|
+
export declare type GraphStoreSimplifiedUserCreatedDocumentConnection = HasPageInfo & {
|
|
42241
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedDocumentConnection';
|
|
42242
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedDocumentEdge>>>;
|
|
42243
|
+
pageInfo: PageInfo;
|
|
42244
|
+
};
|
|
42245
|
+
export declare type GraphStoreSimplifiedUserCreatedDocumentEdge = {
|
|
42246
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedDocumentEdge';
|
|
42247
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42248
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42249
|
+
id: Scalars['ID']['output'];
|
|
42250
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42251
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedDocumentUnion>;
|
|
42252
|
+
};
|
|
42253
|
+
export declare type GraphStoreSimplifiedUserCreatedDocumentInverseConnection = HasPageInfo & {
|
|
42254
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedDocumentInverseConnection';
|
|
42255
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseEdge>>>;
|
|
42256
|
+
pageInfo: PageInfo;
|
|
42257
|
+
};
|
|
42258
|
+
export declare type GraphStoreSimplifiedUserCreatedDocumentInverseEdge = {
|
|
42259
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedDocumentInverseEdge';
|
|
42260
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42261
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42262
|
+
id: Scalars['ID']['output'];
|
|
42263
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42264
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseUnion>;
|
|
42265
|
+
};
|
|
42266
|
+
export declare type GraphStoreSimplifiedUserCreatedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42267
|
+
export declare type GraphStoreSimplifiedUserCreatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
41459
42268
|
export declare type GraphStoreSimplifiedUserCreatedLoomVideoConnection = HasPageInfo & {
|
|
41460
42269
|
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoConnection';
|
|
41461
42270
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoEdge>>>;
|
|
@@ -41512,6 +42321,34 @@ export declare type GraphStoreSimplifiedUserCreatedMessageInverseEdge = {
|
|
|
41512
42321
|
};
|
|
41513
42322
|
export declare type GraphStoreSimplifiedUserCreatedMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41514
42323
|
export declare type GraphStoreSimplifiedUserCreatedMessageUnion = ExternalMessage;
|
|
42324
|
+
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkConnection = HasPageInfo & {
|
|
42325
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedRemoteLinkConnection';
|
|
42326
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkEdge>>>;
|
|
42327
|
+
pageInfo: PageInfo;
|
|
42328
|
+
};
|
|
42329
|
+
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkEdge = {
|
|
42330
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedRemoteLinkEdge';
|
|
42331
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42332
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42333
|
+
id: Scalars['ID']['output'];
|
|
42334
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42335
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkUnion>;
|
|
42336
|
+
};
|
|
42337
|
+
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
42338
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedRemoteLinkInverseConnection';
|
|
42339
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkInverseEdge>>>;
|
|
42340
|
+
pageInfo: PageInfo;
|
|
42341
|
+
};
|
|
42342
|
+
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkInverseEdge = {
|
|
42343
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedRemoteLinkInverseEdge';
|
|
42344
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42345
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42346
|
+
id: Scalars['ID']['output'];
|
|
42347
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42348
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkInverseUnion>;
|
|
42349
|
+
};
|
|
42350
|
+
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42351
|
+
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkUnion = ExternalRemoteLink;
|
|
41515
42352
|
export declare type GraphStoreSimplifiedUserCreatedRepositoryConnection = HasPageInfo & {
|
|
41516
42353
|
__typename?: 'GraphStoreSimplifiedUserCreatedRepositoryConnection';
|
|
41517
42354
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedRepositoryEdge>>>;
|
|
@@ -41568,6 +42405,34 @@ export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseEd
|
|
|
41568
42405
|
};
|
|
41569
42406
|
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41570
42407
|
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
42408
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceDatabaseConnection = HasPageInfo & {
|
|
42409
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceDatabaseConnection';
|
|
42410
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseEdge>>>;
|
|
42411
|
+
pageInfo: PageInfo;
|
|
42412
|
+
};
|
|
42413
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceDatabaseEdge = {
|
|
42414
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceDatabaseEdge';
|
|
42415
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42416
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42417
|
+
id: Scalars['ID']['output'];
|
|
42418
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42419
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseUnion>;
|
|
42420
|
+
};
|
|
42421
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseConnection = HasPageInfo & {
|
|
42422
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseConnection';
|
|
42423
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseEdge>>>;
|
|
42424
|
+
pageInfo: PageInfo;
|
|
42425
|
+
};
|
|
42426
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseEdge = {
|
|
42427
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseEdge';
|
|
42428
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42429
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42430
|
+
id: Scalars['ID']['output'];
|
|
42431
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42432
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseUnion>;
|
|
42433
|
+
};
|
|
42434
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42435
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
41571
42436
|
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageConnection = HasPageInfo & {
|
|
41572
42437
|
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluencePageConnection';
|
|
41573
42438
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageEdge>>>;
|
|
@@ -41596,6 +42461,34 @@ export declare type GraphStoreSimplifiedUserFavoritedConfluencePageInverseEdge =
|
|
|
41596
42461
|
};
|
|
41597
42462
|
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41598
42463
|
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageUnion = ConfluencePage;
|
|
42464
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardConnection = HasPageInfo & {
|
|
42465
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardConnection';
|
|
42466
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardEdge>>>;
|
|
42467
|
+
pageInfo: PageInfo;
|
|
42468
|
+
};
|
|
42469
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardEdge = {
|
|
42470
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardEdge';
|
|
42471
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42472
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42473
|
+
id: Scalars['ID']['output'];
|
|
42474
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42475
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardUnion>;
|
|
42476
|
+
};
|
|
42477
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseConnection = HasPageInfo & {
|
|
42478
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseConnection';
|
|
42479
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseEdge>>>;
|
|
42480
|
+
pageInfo: PageInfo;
|
|
42481
|
+
};
|
|
42482
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseEdge = {
|
|
42483
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseEdge';
|
|
42484
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42485
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42486
|
+
id: Scalars['ID']['output'];
|
|
42487
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42488
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseUnion>;
|
|
42489
|
+
};
|
|
42490
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42491
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
41599
42492
|
export declare type GraphStoreSimplifiedUserHasRelevantProjectConnection = HasPageInfo & HasTotal & {
|
|
41600
42493
|
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectConnection';
|
|
41601
42494
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasRelevantProjectEdge>>>;
|
|
@@ -41684,6 +42577,62 @@ export declare type GraphStoreSimplifiedUserIsInTeamInverseEdge = {
|
|
|
41684
42577
|
};
|
|
41685
42578
|
export declare type GraphStoreSimplifiedUserIsInTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41686
42579
|
export declare type GraphStoreSimplifiedUserIsInTeamUnion = TeamV2;
|
|
42580
|
+
export declare type GraphStoreSimplifiedUserLastUpdatedDesignConnection = HasPageInfo & {
|
|
42581
|
+
__typename?: 'GraphStoreSimplifiedUserLastUpdatedDesignConnection';
|
|
42582
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserLastUpdatedDesignEdge>>>;
|
|
42583
|
+
pageInfo: PageInfo;
|
|
42584
|
+
};
|
|
42585
|
+
export declare type GraphStoreSimplifiedUserLastUpdatedDesignEdge = {
|
|
42586
|
+
__typename?: 'GraphStoreSimplifiedUserLastUpdatedDesignEdge';
|
|
42587
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42588
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42589
|
+
id: Scalars['ID']['output'];
|
|
42590
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42591
|
+
node?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignUnion>;
|
|
42592
|
+
};
|
|
42593
|
+
export declare type GraphStoreSimplifiedUserLastUpdatedDesignInverseConnection = HasPageInfo & {
|
|
42594
|
+
__typename?: 'GraphStoreSimplifiedUserLastUpdatedDesignInverseConnection';
|
|
42595
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserLastUpdatedDesignInverseEdge>>>;
|
|
42596
|
+
pageInfo: PageInfo;
|
|
42597
|
+
};
|
|
42598
|
+
export declare type GraphStoreSimplifiedUserLastUpdatedDesignInverseEdge = {
|
|
42599
|
+
__typename?: 'GraphStoreSimplifiedUserLastUpdatedDesignInverseEdge';
|
|
42600
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42601
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42602
|
+
id: Scalars['ID']['output'];
|
|
42603
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42604
|
+
node?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignInverseUnion>;
|
|
42605
|
+
};
|
|
42606
|
+
export declare type GraphStoreSimplifiedUserLastUpdatedDesignInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42607
|
+
export declare type GraphStoreSimplifiedUserLastUpdatedDesignUnion = DevOpsDesign | ExternalDesign;
|
|
42608
|
+
export declare type GraphStoreSimplifiedUserLaunchedReleaseConnection = HasPageInfo & {
|
|
42609
|
+
__typename?: 'GraphStoreSimplifiedUserLaunchedReleaseConnection';
|
|
42610
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserLaunchedReleaseEdge>>>;
|
|
42611
|
+
pageInfo: PageInfo;
|
|
42612
|
+
};
|
|
42613
|
+
export declare type GraphStoreSimplifiedUserLaunchedReleaseEdge = {
|
|
42614
|
+
__typename?: 'GraphStoreSimplifiedUserLaunchedReleaseEdge';
|
|
42615
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42616
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42617
|
+
id: Scalars['ID']['output'];
|
|
42618
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42619
|
+
node?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseUnion>;
|
|
42620
|
+
};
|
|
42621
|
+
export declare type GraphStoreSimplifiedUserLaunchedReleaseInverseConnection = HasPageInfo & {
|
|
42622
|
+
__typename?: 'GraphStoreSimplifiedUserLaunchedReleaseInverseConnection';
|
|
42623
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserLaunchedReleaseInverseEdge>>>;
|
|
42624
|
+
pageInfo: PageInfo;
|
|
42625
|
+
};
|
|
42626
|
+
export declare type GraphStoreSimplifiedUserLaunchedReleaseInverseEdge = {
|
|
42627
|
+
__typename?: 'GraphStoreSimplifiedUserLaunchedReleaseInverseEdge';
|
|
42628
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42629
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42630
|
+
id: Scalars['ID']['output'];
|
|
42631
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42632
|
+
node?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseInverseUnion>;
|
|
42633
|
+
};
|
|
42634
|
+
export declare type GraphStoreSimplifiedUserLaunchedReleaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42635
|
+
export declare type GraphStoreSimplifiedUserLaunchedReleaseUnion = JiraVersion;
|
|
41687
42636
|
export declare type GraphStoreSimplifiedUserMemberOfConversationConnection = HasPageInfo & {
|
|
41688
42637
|
__typename?: 'GraphStoreSimplifiedUserMemberOfConversationConnection';
|
|
41689
42638
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMemberOfConversationEdge>>>;
|
|
@@ -41796,6 +42745,34 @@ export declare type GraphStoreSimplifiedUserOwnedCalendarEventInverseEdge = {
|
|
|
41796
42745
|
};
|
|
41797
42746
|
export declare type GraphStoreSimplifiedUserOwnedCalendarEventInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41798
42747
|
export declare type GraphStoreSimplifiedUserOwnedCalendarEventUnion = ExternalCalendarEvent;
|
|
42748
|
+
export declare type GraphStoreSimplifiedUserOwnedDocumentConnection = HasPageInfo & {
|
|
42749
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedDocumentConnection';
|
|
42750
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedDocumentEdge>>>;
|
|
42751
|
+
pageInfo: PageInfo;
|
|
42752
|
+
};
|
|
42753
|
+
export declare type GraphStoreSimplifiedUserOwnedDocumentEdge = {
|
|
42754
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedDocumentEdge';
|
|
42755
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42756
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42757
|
+
id: Scalars['ID']['output'];
|
|
42758
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42759
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedDocumentUnion>;
|
|
42760
|
+
};
|
|
42761
|
+
export declare type GraphStoreSimplifiedUserOwnedDocumentInverseConnection = HasPageInfo & {
|
|
42762
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedDocumentInverseConnection';
|
|
42763
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedDocumentInverseEdge>>>;
|
|
42764
|
+
pageInfo: PageInfo;
|
|
42765
|
+
};
|
|
42766
|
+
export declare type GraphStoreSimplifiedUserOwnedDocumentInverseEdge = {
|
|
42767
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedDocumentInverseEdge';
|
|
42768
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42769
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42770
|
+
id: Scalars['ID']['output'];
|
|
42771
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42772
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedDocumentInverseUnion>;
|
|
42773
|
+
};
|
|
42774
|
+
export declare type GraphStoreSimplifiedUserOwnedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42775
|
+
export declare type GraphStoreSimplifiedUserOwnedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
41799
42776
|
export declare type GraphStoreSimplifiedUserOwnedRemoteLinkConnection = HasPageInfo & {
|
|
41800
42777
|
__typename?: 'GraphStoreSimplifiedUserOwnedRemoteLinkConnection';
|
|
41801
42778
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkEdge>>>;
|
|
@@ -41996,6 +42973,34 @@ export declare type GraphStoreSimplifiedUserTaggedInCommentInverseEdge = {
|
|
|
41996
42973
|
};
|
|
41997
42974
|
export declare type GraphStoreSimplifiedUserTaggedInCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41998
42975
|
export declare type GraphStoreSimplifiedUserTaggedInCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
42976
|
+
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageConnection = HasPageInfo & {
|
|
42977
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInConfluencePageConnection';
|
|
42978
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageEdge>>>;
|
|
42979
|
+
pageInfo: PageInfo;
|
|
42980
|
+
};
|
|
42981
|
+
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageEdge = {
|
|
42982
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInConfluencePageEdge';
|
|
42983
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42984
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42985
|
+
id: Scalars['ID']['output'];
|
|
42986
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42987
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageUnion>;
|
|
42988
|
+
};
|
|
42989
|
+
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection = HasPageInfo & {
|
|
42990
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection';
|
|
42991
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseEdge>>>;
|
|
42992
|
+
pageInfo: PageInfo;
|
|
42993
|
+
};
|
|
42994
|
+
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseEdge = {
|
|
42995
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInConfluencePageInverseEdge';
|
|
42996
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42997
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42998
|
+
id: Scalars['ID']['output'];
|
|
42999
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43000
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseUnion>;
|
|
43001
|
+
};
|
|
43002
|
+
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43003
|
+
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageUnion = ConfluencePage;
|
|
41999
43004
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
|
|
42000
43005
|
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
|
|
42001
43006
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
|
|
@@ -42108,6 +43113,34 @@ export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseEdge =
|
|
|
42108
43113
|
};
|
|
42109
43114
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42110
43115
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceUnion = ConfluenceSpace;
|
|
43116
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardConnection = HasPageInfo & {
|
|
43117
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardConnection';
|
|
43118
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardEdge>>>;
|
|
43119
|
+
pageInfo: PageInfo;
|
|
43120
|
+
};
|
|
43121
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardEdge = {
|
|
43122
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardEdge';
|
|
43123
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43124
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43125
|
+
id: Scalars['ID']['output'];
|
|
43126
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43127
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardUnion>;
|
|
43128
|
+
};
|
|
43129
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseConnection = HasPageInfo & {
|
|
43130
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseConnection';
|
|
43131
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseEdge>>>;
|
|
43132
|
+
pageInfo: PageInfo;
|
|
43133
|
+
};
|
|
43134
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseEdge = {
|
|
43135
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseEdge';
|
|
43136
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43137
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43138
|
+
id: Scalars['ID']['output'];
|
|
43139
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43140
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseUnion>;
|
|
43141
|
+
};
|
|
43142
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43143
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
42111
43144
|
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
42112
43145
|
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
42113
43146
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasGoalEdge>>>;
|
|
@@ -42304,6 +43337,34 @@ export declare type GraphStoreSimplifiedUserWatchesConfluencePageInverseEdge = {
|
|
|
42304
43337
|
};
|
|
42305
43338
|
export declare type GraphStoreSimplifiedUserWatchesConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42306
43339
|
export declare type GraphStoreSimplifiedUserWatchesConfluencePageUnion = ConfluencePage;
|
|
43340
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceWhiteboardConnection = HasPageInfo & {
|
|
43341
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceWhiteboardConnection';
|
|
43342
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardEdge>>>;
|
|
43343
|
+
pageInfo: PageInfo;
|
|
43344
|
+
};
|
|
43345
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceWhiteboardEdge = {
|
|
43346
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceWhiteboardEdge';
|
|
43347
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43348
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43349
|
+
id: Scalars['ID']['output'];
|
|
43350
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43351
|
+
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardUnion>;
|
|
43352
|
+
};
|
|
43353
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseConnection = HasPageInfo & {
|
|
43354
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseConnection';
|
|
43355
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseEdge>>>;
|
|
43356
|
+
pageInfo: PageInfo;
|
|
43357
|
+
};
|
|
43358
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseEdge = {
|
|
43359
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseEdge';
|
|
43360
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43361
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43362
|
+
id: Scalars['ID']['output'];
|
|
43363
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43364
|
+
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseUnion>;
|
|
43365
|
+
};
|
|
43366
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43367
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
42307
43368
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
42308
43369
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchConnection';
|
|
42309
43370
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchEdge>>>;
|
|
@@ -43015,6 +44076,9 @@ export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
|
|
|
43015
44076
|
export declare type GraphStoreUserAssignedIncidentSortInput = {
|
|
43016
44077
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43017
44078
|
};
|
|
44079
|
+
export declare type GraphStoreUserAssignedPirSortInput = {
|
|
44080
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44081
|
+
};
|
|
43018
44082
|
export declare type GraphStoreUserAttendedCalendarEventSortInput = {
|
|
43019
44083
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43020
44084
|
};
|
|
@@ -43027,36 +44091,69 @@ export declare type GraphStoreUserAuthoredPrSortInput = {
|
|
|
43027
44091
|
export declare type GraphStoreUserCanViewConfluenceSpaceSortInput = {
|
|
43028
44092
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43029
44093
|
};
|
|
44094
|
+
export declare type GraphStoreUserCollaboratedOnDocumentSortInput = {
|
|
44095
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44096
|
+
};
|
|
43030
44097
|
export declare type GraphStoreUserContributedConfluenceBlogpostSortInput = {
|
|
43031
44098
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43032
44099
|
};
|
|
44100
|
+
export declare type GraphStoreUserContributedConfluenceDatabaseSortInput = {
|
|
44101
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44102
|
+
};
|
|
43033
44103
|
export declare type GraphStoreUserContributedConfluencePageSortInput = {
|
|
43034
44104
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43035
44105
|
};
|
|
44106
|
+
export declare type GraphStoreUserContributedConfluenceWhiteboardSortInput = {
|
|
44107
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44108
|
+
};
|
|
43036
44109
|
export declare type GraphStoreUserCreatedBranchSortInput = {
|
|
43037
44110
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43038
44111
|
};
|
|
44112
|
+
export declare type GraphStoreUserCreatedCalendarEventSortInput = {
|
|
44113
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44114
|
+
};
|
|
43039
44115
|
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
43040
44116
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43041
44117
|
};
|
|
44118
|
+
export declare type GraphStoreUserCreatedConfluenceDatabaseSortInput = {
|
|
44119
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44120
|
+
};
|
|
43042
44121
|
export declare type GraphStoreUserCreatedConfluencePageSortInput = {
|
|
43043
44122
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43044
44123
|
};
|
|
44124
|
+
export declare type GraphStoreUserCreatedConfluenceWhiteboardSortInput = {
|
|
44125
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44126
|
+
};
|
|
44127
|
+
export declare type GraphStoreUserCreatedDesignSortInput = {
|
|
44128
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44129
|
+
};
|
|
44130
|
+
export declare type GraphStoreUserCreatedDocumentSortInput = {
|
|
44131
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44132
|
+
};
|
|
43045
44133
|
export declare type GraphStoreUserCreatedLoomVideoSortInput = {
|
|
43046
44134
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43047
44135
|
};
|
|
43048
44136
|
export declare type GraphStoreUserCreatedMessageSortInput = {
|
|
43049
44137
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43050
44138
|
};
|
|
44139
|
+
export declare type GraphStoreUserCreatedRemoteLinkSortInput = {
|
|
44140
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44141
|
+
};
|
|
43051
44142
|
export declare type GraphStoreUserCreatedRepositorySortInput = {
|
|
43052
44143
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43053
44144
|
};
|
|
43054
44145
|
export declare type GraphStoreUserFavoritedConfluenceBlogpostSortInput = {
|
|
43055
44146
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43056
44147
|
};
|
|
44148
|
+
export declare type GraphStoreUserFavoritedConfluenceDatabaseSortInput = {
|
|
44149
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44150
|
+
};
|
|
43057
44151
|
export declare type GraphStoreUserFavoritedConfluencePageSortInput = {
|
|
43058
44152
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43059
44153
|
};
|
|
44154
|
+
export declare type GraphStoreUserFavoritedConfluenceWhiteboardSortInput = {
|
|
44155
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44156
|
+
};
|
|
43060
44157
|
export declare type GraphStoreUserHasRelevantProjectSortInput = {
|
|
43061
44158
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
43062
44159
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -43069,6 +44166,12 @@ export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
|
43069
44166
|
export declare type GraphStoreUserIsInTeamSortInput = {
|
|
43070
44167
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43071
44168
|
};
|
|
44169
|
+
export declare type GraphStoreUserLastUpdatedDesignSortInput = {
|
|
44170
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44171
|
+
};
|
|
44172
|
+
export declare type GraphStoreUserLaunchedReleaseSortInput = {
|
|
44173
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44174
|
+
};
|
|
43072
44175
|
export declare type GraphStoreUserMemberOfConversationSortInput = {
|
|
43073
44176
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43074
44177
|
};
|
|
@@ -43081,6 +44184,9 @@ export declare type GraphStoreUserOwnedBranchSortInput = {
|
|
|
43081
44184
|
export declare type GraphStoreUserOwnedCalendarEventSortInput = {
|
|
43082
44185
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43083
44186
|
};
|
|
44187
|
+
export declare type GraphStoreUserOwnedDocumentSortInput = {
|
|
44188
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44189
|
+
};
|
|
43084
44190
|
export declare type GraphStoreUserOwnedRemoteLinkSortInput = {
|
|
43085
44191
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43086
44192
|
};
|
|
@@ -43105,6 +44211,9 @@ export declare type GraphStoreUserReviewsPrSortInput = {
|
|
|
43105
44211
|
export declare type GraphStoreUserTaggedInCommentSortInput = {
|
|
43106
44212
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43107
44213
|
};
|
|
44214
|
+
export declare type GraphStoreUserTaggedInConfluencePageSortInput = {
|
|
44215
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44216
|
+
};
|
|
43108
44217
|
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
43109
44218
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43110
44219
|
};
|
|
@@ -43117,6 +44226,9 @@ export declare type GraphStoreUserUpdatedConfluencePageSortInput = {
|
|
|
43117
44226
|
export declare type GraphStoreUserUpdatedConfluenceSpaceSortInput = {
|
|
43118
44227
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43119
44228
|
};
|
|
44229
|
+
export declare type GraphStoreUserUpdatedConfluenceWhiteboardSortInput = {
|
|
44230
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44231
|
+
};
|
|
43120
44232
|
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
43121
44233
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43122
44234
|
};
|
|
@@ -43138,6 +44250,9 @@ export declare type GraphStoreUserWatchesConfluenceBlogpostSortInput = {
|
|
|
43138
44250
|
export declare type GraphStoreUserWatchesConfluencePageSortInput = {
|
|
43139
44251
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43140
44252
|
};
|
|
44253
|
+
export declare type GraphStoreUserWatchesConfluenceWhiteboardSortInput = {
|
|
44254
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44255
|
+
};
|
|
43141
44256
|
export declare type GraphStoreVersionAssociatedBranchSortInput = {
|
|
43142
44257
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
43143
44258
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -43545,9 +44660,11 @@ export declare type GrowthUnifiedProfileProductDetails = {
|
|
|
43545
44660
|
d0Eligible?: Maybe<Scalars['Boolean']['output']>;
|
|
43546
44661
|
d1to6Active?: Maybe<Scalars['Boolean']['output']>;
|
|
43547
44662
|
d1to6Eligible?: Maybe<Scalars['Boolean']['output']>;
|
|
44663
|
+
isTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
43548
44664
|
productEdition?: Maybe<Scalars['String']['output']>;
|
|
43549
44665
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
43550
44666
|
productName?: Maybe<Scalars['String']['output']>;
|
|
44667
|
+
provisionedAt?: Maybe<Scalars['String']['output']>;
|
|
43551
44668
|
};
|
|
43552
44669
|
export declare type GrowthUnifiedProfileResult = {
|
|
43553
44670
|
__typename?: 'GrowthUnifiedProfileResult';
|
|
@@ -43753,6 +44870,7 @@ export declare type HamsTransactionAccountExperienceCapabilities = CommerceTrans
|
|
|
43753
44870
|
export declare type HamsTrial = CommerceTrial & {
|
|
43754
44871
|
__typename?: 'HamsTrial';
|
|
43755
44872
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
44873
|
+
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
43756
44874
|
};
|
|
43757
44875
|
export declare type HasMercuryProjectFields = {
|
|
43758
44876
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
@@ -44530,6 +45648,7 @@ export declare type HelpLayoutAnnouncementElement = HelpLayoutVisualEntity & Nod
|
|
|
44530
45648
|
header?: Maybe<Scalars['String']['output']>;
|
|
44531
45649
|
id: Scalars['ID']['output'];
|
|
44532
45650
|
message?: Maybe<Scalars['String']['output']>;
|
|
45651
|
+
useGlobalSettings?: Maybe<Scalars['Boolean']['output']>;
|
|
44533
45652
|
userLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
44534
45653
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
44535
45654
|
};
|
|
@@ -44540,11 +45659,13 @@ export declare type HelpLayoutAnnouncementElementData = {
|
|
|
44540
45659
|
userLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
44541
45660
|
};
|
|
44542
45661
|
export declare type HelpLayoutAnnouncementInput = {
|
|
45662
|
+
useGlobalSettings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
44543
45663
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
44544
45664
|
};
|
|
44545
|
-
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
45665
|
+
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutBreadcrumbElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
44546
45666
|
export declare type HelpLayoutAtomicElementInput = {
|
|
44547
45667
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
45668
|
+
breadcrumbInput?: InputMaybe<HelpLayoutBreadcrumbElementInput>;
|
|
44548
45669
|
connectInput?: InputMaybe<HelpLayoutConnectInput>;
|
|
44549
45670
|
editorInput?: InputMaybe<HelpLayoutEditorInput>;
|
|
44550
45671
|
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
@@ -44561,6 +45682,7 @@ export declare type HelpLayoutAtomicElementInput = {
|
|
|
44561
45682
|
};
|
|
44562
45683
|
export declare enum HelpLayoutAtomicElementKey {
|
|
44563
45684
|
Announcement = "ANNOUNCEMENT",
|
|
45685
|
+
Breadcrumb = "BREADCRUMB",
|
|
44564
45686
|
Connect = "CONNECT",
|
|
44565
45687
|
Editor = "EDITOR",
|
|
44566
45688
|
Forge = "FORGE",
|
|
@@ -44604,6 +45726,21 @@ export declare enum HelpLayoutBackgroundType {
|
|
|
44604
45726
|
Image = "IMAGE",
|
|
44605
45727
|
Transparent = "TRANSPARENT"
|
|
44606
45728
|
}
|
|
45729
|
+
export declare type HelpLayoutBreadcrumb = {
|
|
45730
|
+
__typename?: 'HelpLayoutBreadcrumb';
|
|
45731
|
+
name: Scalars['String']['output'];
|
|
45732
|
+
relativeUrl: Scalars['String']['output'];
|
|
45733
|
+
};
|
|
45734
|
+
export declare type HelpLayoutBreadcrumbElement = HelpLayoutVisualEntity & Node & {
|
|
45735
|
+
__typename?: 'HelpLayoutBreadcrumbElement';
|
|
45736
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
45737
|
+
id: Scalars['ID']['output'];
|
|
45738
|
+
items?: Maybe<Array<HelpLayoutBreadcrumb>>;
|
|
45739
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
45740
|
+
};
|
|
45741
|
+
export declare type HelpLayoutBreadcrumbElementInput = {
|
|
45742
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
45743
|
+
};
|
|
44607
45744
|
export declare type HelpLayoutCompositeElement = {
|
|
44608
45745
|
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
44609
45746
|
elementType?: Maybe<HelpLayoutCompositeElementType>;
|
|
@@ -44677,13 +45814,14 @@ export declare type HelpLayoutEditorInput = {
|
|
|
44677
45814
|
adf: Scalars['String']['input'];
|
|
44678
45815
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
44679
45816
|
};
|
|
44680
|
-
export declare type HelpLayoutElement = HelpLayoutAnnouncementElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutLinkCardCompositeElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement | QueryError;
|
|
45817
|
+
export declare type HelpLayoutElement = HelpLayoutAnnouncementElement | HelpLayoutBreadcrumbElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutLinkCardCompositeElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement | QueryError;
|
|
44681
45818
|
export declare enum HelpLayoutElementCategory {
|
|
44682
45819
|
Basic = "BASIC",
|
|
44683
45820
|
Navigation = "NAVIGATION"
|
|
44684
45821
|
}
|
|
44685
45822
|
export declare type HelpLayoutElementInput = {
|
|
44686
45823
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
45824
|
+
breadcrumbInput?: InputMaybe<HelpLayoutBreadcrumbElementInput>;
|
|
44687
45825
|
connectInput?: InputMaybe<HelpLayoutConnectInput>;
|
|
44688
45826
|
editorInput?: InputMaybe<HelpLayoutEditorInput>;
|
|
44689
45827
|
elementTypeKey: HelpLayoutElementKey;
|
|
@@ -44701,6 +45839,7 @@ export declare type HelpLayoutElementInput = {
|
|
|
44701
45839
|
};
|
|
44702
45840
|
export declare enum HelpLayoutElementKey {
|
|
44703
45841
|
Announcement = "ANNOUNCEMENT",
|
|
45842
|
+
Breadcrumb = "BREADCRUMB",
|
|
44704
45843
|
Connect = "CONNECT",
|
|
44705
45844
|
Editor = "EDITOR",
|
|
44706
45845
|
Forge = "FORGE",
|
|
@@ -44928,12 +46067,14 @@ export declare type HelpLayoutPortalsListElement = HelpLayoutVisualEntity & Node
|
|
|
44928
46067
|
data?: Maybe<HelpLayoutPortalsListData>;
|
|
44929
46068
|
elementTitle?: Maybe<Scalars['String']['output']>;
|
|
44930
46069
|
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
46070
|
+
expandButtonTextColor?: Maybe<Scalars['String']['output']>;
|
|
44931
46071
|
id: Scalars['ID']['output'];
|
|
44932
46072
|
portals?: Maybe<Array<Maybe<HelpLayoutPortalCard>>>;
|
|
44933
46073
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
44934
46074
|
};
|
|
44935
46075
|
export declare type HelpLayoutPortalsListInput = {
|
|
44936
46076
|
elementTitle?: InputMaybe<Scalars['String']['input']>;
|
|
46077
|
+
expandButtonTextColor?: InputMaybe<Scalars['String']['input']>;
|
|
44937
46078
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
44938
46079
|
};
|
|
44939
46080
|
export declare enum HelpLayoutProjectType {
|
|
@@ -44943,10 +46084,15 @@ export declare enum HelpLayoutProjectType {
|
|
|
44943
46084
|
export declare type HelpLayoutQueryApi = {
|
|
44944
46085
|
__typename?: 'HelpLayoutQueryApi';
|
|
44945
46086
|
elementTypes?: Maybe<Array<HelpLayoutElementType>>;
|
|
46087
|
+
elements?: Maybe<Array<HelpLayoutElement>>;
|
|
44946
46088
|
layout?: Maybe<HelpLayoutResult>;
|
|
44947
46089
|
layoutByParentId?: Maybe<HelpLayoutResult>;
|
|
44948
46090
|
mediaConfig?: Maybe<HelpLayoutMediaConfig>;
|
|
44949
46091
|
};
|
|
46092
|
+
export declare type HelpLayoutQueryApiElementsArgs = {
|
|
46093
|
+
filter?: InputMaybe<HelpLayoutFilter>;
|
|
46094
|
+
ids: Array<Scalars['ID']['input']>;
|
|
46095
|
+
};
|
|
44950
46096
|
export declare type HelpLayoutQueryApiLayoutArgs = {
|
|
44951
46097
|
filter?: InputMaybe<HelpLayoutFilter>;
|
|
44952
46098
|
id: Scalars['ID']['input'];
|
|
@@ -47145,6 +48291,7 @@ export declare type JiraAutodevDeletedPayload = Payload & {
|
|
|
47145
48291
|
};
|
|
47146
48292
|
export declare type JiraAutodevJob = {
|
|
47147
48293
|
__typename?: 'JiraAutodevJob';
|
|
48294
|
+
agent?: Maybe<DevAiRovoAgent>;
|
|
47148
48295
|
branchName?: Maybe<Scalars['String']['output']>;
|
|
47149
48296
|
branchUrl?: Maybe<Scalars['String']['output']>;
|
|
47150
48297
|
codeChanges?: Maybe<JiraAutodevCodeChangeConnection>;
|
|
@@ -47153,6 +48300,7 @@ export declare type JiraAutodevJob = {
|
|
|
47153
48300
|
gitDiff?: Maybe<Scalars['String']['output']>;
|
|
47154
48301
|
id: Scalars['ID']['output'];
|
|
47155
48302
|
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
48303
|
+
issueScopingScore?: Maybe<DevAiIssueScopingResult>;
|
|
47156
48304
|
jobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
47157
48305
|
logGroups?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
47158
48306
|
logs?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -47165,6 +48313,12 @@ export declare type JiraAutodevJob = {
|
|
|
47165
48313
|
status?: Maybe<JiraAutodevStatus>;
|
|
47166
48314
|
statusHistory?: Maybe<JiraAutodevStatusHistoryItemConnection>;
|
|
47167
48315
|
};
|
|
48316
|
+
export declare type JiraAutodevJobAgentArgs = {
|
|
48317
|
+
cloudId: Scalars['ID']['input'];
|
|
48318
|
+
};
|
|
48319
|
+
export declare type JiraAutodevJobIssueScopingScoreArgs = {
|
|
48320
|
+
cloudId: Scalars['ID']['input'];
|
|
48321
|
+
};
|
|
47168
48322
|
export declare type JiraAutodevJobJobLogsArgs = {
|
|
47169
48323
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
47170
48324
|
cloudId: Scalars['ID']['input'];
|
|
@@ -47458,6 +48612,103 @@ export declare enum JiraBoardType {
|
|
|
47458
48612
|
Kanban = "KANBAN",
|
|
47459
48613
|
Scrum = "SCRUM"
|
|
47460
48614
|
}
|
|
48615
|
+
export declare type JiraBoardView = {
|
|
48616
|
+
__typename?: 'JiraBoardView';
|
|
48617
|
+
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
48618
|
+
columns?: Maybe<JiraBoardViewColumnConnection>;
|
|
48619
|
+
completedIssueSearchCutOffInDays?: Maybe<Scalars['Int']['output']>;
|
|
48620
|
+
error?: Maybe<QueryError>;
|
|
48621
|
+
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
48622
|
+
groupByConfig?: Maybe<JiraViewGroupByConfig>;
|
|
48623
|
+
id: Scalars['ID']['output'];
|
|
48624
|
+
};
|
|
48625
|
+
export declare type JiraBoardViewCardOptionsArgs = {
|
|
48626
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48627
|
+
enabledOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48628
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48629
|
+
};
|
|
48630
|
+
export declare type JiraBoardViewColumnsArgs = {
|
|
48631
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48632
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48633
|
+
};
|
|
48634
|
+
export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & {
|
|
48635
|
+
__typename?: 'JiraBoardViewAssigneeColumn';
|
|
48636
|
+
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
48637
|
+
id: Scalars['ID']['output'];
|
|
48638
|
+
user?: Maybe<User>;
|
|
48639
|
+
};
|
|
48640
|
+
export declare type JiraBoardViewCardOption = {
|
|
48641
|
+
id: Scalars['ID']['output'];
|
|
48642
|
+
};
|
|
48643
|
+
export declare type JiraBoardViewCardOptionConnection = {
|
|
48644
|
+
__typename?: 'JiraBoardViewCardOptionConnection';
|
|
48645
|
+
edges?: Maybe<Array<Maybe<JiraBoardViewCardOptionEdge>>>;
|
|
48646
|
+
errors?: Maybe<Array<QueryError>>;
|
|
48647
|
+
pageInfo?: Maybe<PageInfo>;
|
|
48648
|
+
};
|
|
48649
|
+
export declare type JiraBoardViewCardOptionEdge = {
|
|
48650
|
+
__typename?: 'JiraBoardViewCardOptionEdge';
|
|
48651
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48652
|
+
node?: Maybe<JiraBoardViewCardOption>;
|
|
48653
|
+
};
|
|
48654
|
+
export declare type JiraBoardViewCategoryColumn = JiraBoardViewColumn & {
|
|
48655
|
+
__typename?: 'JiraBoardViewCategoryColumn';
|
|
48656
|
+
category?: Maybe<JiraOption>;
|
|
48657
|
+
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
48658
|
+
id: Scalars['ID']['output'];
|
|
48659
|
+
};
|
|
48660
|
+
export declare type JiraBoardViewColumn = {
|
|
48661
|
+
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
48662
|
+
id: Scalars['ID']['output'];
|
|
48663
|
+
};
|
|
48664
|
+
export declare type JiraBoardViewColumnConnection = {
|
|
48665
|
+
__typename?: 'JiraBoardViewColumnConnection';
|
|
48666
|
+
edges?: Maybe<Array<Maybe<JiraBoardViewColumnEdge>>>;
|
|
48667
|
+
errors?: Maybe<Array<QueryError>>;
|
|
48668
|
+
pageInfo?: Maybe<PageInfo>;
|
|
48669
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
48670
|
+
};
|
|
48671
|
+
export declare type JiraBoardViewColumnEdge = {
|
|
48672
|
+
__typename?: 'JiraBoardViewColumnEdge';
|
|
48673
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48674
|
+
node?: Maybe<JiraBoardViewColumn>;
|
|
48675
|
+
};
|
|
48676
|
+
export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
48677
|
+
__typename?: 'JiraBoardViewFieldCardOption';
|
|
48678
|
+
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
48679
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
48680
|
+
field?: Maybe<JiraField>;
|
|
48681
|
+
id: Scalars['ID']['output'];
|
|
48682
|
+
};
|
|
48683
|
+
export declare type JiraBoardViewInput = {
|
|
48684
|
+
jiraBoardViewQueryInput: JiraBoardViewQueryInput;
|
|
48685
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
48686
|
+
};
|
|
48687
|
+
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & {
|
|
48688
|
+
__typename?: 'JiraBoardViewPriorityColumn';
|
|
48689
|
+
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
48690
|
+
id: Scalars['ID']['output'];
|
|
48691
|
+
priority?: Maybe<JiraPriority>;
|
|
48692
|
+
};
|
|
48693
|
+
export declare type JiraBoardViewProjectKeyAndItemIdQuery = {
|
|
48694
|
+
cloudId: Scalars['ID']['input'];
|
|
48695
|
+
itemId: Scalars['String']['input'];
|
|
48696
|
+
projectKey: Scalars['String']['input'];
|
|
48697
|
+
};
|
|
48698
|
+
export declare type JiraBoardViewQueryInput = {
|
|
48699
|
+
projectKeyAndItemIdQuery?: InputMaybe<JiraBoardViewProjectKeyAndItemIdQuery>;
|
|
48700
|
+
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
48701
|
+
};
|
|
48702
|
+
export declare type JiraBoardViewSettings = {
|
|
48703
|
+
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
48704
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
48705
|
+
};
|
|
48706
|
+
export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & {
|
|
48707
|
+
__typename?: 'JiraBoardViewStatusColumn';
|
|
48708
|
+
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
48709
|
+
id: Scalars['ID']['output'];
|
|
48710
|
+
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
48711
|
+
};
|
|
47461
48712
|
export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
47462
48713
|
__typename?: 'JiraBooleanField';
|
|
47463
48714
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -48317,9 +49568,12 @@ export declare type JiraComment = {
|
|
|
48317
49568
|
};
|
|
48318
49569
|
export declare type JiraCommentChildCommentsArgs = {
|
|
48319
49570
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
49571
|
+
afterTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
48320
49572
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
49573
|
+
beforeTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
48321
49574
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48322
49575
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49576
|
+
targetId?: InputMaybe<Scalars['String']['input']>;
|
|
48323
49577
|
};
|
|
48324
49578
|
export declare type JiraCommentConnection = {
|
|
48325
49579
|
__typename?: 'JiraCommentConnection';
|
|
@@ -49017,7 +50271,7 @@ export declare type JiraCustomBackgroundEdge = {
|
|
|
49017
50271
|
node?: Maybe<JiraCustomBackground>;
|
|
49018
50272
|
};
|
|
49019
50273
|
export declare type JiraCustomFieldOptionInput = {
|
|
49020
|
-
externalUuid
|
|
50274
|
+
externalUuid?: InputMaybe<Scalars['String']['input']>;
|
|
49021
50275
|
optionId?: InputMaybe<Scalars['Long']['input']>;
|
|
49022
50276
|
parentExternalUuid?: InputMaybe<Scalars['String']['input']>;
|
|
49023
50277
|
parentOptionId?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -49954,6 +51208,7 @@ export declare type JiraFieldAssociationWithIssueTypes = JiraProjectFieldAssocia
|
|
|
49954
51208
|
__typename?: 'JiraFieldAssociationWithIssueTypes';
|
|
49955
51209
|
field?: Maybe<JiraField>;
|
|
49956
51210
|
fieldOperation?: Maybe<JiraFieldOperation>;
|
|
51211
|
+
fieldOptions?: Maybe<JiraFieldOptionConnection>;
|
|
49957
51212
|
hasMissingConfiguration?: Maybe<Scalars['Boolean']['output']>;
|
|
49958
51213
|
id: Scalars['ID']['output'];
|
|
49959
51214
|
isFieldLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -50022,6 +51277,22 @@ export declare type JiraFieldOperation = {
|
|
|
50022
51277
|
canModifyOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
50023
51278
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
50024
51279
|
};
|
|
51280
|
+
export declare type JiraFieldOption = {
|
|
51281
|
+
__typename?: 'JiraFieldOption';
|
|
51282
|
+
optionId?: Maybe<Scalars['Long']['output']>;
|
|
51283
|
+
parentOptionId?: Maybe<Scalars['Long']['output']>;
|
|
51284
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
51285
|
+
};
|
|
51286
|
+
export declare type JiraFieldOptionConnection = {
|
|
51287
|
+
__typename?: 'JiraFieldOptionConnection';
|
|
51288
|
+
edges?: Maybe<Array<Maybe<JiraFieldOptionEdge>>>;
|
|
51289
|
+
pageInfo: PageInfo;
|
|
51290
|
+
};
|
|
51291
|
+
export declare type JiraFieldOptionEdge = {
|
|
51292
|
+
__typename?: 'JiraFieldOptionEdge';
|
|
51293
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51294
|
+
node?: Maybe<JiraFieldOption>;
|
|
51295
|
+
};
|
|
50025
51296
|
export declare type JiraFieldOptionIdsFilterInput = {
|
|
50026
51297
|
operation: JiraFieldOptionIdsFilterOperation;
|
|
50027
51298
|
optionIds: Array<Scalars['ID']['input']>;
|
|
@@ -52108,6 +53379,12 @@ export declare type JiraIssueSearchGroupByFieldMutationPayload = Payload & {
|
|
|
52108
53379
|
errors?: Maybe<Array<MutationError>>;
|
|
52109
53380
|
success: Scalars['Boolean']['output'];
|
|
52110
53381
|
};
|
|
53382
|
+
export declare type JiraIssueSearchHideDonePreferenceMutationPayload = Payload & {
|
|
53383
|
+
__typename?: 'JiraIssueSearchHideDonePreferenceMutationPayload';
|
|
53384
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53385
|
+
isHideDoneEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
53386
|
+
success: Scalars['Boolean']['output'];
|
|
53387
|
+
};
|
|
52111
53388
|
export declare type JiraIssueSearchHierarchyPreferenceMutationPayload = Payload & {
|
|
52112
53389
|
__typename?: 'JiraIssueSearchHierarchyPreferenceMutationPayload';
|
|
52113
53390
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -52122,8 +53399,10 @@ export declare type JiraIssueSearchInput = {
|
|
|
52122
53399
|
};
|
|
52123
53400
|
export declare enum JiraIssueSearchOperationScope {
|
|
52124
53401
|
NinGlobal = "NIN_GLOBAL",
|
|
53402
|
+
NinGlobalSchemaRefactor = "NIN_GLOBAL_SCHEMA_REFACTOR",
|
|
52125
53403
|
NinGlobalShadowRequest = "NIN_GLOBAL_SHADOW_REQUEST",
|
|
52126
53404
|
NinProject = "NIN_PROJECT",
|
|
53405
|
+
NinProjectSchemaRefactor = "NIN_PROJECT_SCHEMA_REFACTOR",
|
|
52127
53406
|
NinProjectShadowRequest = "NIN_PROJECT_SHADOW_REQUEST"
|
|
52128
53407
|
}
|
|
52129
53408
|
export declare type JiraIssueSearchOptions = {
|
|
@@ -52454,6 +53733,10 @@ export declare enum JiraIssueViewActivityFeedSortOrder {
|
|
|
52454
53733
|
NewestFirst = "NEWEST_FIRST",
|
|
52455
53734
|
OldestFirst = "OLDEST_FIRST"
|
|
52456
53735
|
}
|
|
53736
|
+
export declare enum JiraIssueViewActivityLayout {
|
|
53737
|
+
Horizontal = "HORIZONTAL",
|
|
53738
|
+
Vertical = "VERTICAL"
|
|
53739
|
+
}
|
|
52457
53740
|
export declare enum JiraIssueViewAttachmentPanelViewMode {
|
|
52458
53741
|
ListView = "LIST_VIEW",
|
|
52459
53742
|
StripView = "STRIP_VIEW"
|
|
@@ -53776,6 +55059,7 @@ export declare type JiraMutation = {
|
|
|
53776
55059
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
53777
55060
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
53778
55061
|
updateIssueSearchGroupByConfig?: Maybe<JiraIssueSearchGroupByFieldMutationPayload>;
|
|
55062
|
+
updateIssueSearchHideDonePreference?: Maybe<JiraIssueSearchHideDonePreferenceMutationPayload>;
|
|
53779
55063
|
updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
|
|
53780
55064
|
updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
|
|
53781
55065
|
updateJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
@@ -54236,6 +55520,10 @@ export declare type JiraMutationUpdateIssueSearchGroupByConfigArgs = {
|
|
|
54236
55520
|
fieldId?: InputMaybe<Scalars['String']['input']>;
|
|
54237
55521
|
viewId: Scalars['ID']['input'];
|
|
54238
55522
|
};
|
|
55523
|
+
export declare type JiraMutationUpdateIssueSearchHideDonePreferenceArgs = {
|
|
55524
|
+
isHideDoneEnabled: Scalars['Boolean']['input'];
|
|
55525
|
+
viewId: Scalars['ID']['input'];
|
|
55526
|
+
};
|
|
54239
55527
|
export declare type JiraMutationUpdateIssueSearchHierarchyPreferenceArgs = {
|
|
54240
55528
|
isHierarchyEnabled: Scalars['Boolean']['input'];
|
|
54241
55529
|
viewId: Scalars['ID']['input'];
|
|
@@ -54509,24 +55797,30 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
54509
55797
|
Calendar = "CALENDAR",
|
|
54510
55798
|
Code = "CODE",
|
|
54511
55799
|
Components = "COMPONENTS",
|
|
54512
|
-
Dependencies = "DEPENDENCIES",
|
|
54513
55800
|
Deployments = "DEPLOYMENTS",
|
|
54514
55801
|
Development = "DEVELOPMENT",
|
|
54515
55802
|
Forms = "FORMS",
|
|
55803
|
+
GetStarted = "GET_STARTED",
|
|
54516
55804
|
Goals = "GOALS",
|
|
54517
55805
|
Incidents = "INCIDENTS",
|
|
54518
55806
|
Issues = "ISSUES",
|
|
54519
55807
|
List = "LIST",
|
|
54520
55808
|
OnCall = "ON_CALL",
|
|
54521
55809
|
Pages = "PAGES",
|
|
54522
|
-
|
|
55810
|
+
PlanCalendar = "PLAN_CALENDAR",
|
|
55811
|
+
PlanDependencies = "PLAN_DEPENDENCIES",
|
|
55812
|
+
PlanProgram = "PLAN_PROGRAM",
|
|
55813
|
+
PlanReleases = "PLAN_RELEASES",
|
|
55814
|
+
PlanSummary = "PLAN_SUMMARY",
|
|
55815
|
+
PlanTeams = "PLAN_TEAMS",
|
|
55816
|
+
PlanTimeline = "PLAN_TIMELINE",
|
|
55817
|
+
Queue = "QUEUE",
|
|
54523
55818
|
Releases = "RELEASES",
|
|
54524
55819
|
Reports = "REPORTS",
|
|
54525
55820
|
Requests = "REQUESTS",
|
|
54526
55821
|
Security = "SECURITY",
|
|
54527
55822
|
Shortcuts = "SHORTCUTS",
|
|
54528
55823
|
Summary = "SUMMARY",
|
|
54529
|
-
Teams = "TEAMS",
|
|
54530
55824
|
Timeline = "TIMELINE"
|
|
54531
55825
|
}
|
|
54532
55826
|
export declare type JiraNavigationUiStateUserProperty = JiraEntityProperty & Node & {
|
|
@@ -54672,6 +55966,7 @@ export declare type JiraOAuthAppsApp = {
|
|
|
54672
55966
|
featureFlagsModule?: Maybe<JiraOAuthAppsFeatureFlagsModule>;
|
|
54673
55967
|
homeUrl: Scalars['String']['output'];
|
|
54674
55968
|
id: Scalars['ID']['output'];
|
|
55969
|
+
installationStatus?: Maybe<JiraOAuthAppsInstallationStatus>;
|
|
54675
55970
|
logoUrl: Scalars['String']['output'];
|
|
54676
55971
|
name: Scalars['String']['output'];
|
|
54677
55972
|
remoteLinksModule?: Maybe<JiraOAuthAppsRemoteLinksModule>;
|
|
@@ -54772,6 +56067,12 @@ export declare type JiraOAuthAppsInstallAppInput = {
|
|
|
54772
56067
|
appId: Scalars['ID']['input'];
|
|
54773
56068
|
clientMutationId?: InputMaybe<Scalars['ID']['input']>;
|
|
54774
56069
|
};
|
|
56070
|
+
export declare enum JiraOAuthAppsInstallationStatus {
|
|
56071
|
+
Complete = "COMPLETE",
|
|
56072
|
+
Failed = "FAILED",
|
|
56073
|
+
Pending = "PENDING",
|
|
56074
|
+
Running = "RUNNING"
|
|
56075
|
+
}
|
|
54775
56076
|
export declare type JiraOAuthAppsMutation = {
|
|
54776
56077
|
__typename?: 'JiraOAuthAppsMutation';
|
|
54777
56078
|
createJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
@@ -55305,9 +56606,12 @@ export declare type JiraPlatformComment = JiraComment & Node & {
|
|
|
55305
56606
|
};
|
|
55306
56607
|
export declare type JiraPlatformCommentChildCommentsArgs = {
|
|
55307
56608
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
56609
|
+
afterTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
55308
56610
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
56611
|
+
beforeTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
55309
56612
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55310
56613
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
56614
|
+
targetId?: InputMaybe<Scalars['String']['input']>;
|
|
55311
56615
|
};
|
|
55312
56616
|
export declare type JiraPlaybook = Node & {
|
|
55313
56617
|
__typename?: 'JiraPlaybook';
|
|
@@ -56210,6 +57514,12 @@ export declare type JiraProjectUpdateAvatarMutationPayload = Payload & {
|
|
|
56210
57514
|
project?: Maybe<JiraProject>;
|
|
56211
57515
|
success: Scalars['Boolean']['output'];
|
|
56212
57516
|
};
|
|
57517
|
+
export declare type JiraProjectUpdateBackgroundMutationPayload = Payload & {
|
|
57518
|
+
__typename?: 'JiraProjectUpdateBackgroundMutationPayload';
|
|
57519
|
+
errors?: Maybe<Array<MutationError>>;
|
|
57520
|
+
project?: Maybe<JiraProject>;
|
|
57521
|
+
success: Scalars['Boolean']['output'];
|
|
57522
|
+
};
|
|
56213
57523
|
export declare type JiraProjectUpdateNameInput = {
|
|
56214
57524
|
cloudId: Scalars['ID']['input'];
|
|
56215
57525
|
name: Scalars['String']['input'];
|
|
@@ -56421,6 +57731,7 @@ export declare type JiraQuery = {
|
|
|
56421
57731
|
recentProjects?: Maybe<JiraProjectConnection>;
|
|
56422
57732
|
recentQueues?: Maybe<JiraSearchableEntityConnection>;
|
|
56423
57733
|
remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
|
|
57734
|
+
reportsPage?: Maybe<JiraReportsPage>;
|
|
56424
57735
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
56425
57736
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
56426
57737
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
@@ -57191,6 +58502,10 @@ export declare type JiraQueryRecentQueuesArgs = {
|
|
|
57191
58502
|
export declare type JiraQueryRemoteIssueLinksByIdArgs = {
|
|
57192
58503
|
ids: Array<Scalars['ID']['input']>;
|
|
57193
58504
|
};
|
|
58505
|
+
export declare type JiraQueryReportsPageArgs = {
|
|
58506
|
+
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
58507
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
58508
|
+
};
|
|
57194
58509
|
export declare type JiraQueryRequestTypeTemplateByIdArgs = {
|
|
57195
58510
|
cloudId: Scalars['ID']['input'];
|
|
57196
58511
|
templateId: Scalars['ID']['input'];
|
|
@@ -57709,6 +59024,22 @@ export declare type JiraRenameNavigationItemPayload = Payload & {
|
|
|
57709
59024
|
navigationItem?: Maybe<JiraNavigationItem>;
|
|
57710
59025
|
success: Scalars['Boolean']['output'];
|
|
57711
59026
|
};
|
|
59027
|
+
export declare type JiraReorderBoardViewColumnInput = {
|
|
59028
|
+
columnId: Scalars['ID']['input'];
|
|
59029
|
+
position: JiraReorderBoardViewColumnPosition;
|
|
59030
|
+
relativeColumnId: Scalars['ID']['input'];
|
|
59031
|
+
viewId: Scalars['ID']['input'];
|
|
59032
|
+
};
|
|
59033
|
+
export declare type JiraReorderBoardViewColumnPayload = Payload & {
|
|
59034
|
+
__typename?: 'JiraReorderBoardViewColumnPayload';
|
|
59035
|
+
boardView?: Maybe<JiraBoardView>;
|
|
59036
|
+
errors?: Maybe<Array<MutationError>>;
|
|
59037
|
+
success: Scalars['Boolean']['output'];
|
|
59038
|
+
};
|
|
59039
|
+
export declare enum JiraReorderBoardViewColumnPosition {
|
|
59040
|
+
After = "AFTER",
|
|
59041
|
+
Before = "BEFORE"
|
|
59042
|
+
}
|
|
57712
59043
|
export declare type JiraReplaceIssueSearchViewFieldSetsInput = {
|
|
57713
59044
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
57714
59045
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -57716,6 +59047,25 @@ export declare type JiraReplaceIssueSearchViewFieldSetsInput = {
|
|
|
57716
59047
|
inclusive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57717
59048
|
nodes: Array<Scalars['String']['input']>;
|
|
57718
59049
|
};
|
|
59050
|
+
export declare type JiraReport = {
|
|
59051
|
+
__typename?: 'JiraReport';
|
|
59052
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
59053
|
+
id: Scalars['ID']['output'];
|
|
59054
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
59055
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
59056
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
59057
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
59058
|
+
};
|
|
59059
|
+
export declare type JiraReportCategory = {
|
|
59060
|
+
__typename?: 'JiraReportCategory';
|
|
59061
|
+
id: Scalars['ID']['output'];
|
|
59062
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
59063
|
+
reports?: Maybe<Array<Maybe<JiraReport>>>;
|
|
59064
|
+
};
|
|
59065
|
+
export declare type JiraReportsPage = {
|
|
59066
|
+
__typename?: 'JiraReportsPage';
|
|
59067
|
+
categories?: Maybe<Array<Maybe<JiraReportCategory>>>;
|
|
59068
|
+
};
|
|
57719
59069
|
export declare type JiraResolution = Node & {
|
|
57720
59070
|
__typename?: 'JiraResolution';
|
|
57721
59071
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -58429,9 +59779,12 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
58429
59779
|
};
|
|
58430
59780
|
export declare type JiraServiceManagementCommentChildCommentsArgs = {
|
|
58431
59781
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
59782
|
+
afterTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
58432
59783
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
59784
|
+
beforeTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
58433
59785
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58434
59786
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
59787
|
+
targetId?: InputMaybe<Scalars['String']['input']>;
|
|
58435
59788
|
};
|
|
58436
59789
|
export declare enum JiraServiceManagementCommentVisibility {
|
|
58437
59790
|
Internal = "INTERNAL",
|
|
@@ -59281,6 +60634,38 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
59281
60634
|
key: Scalars['String']['input'];
|
|
59282
60635
|
value: Scalars['String']['input'];
|
|
59283
60636
|
};
|
|
60637
|
+
export declare type JiraSetBoardViewCardFieldSelectedInput = {
|
|
60638
|
+
fieldId: Scalars['String']['input'];
|
|
60639
|
+
selected: Scalars['Boolean']['input'];
|
|
60640
|
+
viewId: Scalars['ID']['input'];
|
|
60641
|
+
};
|
|
60642
|
+
export declare type JiraSetBoardViewCardFieldSelectedPayload = Payload & {
|
|
60643
|
+
__typename?: 'JiraSetBoardViewCardFieldSelectedPayload';
|
|
60644
|
+
boardView?: Maybe<JiraBoardView>;
|
|
60645
|
+
errors?: Maybe<Array<MutationError>>;
|
|
60646
|
+
success: Scalars['Boolean']['output'];
|
|
60647
|
+
};
|
|
60648
|
+
export declare type JiraSetBoardViewColumnStateInput = {
|
|
60649
|
+
collapsed: Scalars['Boolean']['input'];
|
|
60650
|
+
columnId: Scalars['ID']['input'];
|
|
60651
|
+
viewId: Scalars['ID']['input'];
|
|
60652
|
+
};
|
|
60653
|
+
export declare type JiraSetBoardViewColumnStatePayload = Payload & {
|
|
60654
|
+
__typename?: 'JiraSetBoardViewColumnStatePayload';
|
|
60655
|
+
boardView?: Maybe<JiraBoardView>;
|
|
60656
|
+
errors?: Maybe<Array<MutationError>>;
|
|
60657
|
+
success: Scalars['Boolean']['output'];
|
|
60658
|
+
};
|
|
60659
|
+
export declare type JiraSetBoardViewCompletedIssueSearchCutOffInput = {
|
|
60660
|
+
completedIssueSearchCutOffInDays: Scalars['Int']['input'];
|
|
60661
|
+
viewId: Scalars['ID']['input'];
|
|
60662
|
+
};
|
|
60663
|
+
export declare type JiraSetBoardViewCompletedIssueSearchCutOffPayload = Payload & {
|
|
60664
|
+
__typename?: 'JiraSetBoardViewCompletedIssueSearchCutOffPayload';
|
|
60665
|
+
boardView?: Maybe<JiraBoardView>;
|
|
60666
|
+
errors?: Maybe<Array<MutationError>>;
|
|
60667
|
+
success: Scalars['Boolean']['output'];
|
|
60668
|
+
};
|
|
59284
60669
|
export declare type JiraSetDefaultNavigationItemInput = {
|
|
59285
60670
|
id: Scalars['ID']['input'];
|
|
59286
60671
|
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -59332,6 +60717,26 @@ export declare type JiraSetProjectSelectedDeploymentAppsPropertyPayload = Payloa
|
|
|
59332
60717
|
errors?: Maybe<Array<MutationError>>;
|
|
59333
60718
|
success: Scalars['Boolean']['output'];
|
|
59334
60719
|
};
|
|
60720
|
+
export declare type JiraSetViewFilterInput = {
|
|
60721
|
+
jql: Scalars['String']['input'];
|
|
60722
|
+
viewId: Scalars['ID']['input'];
|
|
60723
|
+
};
|
|
60724
|
+
export declare type JiraSetViewFilterPayload = Payload & {
|
|
60725
|
+
__typename?: 'JiraSetViewFilterPayload';
|
|
60726
|
+
errors?: Maybe<Array<MutationError>>;
|
|
60727
|
+
success: Scalars['Boolean']['output'];
|
|
60728
|
+
view?: Maybe<JiraView>;
|
|
60729
|
+
};
|
|
60730
|
+
export declare type JiraSetViewGroupByInput = {
|
|
60731
|
+
fieldId: Scalars['String']['input'];
|
|
60732
|
+
viewId: Scalars['ID']['input'];
|
|
60733
|
+
};
|
|
60734
|
+
export declare type JiraSetViewGroupByPayload = Payload & {
|
|
60735
|
+
__typename?: 'JiraSetViewGroupByPayload';
|
|
60736
|
+
errors?: Maybe<Array<MutationError>>;
|
|
60737
|
+
success: Scalars['Boolean']['output'];
|
|
60738
|
+
view?: Maybe<JiraView>;
|
|
60739
|
+
};
|
|
59335
60740
|
export declare type JiraShareableEntityAnonymousAccessGrant = {
|
|
59336
60741
|
__typename?: 'JiraShareableEntityAnonymousAccessGrant';
|
|
59337
60742
|
type?: Maybe<JiraShareableEntityGrant>;
|
|
@@ -61095,6 +62500,7 @@ export declare type JiraUserPreferences = {
|
|
|
61095
62500
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
61096
62501
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
61097
62502
|
issueViewActivityFeedSortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
62503
|
+
issueViewActivityLayout?: Maybe<JiraIssueViewActivityLayout>;
|
|
61098
62504
|
issueViewAttachmentPanelViewMode?: Maybe<JiraIssueViewAttachmentPanelViewMode>;
|
|
61099
62505
|
issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
|
|
61100
62506
|
issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
|
|
@@ -61694,6 +63100,15 @@ export declare type JiraView = {
|
|
|
61694
63100
|
error?: Maybe<QueryError>;
|
|
61695
63101
|
id: Scalars['ID']['output'];
|
|
61696
63102
|
};
|
|
63103
|
+
export declare type JiraViewFilterConfig = {
|
|
63104
|
+
__typename?: 'JiraViewFilterConfig';
|
|
63105
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
63106
|
+
};
|
|
63107
|
+
export declare type JiraViewGroupByConfig = {
|
|
63108
|
+
__typename?: 'JiraViewGroupByConfig';
|
|
63109
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
63110
|
+
fieldName?: Maybe<Scalars['String']['output']>;
|
|
63111
|
+
};
|
|
61697
63112
|
export declare type JiraViewScopeInput = {
|
|
61698
63113
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
61699
63114
|
projectKeys?: InputMaybe<JiraProjectKeysInput>;
|
|
@@ -63176,10 +64591,13 @@ export declare type KnowledgeBaseMutationApi = {
|
|
|
63176
64591
|
};
|
|
63177
64592
|
export declare type KnowledgeBaseMutationApiLinkKnowledgeBaseSourceArgs = {
|
|
63178
64593
|
container: Scalars['ID']['input'];
|
|
63179
|
-
|
|
64594
|
+
sourceARI?: InputMaybe<Scalars['ID']['input']>;
|
|
64595
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
63180
64596
|
};
|
|
63181
64597
|
export declare type KnowledgeBaseMutationApiUnlinkKnowledgeBaseSourceArgs = {
|
|
63182
|
-
|
|
64598
|
+
container?: InputMaybe<Scalars['ID']['input']>;
|
|
64599
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
64600
|
+
linkedSourceARI?: InputMaybe<Scalars['ID']['input']>;
|
|
63183
64601
|
};
|
|
63184
64602
|
export declare type KnowledgeBaseQueryApi = {
|
|
63185
64603
|
__typename?: 'KnowledgeBaseQueryApi';
|
|
@@ -63198,6 +64616,7 @@ export declare type KnowledgeBaseSource = {
|
|
|
63198
64616
|
id: Scalars['ID']['output'];
|
|
63199
64617
|
name: Scalars['String']['output'];
|
|
63200
64618
|
permissions?: Maybe<KnowledgeBaseSourcePermissions>;
|
|
64619
|
+
sourceType?: Maybe<Scalars['String']['output']>;
|
|
63201
64620
|
url: Scalars['String']['output'];
|
|
63202
64621
|
};
|
|
63203
64622
|
export declare type KnowledgeBaseSourcePermissionsArgs = {
|
|
@@ -63997,6 +65416,24 @@ export declare type LookAndFeelSettings = {
|
|
|
63997
65416
|
selected?: Maybe<Scalars['String']['output']>;
|
|
63998
65417
|
theme?: Maybe<LookAndFeel>;
|
|
63999
65418
|
};
|
|
65419
|
+
export declare type LoomMeeting = Node & {
|
|
65420
|
+
__typename?: 'LoomMeeting';
|
|
65421
|
+
endsAt?: Maybe<Scalars['String']['output']>;
|
|
65422
|
+
external?: Maybe<Scalars['Boolean']['output']>;
|
|
65423
|
+
id: Scalars['ID']['output'];
|
|
65424
|
+
recorder?: Maybe<User>;
|
|
65425
|
+
recorderId?: Maybe<Scalars['ID']['output']>;
|
|
65426
|
+
recurring?: Maybe<Scalars['Boolean']['output']>;
|
|
65427
|
+
source?: Maybe<LoomMeetingSource>;
|
|
65428
|
+
startsAt?: Maybe<Scalars['String']['output']>;
|
|
65429
|
+
title: Scalars['String']['output'];
|
|
65430
|
+
video?: Maybe<LoomVideo>;
|
|
65431
|
+
};
|
|
65432
|
+
export declare enum LoomMeetingSource {
|
|
65433
|
+
GoogleCalendar = "GOOGLE_CALENDAR",
|
|
65434
|
+
MicrosoftOutlook = "MICROSOFT_OUTLOOK",
|
|
65435
|
+
Zoom = "ZOOM"
|
|
65436
|
+
}
|
|
64000
65437
|
export declare type LoomSpace = Node & {
|
|
64001
65438
|
__typename?: 'LoomSpace';
|
|
64002
65439
|
id: Scalars['ID']['output'];
|
|
@@ -64575,6 +66012,7 @@ export declare type MarketplaceConsoleAppSoftwares = {
|
|
|
64575
66012
|
appSoftwares: Array<MarketplaceConsoleAppSoftwareShort>;
|
|
64576
66013
|
};
|
|
64577
66014
|
export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
|
|
66015
|
+
assets?: InputMaybe<MarketplaceConsoleCreateVersionAssetsInput>;
|
|
64578
66016
|
buildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
64579
66017
|
compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>;
|
|
64580
66018
|
dcBuildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -64632,6 +66070,10 @@ export declare type MarketplaceConsoleCreatePrivateAppVersionMutationResponse =
|
|
|
64632
66070
|
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
64633
66071
|
success: Scalars['Boolean']['output'];
|
|
64634
66072
|
};
|
|
66073
|
+
export declare type MarketplaceConsoleCreateVersionAssetsInput = {
|
|
66074
|
+
highlights?: InputMaybe<Array<MarketplaceConsoleHighlightAssetInput>>;
|
|
66075
|
+
screenshots?: InputMaybe<Array<MarketplaceConsoleImageAssetInput>>;
|
|
66076
|
+
};
|
|
64635
66077
|
export declare type MarketplaceConsoleDeleteAppVersionResponse = MarketplaceConsoleKnownError | MarketplaceConsoleMutationVoidResponse;
|
|
64636
66078
|
export declare type MarketplaceConsoleDeploymentInstruction = {
|
|
64637
66079
|
__typename?: 'MarketplaceConsoleDeploymentInstruction';
|
|
@@ -64832,6 +66274,10 @@ export declare type MarketplaceConsoleGetVersionsListInput = {
|
|
|
64832
66274
|
legacyAppVersionApprovalStatus?: InputMaybe<Array<MarketplaceConsoleAsvlLegacyVersionApprovalStatus>>;
|
|
64833
66275
|
legacyAppVersionStatus?: InputMaybe<Array<MarketplaceConsoleAsvlLegacyVersionStatus>>;
|
|
64834
66276
|
};
|
|
66277
|
+
export declare type MarketplaceConsoleHighlightAssetInput = {
|
|
66278
|
+
screenshotUrl: Scalars['String']['input'];
|
|
66279
|
+
thumbnailUrl?: InputMaybe<Scalars['String']['input']>;
|
|
66280
|
+
};
|
|
64835
66281
|
export declare enum MarketplaceConsoleHosting {
|
|
64836
66282
|
Cloud = "CLOUD",
|
|
64837
66283
|
DataCenter = "DATA_CENTER",
|
|
@@ -64841,6 +66287,9 @@ export declare type MarketplaceConsoleHostingOption = {
|
|
|
64841
66287
|
__typename?: 'MarketplaceConsoleHostingOption';
|
|
64842
66288
|
hosting: MarketplaceConsoleHosting;
|
|
64843
66289
|
};
|
|
66290
|
+
export declare type MarketplaceConsoleImageAssetInput = {
|
|
66291
|
+
url: Scalars['String']['input'];
|
|
66292
|
+
};
|
|
64844
66293
|
export declare type MarketplaceConsoleImageMediaAsset = {
|
|
64845
66294
|
__typename?: 'MarketplaceConsoleImageMediaAsset';
|
|
64846
66295
|
altText?: Maybe<Scalars['String']['output']>;
|
|
@@ -66504,6 +67953,8 @@ export declare type MercuryFocusAreaFocusAreaStatusUpdatesArgs = {
|
|
|
66504
67953
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66505
67954
|
};
|
|
66506
67955
|
export declare type MercuryFocusAreaSubFocusAreasArgs = {
|
|
67956
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67957
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66507
67958
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
66508
67959
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
66509
67960
|
};
|
|
@@ -66802,29 +68253,6 @@ export declare type MercuryHumanResourcesAllocation = {
|
|
|
66802
68253
|
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
66803
68254
|
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
66804
68255
|
};
|
|
66805
|
-
export declare type MercuryJiraAlignEpic = HasMercuryProjectFields & Node & {
|
|
66806
|
-
__typename?: 'MercuryJiraAlignEpic';
|
|
66807
|
-
id: Scalars['ID']['output'];
|
|
66808
|
-
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
66809
|
-
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
66810
|
-
mercuryProjectName?: Maybe<Scalars['String']['output']>;
|
|
66811
|
-
mercuryProjectOwner?: Maybe<User>;
|
|
66812
|
-
mercuryProjectOwnerId?: Maybe<Scalars['String']['output']>;
|
|
66813
|
-
mercuryProjectProviderName?: Maybe<Scalars['String']['output']>;
|
|
66814
|
-
mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
|
|
66815
|
-
mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
|
|
66816
|
-
mercuryTargetDate?: Maybe<Scalars['String']['output']>;
|
|
66817
|
-
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
66818
|
-
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
66819
|
-
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
66820
|
-
};
|
|
66821
|
-
export declare type MercuryJiraAlignProviderQueryApi = {
|
|
66822
|
-
__typename?: 'MercuryJiraAlignProviderQueryApi';
|
|
66823
|
-
jiraAlignEpicsByAris?: Maybe<Array<MercuryJiraAlignEpic>>;
|
|
66824
|
-
};
|
|
66825
|
-
export declare type MercuryJiraAlignProviderQueryApiJiraAlignEpicsByArisArgs = {
|
|
66826
|
-
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
66827
|
-
};
|
|
66828
68256
|
export declare type MercuryLinkAtlassianWorkToFocusAreaInput = {
|
|
66829
68257
|
focusAreaAri: Scalars['String']['input'];
|
|
66830
68258
|
workAris: Array<Scalars['String']['input']>;
|
|
@@ -67067,11 +68495,6 @@ export declare enum MercuryProjectStatusColor {
|
|
|
67067
68495
|
Red = "RED",
|
|
67068
68496
|
Yellow = "YELLOW"
|
|
67069
68497
|
}
|
|
67070
|
-
export declare type MercuryProjectStatusImpl = MercuryProjectStatus & {
|
|
67071
|
-
__typename?: 'MercuryProjectStatusImpl';
|
|
67072
|
-
mercuryColor?: Maybe<MercuryProjectStatusColor>;
|
|
67073
|
-
mercuryName?: Maybe<Scalars['String']['output']>;
|
|
67074
|
-
};
|
|
67075
68498
|
export declare enum MercuryProjectTargetDateType {
|
|
67076
68499
|
Day = "DAY",
|
|
67077
68500
|
Month = "MONTH",
|
|
@@ -68031,6 +69454,8 @@ export declare type Mutation = {
|
|
|
68031
69454
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
68032
69455
|
devAi?: Maybe<DevAiMutations>;
|
|
68033
69456
|
devOps?: Maybe<DevOpsMutation>;
|
|
69457
|
+
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
69458
|
+
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
68034
69459
|
disableExperiment?: Maybe<TapExperiment>;
|
|
68035
69460
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
68036
69461
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
@@ -68060,6 +69485,13 @@ export declare type Mutation = {
|
|
|
68060
69485
|
jira?: Maybe<JiraMutation>;
|
|
68061
69486
|
jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
|
|
68062
69487
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
69488
|
+
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
69489
|
+
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
69490
|
+
jira_setBoardViewColumnState?: Maybe<JiraSetBoardViewColumnStatePayload>;
|
|
69491
|
+
jira_setBoardViewCompletedIssueSearchCutOff?: Maybe<JiraSetBoardViewCompletedIssueSearchCutOffPayload>;
|
|
69492
|
+
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
69493
|
+
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
69494
|
+
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
68063
69495
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
68064
69496
|
jsw?: Maybe<JswMutation>;
|
|
68065
69497
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
@@ -69066,6 +70498,16 @@ export declare type MutationDeleteTemplateArgs = {
|
|
|
69066
70498
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
69067
70499
|
id: Scalars['ID']['input'];
|
|
69068
70500
|
};
|
|
70501
|
+
export declare type MutationDevai_ContinueJobWithPromptArgs = {
|
|
70502
|
+
cloudId: Scalars['ID']['input'];
|
|
70503
|
+
jobId: Scalars['ID']['input'];
|
|
70504
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
70505
|
+
repoUrl: Scalars['String']['input'];
|
|
70506
|
+
};
|
|
70507
|
+
export declare type MutationDevai_InvokeAutodevRovoAgentArgs = {
|
|
70508
|
+
agentId: Scalars['ID']['input'];
|
|
70509
|
+
issueId: Scalars['ID']['input'];
|
|
70510
|
+
};
|
|
69069
70511
|
export declare type MutationDisableExperimentArgs = {
|
|
69070
70512
|
experimentKey: Scalars['String']['input'];
|
|
69071
70513
|
};
|
|
@@ -69120,6 +70562,27 @@ export declare type MutationInvokeExtensionArgs = {
|
|
|
69120
70562
|
export declare type MutationInvokePolarisObjectArgs = {
|
|
69121
70563
|
input: InvokePolarisObjectInput;
|
|
69122
70564
|
};
|
|
70565
|
+
export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
70566
|
+
input: JiraReorderBoardViewColumnInput;
|
|
70567
|
+
};
|
|
70568
|
+
export declare type MutationJira_SetBoardViewCardFieldSelectedArgs = {
|
|
70569
|
+
input: JiraSetBoardViewCardFieldSelectedInput;
|
|
70570
|
+
};
|
|
70571
|
+
export declare type MutationJira_SetBoardViewColumnStateArgs = {
|
|
70572
|
+
input: JiraSetBoardViewColumnStateInput;
|
|
70573
|
+
};
|
|
70574
|
+
export declare type MutationJira_SetBoardViewCompletedIssueSearchCutOffArgs = {
|
|
70575
|
+
input: JiraSetBoardViewCompletedIssueSearchCutOffInput;
|
|
70576
|
+
};
|
|
70577
|
+
export declare type MutationJira_SetViewFilterArgs = {
|
|
70578
|
+
input: JiraSetViewFilterInput;
|
|
70579
|
+
};
|
|
70580
|
+
export declare type MutationJira_SetViewGroupByArgs = {
|
|
70581
|
+
input: JiraSetViewGroupByInput;
|
|
70582
|
+
};
|
|
70583
|
+
export declare type MutationJira_UpdateProjectBackgroundArgs = {
|
|
70584
|
+
input: JiraUpdateBackgroundInput;
|
|
70585
|
+
};
|
|
69123
70586
|
export declare type MutationKnowledgeBaseArgs = {
|
|
69124
70587
|
cloudId: Scalars['ID']['input'];
|
|
69125
70588
|
};
|
|
@@ -70142,10 +71605,11 @@ export declare type PeapProgram = {
|
|
|
70142
71605
|
status: PeapProgramStatus;
|
|
70143
71606
|
updatedAt: Scalars['Date']['output'];
|
|
70144
71607
|
};
|
|
70145
|
-
export declare type PeapProgramConnection = HasPageInfo & {
|
|
71608
|
+
export declare type PeapProgramConnection = HasPageInfo & HasTotal & {
|
|
70146
71609
|
__typename?: 'PEAPProgramConnection';
|
|
70147
71610
|
edges?: Maybe<Array<Maybe<PeapProgramEdge>>>;
|
|
70148
71611
|
pageInfo: PageInfo;
|
|
71612
|
+
totalCount: Scalars['Int']['output'];
|
|
70149
71613
|
};
|
|
70150
71614
|
export declare type PeapProgramEdge = {
|
|
70151
71615
|
__typename?: 'PEAPProgramEdge';
|
|
@@ -71255,6 +72719,10 @@ export declare enum PolarisFieldType {
|
|
|
71255
72719
|
PolarisIdeaPlayField = "PolarisIdeaPlayField",
|
|
71256
72720
|
PolarisJiraField = "PolarisJiraField"
|
|
71257
72721
|
}
|
|
72722
|
+
export declare enum PolarisFilterEnumType {
|
|
72723
|
+
BoardColumn = "BOARD_COLUMN",
|
|
72724
|
+
ViewGroup = "VIEW_GROUP"
|
|
72725
|
+
}
|
|
71258
72726
|
export declare type PolarisFilterInput = {
|
|
71259
72727
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
71260
72728
|
};
|
|
@@ -71724,6 +73192,7 @@ export declare type PolarisViewFilterInput = {
|
|
|
71724
73192
|
values: Array<PolarisViewFilterValueInput>;
|
|
71725
73193
|
};
|
|
71726
73194
|
export declare enum PolarisViewFilterKind {
|
|
73195
|
+
ConnectionFieldIdentity = "CONNECTION_FIELD_IDENTITY",
|
|
71727
73196
|
FieldIdentity = "FIELD_IDENTITY",
|
|
71728
73197
|
FieldNumeric = "FIELD_NUMERIC",
|
|
71729
73198
|
Interval = "INTERVAL",
|
|
@@ -71743,11 +73212,13 @@ export declare enum PolarisViewFilterOperator {
|
|
|
71743
73212
|
}
|
|
71744
73213
|
export declare type PolarisViewFilterValue = {
|
|
71745
73214
|
__typename?: 'PolarisViewFilterValue';
|
|
73215
|
+
enumValue?: Maybe<PolarisFilterEnumType>;
|
|
71746
73216
|
numericValue?: Maybe<Scalars['Float']['output']>;
|
|
71747
73217
|
operator?: Maybe<PolarisViewFilterOperator>;
|
|
71748
73218
|
stringValue?: Maybe<Scalars['String']['output']>;
|
|
71749
73219
|
};
|
|
71750
73220
|
export declare type PolarisViewFilterValueInput = {
|
|
73221
|
+
enumValue?: InputMaybe<PolarisFilterEnumType>;
|
|
71751
73222
|
operator?: InputMaybe<PolarisViewFilterOperator>;
|
|
71752
73223
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
71753
73224
|
value?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -72448,6 +73919,7 @@ export declare type Query = {
|
|
|
72448
73919
|
contentTemplateLabelsByCriteria?: Maybe<PaginatedLabelList>;
|
|
72449
73920
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
72450
73921
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
73922
|
+
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
72451
73923
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
72452
73924
|
countGroupByPage?: Maybe<CountGroupByPage>;
|
|
72453
73925
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
@@ -72483,10 +73955,13 @@ export declare type Query = {
|
|
|
72483
73955
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
72484
73956
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
72485
73957
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
73958
|
+
devai_autodevAgentForJob?: Maybe<DevAiRovoAgent>;
|
|
72486
73959
|
devai_autodevIssueScoping?: Maybe<DevAiIssueScopingResult>;
|
|
73960
|
+
devai_autodevIssueScopingScoreForJob?: Maybe<DevAiIssueScopingResult>;
|
|
72487
73961
|
devai_autodevJobFileContents?: Maybe<Scalars['String']['output']>;
|
|
72488
73962
|
devai_autodevJobLogGroups?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
72489
73963
|
devai_autodevJobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
73964
|
+
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
72490
73965
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
72491
73966
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
72492
73967
|
diagnostics?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -72582,6 +74057,8 @@ export declare type Query = {
|
|
|
72582
74057
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
72583
74058
|
jiraReleases?: Maybe<JiraReleases>;
|
|
72584
74059
|
jiraServers?: Maybe<JiraServersResult>;
|
|
74060
|
+
jira_boardView?: Maybe<JiraBoardView>;
|
|
74061
|
+
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
72585
74062
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
72586
74063
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
72587
74064
|
jsw?: Maybe<JswQuery>;
|
|
@@ -72594,9 +74071,13 @@ export declare type Query = {
|
|
|
72594
74071
|
lookAndFeel?: Maybe<LookAndFeelSettings>;
|
|
72595
74072
|
loomToken?: Maybe<LoomToken>;
|
|
72596
74073
|
loomUserStatus?: Maybe<LoomUserStatus>;
|
|
74074
|
+
loom_meeting?: Maybe<LoomMeeting>;
|
|
74075
|
+
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
72597
74076
|
loom_space?: Maybe<LoomSpace>;
|
|
74077
|
+
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
72598
74078
|
loom_spacesSearch: Array<Maybe<LoomSpace>>;
|
|
72599
74079
|
loom_video?: Maybe<LoomVideo>;
|
|
74080
|
+
loom_videos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
72600
74081
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
72601
74082
|
macroBodyRenderer?: Maybe<MacroBody>;
|
|
72602
74083
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
@@ -72609,7 +74090,6 @@ export declare type Query = {
|
|
|
72609
74090
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
72610
74091
|
me: AuthenticationContext;
|
|
72611
74092
|
mercury?: Maybe<MercuryQueryApi>;
|
|
72612
|
-
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
72613
74093
|
migration: MigrationQuery;
|
|
72614
74094
|
migrationCatalogue: MigrationCatalogueQuery;
|
|
72615
74095
|
migrationMediaSession?: Maybe<ContentMediaSession>;
|
|
@@ -74139,6 +75619,10 @@ export declare type QueryContentWatchersArgs = {
|
|
|
74139
75619
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74140
75620
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
74141
75621
|
};
|
|
75622
|
+
export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
75623
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
75624
|
+
text?: InputMaybe<Scalars['String']['input']>;
|
|
75625
|
+
};
|
|
74142
75626
|
export declare type QueryCountGroupByEventNameArgs = {
|
|
74143
75627
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
74144
75628
|
eventName: Array<AnalyticsEventName>;
|
|
@@ -74277,11 +75761,19 @@ export declare type QueryDevOpsServicesArgs = {
|
|
|
74277
75761
|
export declare type QueryDevOpsServicesByIdArgs = {
|
|
74278
75762
|
ids: Array<Scalars['ID']['input']>;
|
|
74279
75763
|
};
|
|
75764
|
+
export declare type QueryDevai_AutodevAgentForJobArgs = {
|
|
75765
|
+
cloudId: Scalars['ID']['input'];
|
|
75766
|
+
jobId: Scalars['ID']['input'];
|
|
75767
|
+
};
|
|
74280
75768
|
export declare type QueryDevai_AutodevIssueScopingArgs = {
|
|
74281
75769
|
issueDescription?: InputMaybe<Scalars['String']['input']>;
|
|
74282
75770
|
issueId: Scalars['ID']['input'];
|
|
74283
75771
|
issueSummary: Scalars['String']['input'];
|
|
74284
75772
|
};
|
|
75773
|
+
export declare type QueryDevai_AutodevIssueScopingScoreForJobArgs = {
|
|
75774
|
+
cloudId: Scalars['ID']['input'];
|
|
75775
|
+
jobId: Scalars['ID']['input'];
|
|
75776
|
+
};
|
|
74285
75777
|
export declare type QueryDevai_AutodevJobFileContentsArgs = {
|
|
74286
75778
|
cloudId: Scalars['ID']['input'];
|
|
74287
75779
|
endLine?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -74303,6 +75795,12 @@ export declare type QueryDevai_AutodevJobLogsArgs = {
|
|
|
74303
75795
|
jobId: Scalars['ID']['input'];
|
|
74304
75796
|
minPriority?: InputMaybe<DevAiAutodevLogPriority>;
|
|
74305
75797
|
};
|
|
75798
|
+
export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
75799
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
75800
|
+
cloudId: Scalars['ID']['input'];
|
|
75801
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75802
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
75803
|
+
};
|
|
74306
75804
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
74307
75805
|
appId: Scalars['ID']['input'];
|
|
74308
75806
|
contextIds: Array<Scalars['ID']['input']>;
|
|
@@ -74591,6 +76089,12 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
74591
76089
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74592
76090
|
id: Scalars['ID']['input'];
|
|
74593
76091
|
};
|
|
76092
|
+
export declare type QueryJira_BoardViewArgs = {
|
|
76093
|
+
input: JiraBoardViewInput;
|
|
76094
|
+
};
|
|
76095
|
+
export declare type QueryJira_IssueSearchViewsByIdsArgs = {
|
|
76096
|
+
ids: Array<Scalars['ID']['input']>;
|
|
76097
|
+
};
|
|
74594
76098
|
export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
74595
76099
|
cloudId: Scalars['ID']['input'];
|
|
74596
76100
|
idOrKey: Scalars['String']['input'];
|
|
@@ -74612,9 +76116,18 @@ export declare type QueryLabelSearchArgs = {
|
|
|
74612
76116
|
export declare type QueryLookAndFeelArgs = {
|
|
74613
76117
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
74614
76118
|
};
|
|
76119
|
+
export declare type QueryLoom_MeetingArgs = {
|
|
76120
|
+
id: Scalars['ID']['input'];
|
|
76121
|
+
};
|
|
76122
|
+
export declare type QueryLoom_MeetingsArgs = {
|
|
76123
|
+
ids: Array<Scalars['ID']['input']>;
|
|
76124
|
+
};
|
|
74615
76125
|
export declare type QueryLoom_SpaceArgs = {
|
|
74616
76126
|
id: Scalars['ID']['input'];
|
|
74617
76127
|
};
|
|
76128
|
+
export declare type QueryLoom_SpacesArgs = {
|
|
76129
|
+
ids: Array<Scalars['ID']['input']>;
|
|
76130
|
+
};
|
|
74618
76131
|
export declare type QueryLoom_SpacesSearchArgs = {
|
|
74619
76132
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
74620
76133
|
siteId: Scalars['ID']['input'];
|
|
@@ -74622,6 +76135,9 @@ export declare type QueryLoom_SpacesSearchArgs = {
|
|
|
74622
76135
|
export declare type QueryLoom_VideoArgs = {
|
|
74623
76136
|
id: Scalars['ID']['input'];
|
|
74624
76137
|
};
|
|
76138
|
+
export declare type QueryLoom_VideosArgs = {
|
|
76139
|
+
ids: Array<Scalars['ID']['input']>;
|
|
76140
|
+
};
|
|
74625
76141
|
export declare type QueryMacroBodyRendererArgs = {
|
|
74626
76142
|
adf: Scalars['String']['input'];
|
|
74627
76143
|
containedRender?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -77893,7 +79409,9 @@ export declare enum SearchSortOrder {
|
|
|
77893
79409
|
Desc = "DESC"
|
|
77894
79410
|
}
|
|
77895
79411
|
export declare type SearchThirdPartyFilter = {
|
|
79412
|
+
ancestorAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
77896
79413
|
containerNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
79414
|
+
excludeSubtypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
77897
79415
|
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
77898
79416
|
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
77899
79417
|
subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -78186,6 +79704,26 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
78186
79704
|
strategy: SwimlaneStrategy;
|
|
78187
79705
|
success: Scalars['Boolean']['output'];
|
|
78188
79706
|
};
|
|
79707
|
+
export declare type SettingsDisplayProperty = {
|
|
79708
|
+
__typename?: 'SettingsDisplayProperty';
|
|
79709
|
+
key?: Maybe<Scalars['ID']['output']>;
|
|
79710
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
79711
|
+
};
|
|
79712
|
+
export declare type SettingsDisplayPropertyConnection = {
|
|
79713
|
+
__typename?: 'SettingsDisplayPropertyConnection';
|
|
79714
|
+
edges?: Maybe<Array<SettingsDisplayPropertyEdge>>;
|
|
79715
|
+
nodes?: Maybe<Array<Maybe<SettingsDisplayProperty>>>;
|
|
79716
|
+
pageInfo: PageInfo;
|
|
79717
|
+
};
|
|
79718
|
+
export declare type SettingsDisplayPropertyEdge = {
|
|
79719
|
+
__typename?: 'SettingsDisplayPropertyEdge';
|
|
79720
|
+
cursor: Scalars['String']['output'];
|
|
79721
|
+
node?: Maybe<SettingsDisplayProperty>;
|
|
79722
|
+
};
|
|
79723
|
+
export declare type SettingsDisplayPropertyInput = {
|
|
79724
|
+
key: Scalars['ID']['input'];
|
|
79725
|
+
value: Scalars['String']['input'];
|
|
79726
|
+
};
|
|
78189
79727
|
export declare type SettingsMenuItem = {
|
|
78190
79728
|
__typename?: 'SettingsMenuItem';
|
|
78191
79729
|
menuId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -78208,8 +79746,13 @@ export declare type SettingsMenuItemInput = {
|
|
|
78208
79746
|
};
|
|
78209
79747
|
export declare type SettingsNavigationCustomisation = {
|
|
78210
79748
|
__typename?: 'SettingsNavigationCustomisation';
|
|
79749
|
+
properties?: Maybe<SettingsDisplayPropertyConnection>;
|
|
78211
79750
|
sidebar?: Maybe<SettingsMenuItemConnection>;
|
|
78212
79751
|
};
|
|
79752
|
+
export declare type SettingsNavigationCustomisationPropertiesArgs = {
|
|
79753
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
79754
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79755
|
+
};
|
|
78213
79756
|
export declare type SettingsNavigationCustomisationSidebarArgs = {
|
|
78214
79757
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
78215
79758
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -78217,6 +79760,7 @@ export declare type SettingsNavigationCustomisationSidebarArgs = {
|
|
|
78217
79760
|
export declare type SettingsNavigationCustomisationInput = {
|
|
78218
79761
|
entityAri: Scalars['ID']['input'];
|
|
78219
79762
|
ownerAri?: InputMaybe<Scalars['ID']['input']>;
|
|
79763
|
+
properties?: InputMaybe<Array<InputMaybe<SettingsDisplayPropertyInput>>>;
|
|
78220
79764
|
sidebar?: InputMaybe<Array<InputMaybe<SettingsMenuItemInput>>>;
|
|
78221
79765
|
};
|
|
78222
79766
|
export declare type ShareResourceInput = {
|
|
@@ -78778,16 +80322,6 @@ export declare type ShepherdCreateAlertsPayload = Payload & {
|
|
|
78778
80322
|
nodes?: Maybe<Array<Maybe<ShepherdAlert>>>;
|
|
78779
80323
|
success: Scalars['Boolean']['output'];
|
|
78780
80324
|
};
|
|
78781
|
-
export declare type ShepherdCreateExampleAlertInput = {
|
|
78782
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78783
|
-
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
78784
|
-
};
|
|
78785
|
-
export declare type ShepherdCreateExampleAlertPayload = Payload & {
|
|
78786
|
-
__typename?: 'ShepherdCreateExampleAlertPayload';
|
|
78787
|
-
errors?: Maybe<Array<MutationError>>;
|
|
78788
|
-
node?: Maybe<ShepherdAlert>;
|
|
78789
|
-
success: Scalars['Boolean']['output'];
|
|
78790
|
-
};
|
|
78791
80325
|
export declare type ShepherdCreateSlackInput = {
|
|
78792
80326
|
authToken: Scalars['String']['input'];
|
|
78793
80327
|
callbackURL: Scalars['URL']['input'];
|
|
@@ -79109,7 +80643,6 @@ export declare type ShepherdMutation = {
|
|
|
79109
80643
|
actor?: Maybe<ShepherdActorMutations>;
|
|
79110
80644
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
79111
80645
|
createAlerts?: Maybe<ShepherdCreateAlertsPayload>;
|
|
79112
|
-
createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
|
|
79113
80646
|
createTestAlert?: Maybe<ShepherdCreateTestAlertPayload>;
|
|
79114
80647
|
deleteAlert?: Maybe<ShepherdDeleteAlertPayload>;
|
|
79115
80648
|
redaction?: Maybe<ShepherdRedactionMutations>;
|
|
@@ -79125,9 +80658,6 @@ export declare type ShepherdMutationCreateAlertArgs = {
|
|
|
79125
80658
|
export declare type ShepherdMutationCreateAlertsArgs = {
|
|
79126
80659
|
input: Array<ShepherdCreateAlertInput>;
|
|
79127
80660
|
};
|
|
79128
|
-
export declare type ShepherdMutationCreateExampleAlertArgs = {
|
|
79129
|
-
input: ShepherdCreateExampleAlertInput;
|
|
79130
|
-
};
|
|
79131
80661
|
export declare type ShepherdMutationCreateTestAlertArgs = {
|
|
79132
80662
|
workspaceId: Scalars['ID']['input'];
|
|
79133
80663
|
};
|
|
@@ -79161,7 +80691,6 @@ export declare type ShepherdQuery = {
|
|
|
79161
80691
|
shepherdActor?: Maybe<ShepherdActorResult>;
|
|
79162
80692
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
79163
80693
|
shepherdAppInfo: ShepherdAppInfo;
|
|
79164
|
-
shepherdUser?: Maybe<ShepherdUser>;
|
|
79165
80694
|
subscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
79166
80695
|
workspace?: Maybe<ShepherdWorkspaceResult>;
|
|
79167
80696
|
workspacesByUserContext?: Maybe<ShepherdWorkspaceResult>;
|
|
@@ -79184,9 +80713,6 @@ export declare type ShepherdQueryShepherdActorArgs = {
|
|
|
79184
80713
|
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
79185
80714
|
id: Scalars['ID']['input'];
|
|
79186
80715
|
};
|
|
79187
|
-
export declare type ShepherdQueryShepherdUserArgs = {
|
|
79188
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
79189
|
-
};
|
|
79190
80716
|
export declare type ShepherdQuerySubscriptionsArgs = {
|
|
79191
80717
|
workspaceId: Scalars['ID']['input'];
|
|
79192
80718
|
};
|
|
@@ -83405,6 +84931,7 @@ export declare type TrelloCardLocation = {
|
|
|
83405
84931
|
address?: Maybe<Scalars['String']['output']>;
|
|
83406
84932
|
coordinates?: Maybe<TrelloCardCoordinates>;
|
|
83407
84933
|
name?: Maybe<Scalars['String']['output']>;
|
|
84934
|
+
staticMapUrl?: Maybe<Scalars['URL']['output']>;
|
|
83408
84935
|
};
|
|
83409
84936
|
export declare enum TrelloCardRole {
|
|
83410
84937
|
Board = "BOARD",
|
|
@@ -83430,6 +84957,7 @@ export declare type TrelloCardUpdated = {
|
|
|
83430
84957
|
members?: Maybe<TrelloMemberUpdatedConnection>;
|
|
83431
84958
|
name?: Maybe<Scalars['String']['output']>;
|
|
83432
84959
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
84960
|
+
onChecklistDeleted?: Maybe<Array<TrelloChecklistDeleted>>;
|
|
83433
84961
|
position?: Maybe<Scalars['Float']['output']>;
|
|
83434
84962
|
stickers?: Maybe<TrelloStickerUpdatedConnection>;
|
|
83435
84963
|
};
|
|
@@ -83502,6 +85030,10 @@ export declare type TrelloChecklistConnectionUpdated = {
|
|
|
83502
85030
|
__typename?: 'TrelloChecklistConnectionUpdated';
|
|
83503
85031
|
edges?: Maybe<Array<TrelloChecklistEdgeUpdated>>;
|
|
83504
85032
|
};
|
|
85033
|
+
export declare type TrelloChecklistDeleted = {
|
|
85034
|
+
__typename?: 'TrelloChecklistDeleted';
|
|
85035
|
+
objectId: Scalars['ID']['output'];
|
|
85036
|
+
};
|
|
83505
85037
|
export declare type TrelloChecklistEdge = {
|
|
83506
85038
|
__typename?: 'TrelloChecklistEdge';
|
|
83507
85039
|
cursor: Scalars['String']['output'];
|
|
@@ -83539,6 +85071,7 @@ export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
|
|
|
83539
85071
|
__typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
|
|
83540
85072
|
errors?: Maybe<Array<MutationError>>;
|
|
83541
85073
|
plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
|
|
85074
|
+
plannerCalendarMutated?: Maybe<TrelloPlannerCalendarMutated>;
|
|
83542
85075
|
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendarUpdated>;
|
|
83543
85076
|
success: Scalars['Boolean']['output'];
|
|
83544
85077
|
};
|
|
@@ -83820,7 +85353,7 @@ export declare type TrelloMember = Node & {
|
|
|
83820
85353
|
__typename?: 'TrelloMember';
|
|
83821
85354
|
activityBlocked?: Maybe<Scalars['Boolean']['output']>;
|
|
83822
85355
|
avatarSource?: Maybe<Scalars['String']['output']>;
|
|
83823
|
-
avatarUrl?: Maybe<Scalars['
|
|
85356
|
+
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
83824
85357
|
bio?: Maybe<Scalars['String']['output']>;
|
|
83825
85358
|
bioData?: Maybe<Scalars['JSON']['output']>;
|
|
83826
85359
|
confirmed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -83834,7 +85367,7 @@ export declare type TrelloMember = Node & {
|
|
|
83834
85367
|
objectId: Scalars['ID']['output'];
|
|
83835
85368
|
planner?: Maybe<TrelloPlanner>;
|
|
83836
85369
|
referrer?: Maybe<TrelloMember>;
|
|
83837
|
-
url?: Maybe<Scalars['
|
|
85370
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
83838
85371
|
user?: Maybe<User>;
|
|
83839
85372
|
username?: Maybe<Scalars['String']['output']>;
|
|
83840
85373
|
workspaces?: Maybe<TrelloMemberWorkspaceConnection>;
|
|
@@ -83857,7 +85390,7 @@ export declare type TrelloMemberEdge = {
|
|
|
83857
85390
|
};
|
|
83858
85391
|
export declare type TrelloMemberNonPublicData = {
|
|
83859
85392
|
__typename?: 'TrelloMemberNonPublicData';
|
|
83860
|
-
avatarUrl?: Maybe<Scalars['
|
|
85393
|
+
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
83861
85394
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
83862
85395
|
initials?: Maybe<Scalars['String']['output']>;
|
|
83863
85396
|
};
|
|
@@ -84121,7 +85654,7 @@ export declare type TrelloPlannerCalendarEventCardEdge = {
|
|
|
84121
85654
|
};
|
|
84122
85655
|
export declare type TrelloPlannerCalendarEventConferencing = {
|
|
84123
85656
|
__typename?: 'TrelloPlannerCalendarEventConferencing';
|
|
84124
|
-
url?: Maybe<Scalars['
|
|
85657
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
84125
85658
|
};
|
|
84126
85659
|
export declare type TrelloPlannerCalendarEventConnection = {
|
|
84127
85660
|
__typename?: 'TrelloPlannerCalendarEventConnection';
|
|
@@ -84159,6 +85692,7 @@ export declare type TrelloPlannerCalendarEventsFilter = {
|
|
|
84159
85692
|
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
84160
85693
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
84161
85694
|
};
|
|
85695
|
+
export declare type TrelloPlannerCalendarMutated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
|
|
84162
85696
|
export declare type TrelloPlannerCalendarUpdated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
|
|
84163
85697
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
84164
85698
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
@@ -84227,7 +85761,7 @@ export declare enum TrelloPowerUpDataScope {
|
|
|
84227
85761
|
}
|
|
84228
85762
|
export declare type TrelloPowerUpIcon = {
|
|
84229
85763
|
__typename?: 'TrelloPowerUpIcon';
|
|
84230
|
-
url?: Maybe<Scalars['
|
|
85764
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
84231
85765
|
};
|
|
84232
85766
|
export declare type TrelloPowerUpUpdated = {
|
|
84233
85767
|
__typename?: 'TrelloPowerUpUpdated';
|
|
@@ -84339,6 +85873,7 @@ export declare type TrelloQueryApiProviderPlannerCalendarsByAccountIdArgs = {
|
|
|
84339
85873
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84340
85874
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84341
85875
|
id: Scalars['ID']['input'];
|
|
85876
|
+
syncToken?: InputMaybe<Scalars['String']['input']>;
|
|
84342
85877
|
workspaceId: Scalars['ID']['input'];
|
|
84343
85878
|
};
|
|
84344
85879
|
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
@@ -84388,7 +85923,7 @@ export declare type TrelloRemoveMemberInput = {
|
|
|
84388
85923
|
export declare type TrelloScaleProps = {
|
|
84389
85924
|
__typename?: 'TrelloScaleProps';
|
|
84390
85925
|
height?: Maybe<Scalars['Int']['output']>;
|
|
84391
|
-
url?: Maybe<Scalars['
|
|
85926
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
84392
85927
|
width?: Maybe<Scalars['Int']['output']>;
|
|
84393
85928
|
};
|
|
84394
85929
|
export declare type TrelloSticker = {
|
|
@@ -84474,7 +86009,7 @@ export declare type TrelloTemplateGalleryFilterInput = {
|
|
|
84474
86009
|
export declare type TrelloTemplateGalleryItemInfo = {
|
|
84475
86010
|
__typename?: 'TrelloTemplateGalleryItemInfo';
|
|
84476
86011
|
avatarShape?: Maybe<Scalars['String']['output']>;
|
|
84477
|
-
avatarUrl?: Maybe<Scalars['
|
|
86012
|
+
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
84478
86013
|
blurb?: Maybe<Scalars['String']['output']>;
|
|
84479
86014
|
byline?: Maybe<Scalars['String']['output']>;
|
|
84480
86015
|
category: TrelloTemplateGalleryCategory;
|
|
@@ -84602,7 +86137,7 @@ export declare type TrelloWorkspace = Node & {
|
|
|
84602
86137
|
prefs?: Maybe<TrelloWorkspacePrefs>;
|
|
84603
86138
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
84604
86139
|
tags?: Maybe<TrelloTagConnection>;
|
|
84605
|
-
url?: Maybe<Scalars['
|
|
86140
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
84606
86141
|
website?: Maybe<Scalars['String']['output']>;
|
|
84607
86142
|
};
|
|
84608
86143
|
export declare type TrelloWorkspaceMembersArgs = {
|
|
@@ -84753,6 +86288,19 @@ export declare type UnifiedAtlassianProductEdge = UnifiedIEdge & {
|
|
|
84753
86288
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
84754
86289
|
node?: Maybe<UnifiedAtlassianProduct>;
|
|
84755
86290
|
};
|
|
86291
|
+
export declare type UnifiedCacheInvalidationResult = {
|
|
86292
|
+
__typename?: 'UnifiedCacheInvalidationResult';
|
|
86293
|
+
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
86294
|
+
success: Scalars['Boolean']['output'];
|
|
86295
|
+
};
|
|
86296
|
+
export declare type UnifiedCachingMutation = {
|
|
86297
|
+
__typename?: 'UnifiedCachingMutation';
|
|
86298
|
+
invalidateCache?: Maybe<UnifiedCacheInvalidationResult>;
|
|
86299
|
+
};
|
|
86300
|
+
export declare type UnifiedCachingMutationInvalidateCacheArgs = {
|
|
86301
|
+
aaid: Scalars['String']['input'];
|
|
86302
|
+
dataPoint: Scalars['String']['input'];
|
|
86303
|
+
};
|
|
84756
86304
|
export declare type UnifiedForums = UnifiedINode & {
|
|
84757
86305
|
__typename?: 'UnifiedForums';
|
|
84758
86306
|
badges?: Maybe<UnifiedUForumsBadgesResult>;
|
|
@@ -85073,6 +86621,7 @@ export declare type UnifiedLinkingStatusPayload = UnifiedPayload & {
|
|
|
85073
86621
|
export declare type UnifiedMutation = {
|
|
85074
86622
|
__typename?: 'UnifiedMutation';
|
|
85075
86623
|
account?: Maybe<UnifiedAccountMutation>;
|
|
86624
|
+
caching?: Maybe<UnifiedCachingMutation>;
|
|
85076
86625
|
createUnifiedSystem?: Maybe<UnifiedProfilePayload>;
|
|
85077
86626
|
gating?: Maybe<UnifiedGatingMutation>;
|
|
85078
86627
|
linking?: Maybe<UnifiedLinkingMutation>;
|
|
@@ -85970,6 +87519,11 @@ export declare type UpdateUserInstallationRulesInput = {
|
|
|
85970
87519
|
cloudId: Scalars['ID']['input'];
|
|
85971
87520
|
rule: UserInstallationRuleValue;
|
|
85972
87521
|
};
|
|
87522
|
+
export declare type UpgradeableByRollout = {
|
|
87523
|
+
__typename?: 'UpgradeableByRollout';
|
|
87524
|
+
sourceVersionId: Scalars['ID']['output'];
|
|
87525
|
+
upgradeableByRollout: Scalars['Boolean']['output'];
|
|
87526
|
+
};
|
|
85973
87527
|
export declare type User = {
|
|
85974
87528
|
accountId: Scalars['ID']['output'];
|
|
85975
87529
|
accountStatus: AccountStatus;
|