@forge/cli-shared 6.5.2-experimental-f38fac9 → 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.
|
@@ -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'];
|
|
@@ -6504,12 +6544,18 @@ export declare type CompassJqlMetricSourceConfiguration = {
|
|
|
6504
6544
|
__typename?: 'CompassJQLMetricSourceConfiguration';
|
|
6505
6545
|
executingJql?: Maybe<Scalars['String']['output']>;
|
|
6506
6546
|
jql?: Maybe<Scalars['String']['output']>;
|
|
6547
|
+
potentialErrors?: Maybe<CompassJqlMetricSourceConfigurationPotentialErrorsResult>;
|
|
6507
6548
|
userContext?: Maybe<User>;
|
|
6508
6549
|
viewerPermissions?: Maybe<CompassJqlMetricSourceInstancePermissions>;
|
|
6509
6550
|
};
|
|
6510
6551
|
export declare type CompassJqlMetricSourceConfigurationInput = {
|
|
6511
6552
|
jql: Scalars['String']['input'];
|
|
6512
6553
|
};
|
|
6554
|
+
export declare type CompassJqlMetricSourceConfigurationPotentialErrors = {
|
|
6555
|
+
__typename?: 'CompassJQLMetricSourceConfigurationPotentialErrors';
|
|
6556
|
+
configErrors?: Maybe<Array<Scalars['String']['output']>>;
|
|
6557
|
+
};
|
|
6558
|
+
export declare type CompassJqlMetricSourceConfigurationPotentialErrorsResult = CompassJqlMetricSourceConfigurationPotentialErrors | QueryError;
|
|
6513
6559
|
export declare type CompassJqlMetricSourceInstancePermissions = {
|
|
6514
6560
|
__typename?: 'CompassJQLMetricSourceInstancePermissions';
|
|
6515
6561
|
revokePollingUser?: Maybe<CompassPermissionResult>;
|
|
@@ -17796,6 +17842,17 @@ export declare type CreateAppResponse = Payload & {
|
|
|
17796
17842
|
errors?: Maybe<Array<MutationError>>;
|
|
17797
17843
|
success: Scalars['Boolean']['output'];
|
|
17798
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
|
+
};
|
|
17799
17856
|
export declare type CreateAppTunnelResponse = Payload & {
|
|
17800
17857
|
__typename?: 'CreateAppTunnelResponse';
|
|
17801
17858
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -19961,6 +20018,12 @@ export declare type DevAiGetSupportedReposArgs = {
|
|
|
19961
20018
|
repoUrls?: InputMaybe<Array<Scalars['URL']['input']>>;
|
|
19962
20019
|
workspaceId: Scalars['ID']['input'];
|
|
19963
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
|
+
};
|
|
19964
20027
|
export declare type DevAiAutodevLog = {
|
|
19965
20028
|
id: Scalars['ID']['output'];
|
|
19966
20029
|
phase?: Maybe<DevAiAutodevLogPhase>;
|
|
@@ -20208,6 +20271,7 @@ export declare type DevAiIssueScopingResult = {
|
|
|
20208
20271
|
isAddingCodingTermsSuggested?: Maybe<Scalars['Boolean']['output']>;
|
|
20209
20272
|
issueId: Scalars['ID']['output'];
|
|
20210
20273
|
label?: Maybe<DevAiIssueScopingLabel>;
|
|
20274
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
20211
20275
|
};
|
|
20212
20276
|
export declare type DevAiMutations = {
|
|
20213
20277
|
__typename?: 'DevAiMutations';
|
|
@@ -22130,7 +22194,9 @@ export declare type EcosystemMutation = {
|
|
|
22130
22194
|
__typename?: 'EcosystemMutation';
|
|
22131
22195
|
addAppContributor?: Maybe<AddAppContributorResponsePayload>;
|
|
22132
22196
|
addMultipleAppContributor?: Maybe<AddMultipleAppContributorResponsePayload>;
|
|
22197
|
+
cancelAppRollout?: Maybe<CancelAppRolloutPayload>;
|
|
22133
22198
|
createAppEnvironment?: Maybe<CreateAppEnvironmentResponse>;
|
|
22199
|
+
createAppRollout?: Maybe<CreateAppRolloutPayload>;
|
|
22134
22200
|
deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
|
|
22135
22201
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
22136
22202
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
@@ -22149,9 +22215,15 @@ export declare type EcosystemMutationAddAppContributorArgs = {
|
|
|
22149
22215
|
export declare type EcosystemMutationAddMultipleAppContributorArgs = {
|
|
22150
22216
|
input: AddMultipleAppContributorInput;
|
|
22151
22217
|
};
|
|
22218
|
+
export declare type EcosystemMutationCancelAppRolloutArgs = {
|
|
22219
|
+
input: CancelAppRolloutInput;
|
|
22220
|
+
};
|
|
22152
22221
|
export declare type EcosystemMutationCreateAppEnvironmentArgs = {
|
|
22153
22222
|
input: CreateAppEnvironmentInput;
|
|
22154
22223
|
};
|
|
22224
|
+
export declare type EcosystemMutationCreateAppRolloutArgs = {
|
|
22225
|
+
input: CreateAppRolloutInput;
|
|
22226
|
+
};
|
|
22155
22227
|
export declare type EcosystemMutationDeleteAppEnvironmentArgs = {
|
|
22156
22228
|
input: DeleteAppEnvironmentInput;
|
|
22157
22229
|
};
|
|
@@ -22211,6 +22283,7 @@ export declare type EcosystemQuery = {
|
|
|
22211
22283
|
appInstallationsByApp?: Maybe<AppInstallationByIndexConnection>;
|
|
22212
22284
|
appInstallationsByContext?: Maybe<AppInstallationByIndexConnection>;
|
|
22213
22285
|
appPoliciesByAppIds?: Maybe<Array<EcosystemAppPoliciesByAppId>>;
|
|
22286
|
+
appRollout?: Maybe<AppRollout>;
|
|
22214
22287
|
appsInstalledInContexts: EcosystemAppsInstalledInContextsConnection;
|
|
22215
22288
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
22216
22289
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
@@ -22246,6 +22319,9 @@ export declare type EcosystemQueryAppInstallationsByContextArgs = {
|
|
|
22246
22319
|
export declare type EcosystemQueryAppPoliciesByAppIdsArgs = {
|
|
22247
22320
|
appIds: Array<Scalars['ID']['input']>;
|
|
22248
22321
|
};
|
|
22322
|
+
export declare type EcosystemQueryAppRolloutArgs = {
|
|
22323
|
+
id: Scalars['ID']['input'];
|
|
22324
|
+
};
|
|
22249
22325
|
export declare type EcosystemQueryAppsInstalledInContextsArgs = {
|
|
22250
22326
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
22251
22327
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -22652,7 +22728,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
22652
22728
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
22653
22729
|
node?: Maybe<ExternalAssociation>;
|
|
22654
22730
|
};
|
|
22655
|
-
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;
|
|
22656
22732
|
export declare type ExternalAttachment = {
|
|
22657
22733
|
__typename?: 'ExternalAttachment';
|
|
22658
22734
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -22798,6 +22874,29 @@ export declare type ExternalCollaboratorFeature = {
|
|
|
22798
22874
|
__typename?: 'ExternalCollaboratorFeature';
|
|
22799
22875
|
isEntitled: Scalars['Boolean']['output'];
|
|
22800
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
|
+
}
|
|
22801
22900
|
export declare type ExternalCommit = Node & {
|
|
22802
22901
|
__typename?: 'ExternalCommit';
|
|
22803
22902
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -22981,6 +23080,7 @@ export declare type ExternalEntities = {
|
|
|
22981
23080
|
branch?: Maybe<Array<Maybe<ExternalBranch>>>;
|
|
22982
23081
|
buildInfo?: Maybe<Array<Maybe<ExternalBuildInfo>>>;
|
|
22983
23082
|
calendarEvent?: Maybe<Array<Maybe<ExternalCalendarEvent>>>;
|
|
23083
|
+
comment?: Maybe<Array<Maybe<ExternalComment>>>;
|
|
22984
23084
|
commit?: Maybe<Array<Maybe<ExternalCommit>>>;
|
|
22985
23085
|
conversation?: Maybe<Array<Maybe<ExternalConversation>>>;
|
|
22986
23086
|
deployment?: Maybe<Array<Maybe<ExternalDeployment>>>;
|
|
@@ -22999,7 +23099,7 @@ export declare type ExternalEntities = {
|
|
|
22999
23099
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
23000
23100
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
23001
23101
|
};
|
|
23002
|
-
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;
|
|
23003
23103
|
export declare type ExternalEnvironment = {
|
|
23004
23104
|
__typename?: 'ExternalEnvironment';
|
|
23005
23105
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -23210,6 +23310,11 @@ export declare enum ExternalPullRequestStatus {
|
|
|
23210
23310
|
Open = "OPEN",
|
|
23211
23311
|
Unknown = "UNKNOWN"
|
|
23212
23312
|
}
|
|
23313
|
+
export declare type ExternalReactions = {
|
|
23314
|
+
__typename?: 'ExternalReactions';
|
|
23315
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
23316
|
+
type?: Maybe<ExternalCommentReactionType>;
|
|
23317
|
+
};
|
|
23213
23318
|
export declare type ExternalRemoteLink = Node & {
|
|
23214
23319
|
__typename?: 'ExternalRemoteLink';
|
|
23215
23320
|
actionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -28767,6 +28872,8 @@ export declare type GraphStore = {
|
|
|
28767
28872
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
28768
28873
|
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
28769
28874
|
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
28875
|
+
userAssignedPir?: Maybe<GraphStoreSimplifiedUserAssignedPirConnection>;
|
|
28876
|
+
userAssignedPirInverse?: Maybe<GraphStoreSimplifiedUserAssignedPirInverseConnection>;
|
|
28770
28877
|
userAttendedCalendarEvent?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventConnection>;
|
|
28771
28878
|
userAttendedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection>;
|
|
28772
28879
|
userAuthoredCommit?: Maybe<GraphStoreSimplifiedUserAuthoredCommitConnection>;
|
|
@@ -28825,6 +28932,8 @@ export declare type GraphStore = {
|
|
|
28825
28932
|
userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
|
|
28826
28933
|
userLastUpdatedDesign?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignConnection>;
|
|
28827
28934
|
userLastUpdatedDesignInverse?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignInverseConnection>;
|
|
28935
|
+
userLaunchedRelease?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseConnection>;
|
|
28936
|
+
userLaunchedReleaseInverse?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseInverseConnection>;
|
|
28828
28937
|
userMemberOfConversation?: Maybe<GraphStoreSimplifiedUserMemberOfConversationConnection>;
|
|
28829
28938
|
userMemberOfConversationInverse?: Maybe<GraphStoreSimplifiedUserMemberOfConversationInverseConnection>;
|
|
28830
28939
|
userMergedPullRequest?: Maybe<GraphStoreSimplifiedUserMergedPullRequestConnection>;
|
|
@@ -31456,6 +31565,20 @@ export declare type GraphStoreUserAssignedIncidentInverseArgs = {
|
|
|
31456
31565
|
id: Scalars['ID']['input'];
|
|
31457
31566
|
sort?: InputMaybe<GraphStoreUserAssignedIncidentSortInput>;
|
|
31458
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
|
+
};
|
|
31459
31582
|
export declare type GraphStoreUserAttendedCalendarEventArgs = {
|
|
31460
31583
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31461
31584
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31862,6 +31985,20 @@ export declare type GraphStoreUserLastUpdatedDesignInverseArgs = {
|
|
|
31862
31985
|
id: Scalars['ID']['input'];
|
|
31863
31986
|
sort?: InputMaybe<GraphStoreUserLastUpdatedDesignSortInput>;
|
|
31864
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
|
+
};
|
|
31865
32002
|
export declare type GraphStoreUserMemberOfConversationArgs = {
|
|
31866
32003
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31867
32004
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32761,7 +32898,7 @@ export declare type GraphStoreBatchFocusAreaHasProjectEndNode = {
|
|
|
32761
32898
|
data?: Maybe<GraphStoreBatchFocusAreaHasProjectEndUnion>;
|
|
32762
32899
|
id: Scalars['ID']['output'];
|
|
32763
32900
|
};
|
|
32764
|
-
export declare type GraphStoreBatchFocusAreaHasProjectEndUnion = JiraAlignAggProject | JiraIssue |
|
|
32901
|
+
export declare type GraphStoreBatchFocusAreaHasProjectEndUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
32765
32902
|
export declare type GraphStoreBatchFocusAreaHasProjectInnerConnection = {
|
|
32766
32903
|
__typename?: 'GraphStoreBatchFocusAreaHasProjectInnerConnection';
|
|
32767
32904
|
edges: Array<Maybe<GraphStoreBatchFocusAreaHasProjectInnerEdge>>;
|
|
@@ -33682,7 +33819,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
33682
33819
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
33683
33820
|
id: Scalars['ID']['output'];
|
|
33684
33821
|
};
|
|
33685
|
-
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;
|
|
33686
33823
|
export declare type GraphStoreCypherQueryNode = {
|
|
33687
33824
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
33688
33825
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -33693,7 +33830,7 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
33693
33830
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
33694
33831
|
id: Scalars['ID']['output'];
|
|
33695
33832
|
};
|
|
33696
|
-
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;
|
|
33697
33834
|
export declare type GraphStoreDateFilterInput = {
|
|
33698
33835
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
33699
33836
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -39227,7 +39364,7 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
|
|
|
39227
39364
|
node?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseUnion>;
|
|
39228
39365
|
};
|
|
39229
39366
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseUnion = MercuryFocusArea;
|
|
39230
|
-
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraAlignAggProject | JiraIssue |
|
|
39367
|
+
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
39231
39368
|
export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection = HasPageInfo & {
|
|
39232
39369
|
__typename?: 'GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection';
|
|
39233
39370
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge>>>;
|
|
@@ -41624,6 +41761,34 @@ export declare type GraphStoreSimplifiedUserAssignedIncidentInverseEdge = {
|
|
|
41624
41761
|
};
|
|
41625
41762
|
export declare type GraphStoreSimplifiedUserAssignedIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41626
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;
|
|
41627
41792
|
export declare type GraphStoreSimplifiedUserAttendedCalendarEventConnection = HasPageInfo & {
|
|
41628
41793
|
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventConnection';
|
|
41629
41794
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAttendedCalendarEventEdge>>>;
|
|
@@ -42440,6 +42605,34 @@ export declare type GraphStoreSimplifiedUserLastUpdatedDesignInverseEdge = {
|
|
|
42440
42605
|
};
|
|
42441
42606
|
export declare type GraphStoreSimplifiedUserLastUpdatedDesignInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42442
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;
|
|
42443
42636
|
export declare type GraphStoreSimplifiedUserMemberOfConversationConnection = HasPageInfo & {
|
|
42444
42637
|
__typename?: 'GraphStoreSimplifiedUserMemberOfConversationConnection';
|
|
42445
42638
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMemberOfConversationEdge>>>;
|
|
@@ -43883,6 +44076,9 @@ export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
|
|
|
43883
44076
|
export declare type GraphStoreUserAssignedIncidentSortInput = {
|
|
43884
44077
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43885
44078
|
};
|
|
44079
|
+
export declare type GraphStoreUserAssignedPirSortInput = {
|
|
44080
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44081
|
+
};
|
|
43886
44082
|
export declare type GraphStoreUserAttendedCalendarEventSortInput = {
|
|
43887
44083
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43888
44084
|
};
|
|
@@ -43973,6 +44169,9 @@ export declare type GraphStoreUserIsInTeamSortInput = {
|
|
|
43973
44169
|
export declare type GraphStoreUserLastUpdatedDesignSortInput = {
|
|
43974
44170
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43975
44171
|
};
|
|
44172
|
+
export declare type GraphStoreUserLaunchedReleaseSortInput = {
|
|
44173
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44174
|
+
};
|
|
43976
44175
|
export declare type GraphStoreUserMemberOfConversationSortInput = {
|
|
43977
44176
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43978
44177
|
};
|
|
@@ -44461,9 +44660,11 @@ export declare type GrowthUnifiedProfileProductDetails = {
|
|
|
44461
44660
|
d0Eligible?: Maybe<Scalars['Boolean']['output']>;
|
|
44462
44661
|
d1to6Active?: Maybe<Scalars['Boolean']['output']>;
|
|
44463
44662
|
d1to6Eligible?: Maybe<Scalars['Boolean']['output']>;
|
|
44663
|
+
isTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
44464
44664
|
productEdition?: Maybe<Scalars['String']['output']>;
|
|
44465
44665
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
44466
44666
|
productName?: Maybe<Scalars['String']['output']>;
|
|
44667
|
+
provisionedAt?: Maybe<Scalars['String']['output']>;
|
|
44467
44668
|
};
|
|
44468
44669
|
export declare type GrowthUnifiedProfileResult = {
|
|
44469
44670
|
__typename?: 'GrowthUnifiedProfileResult';
|
|
@@ -45447,6 +45648,7 @@ export declare type HelpLayoutAnnouncementElement = HelpLayoutVisualEntity & Nod
|
|
|
45447
45648
|
header?: Maybe<Scalars['String']['output']>;
|
|
45448
45649
|
id: Scalars['ID']['output'];
|
|
45449
45650
|
message?: Maybe<Scalars['String']['output']>;
|
|
45651
|
+
useGlobalSettings?: Maybe<Scalars['Boolean']['output']>;
|
|
45450
45652
|
userLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
45451
45653
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
45452
45654
|
};
|
|
@@ -45457,11 +45659,13 @@ export declare type HelpLayoutAnnouncementElementData = {
|
|
|
45457
45659
|
userLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
45458
45660
|
};
|
|
45459
45661
|
export declare type HelpLayoutAnnouncementInput = {
|
|
45662
|
+
useGlobalSettings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45460
45663
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
45461
45664
|
};
|
|
45462
|
-
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;
|
|
45463
45666
|
export declare type HelpLayoutAtomicElementInput = {
|
|
45464
45667
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
45668
|
+
breadcrumbInput?: InputMaybe<HelpLayoutBreadcrumbElementInput>;
|
|
45465
45669
|
connectInput?: InputMaybe<HelpLayoutConnectInput>;
|
|
45466
45670
|
editorInput?: InputMaybe<HelpLayoutEditorInput>;
|
|
45467
45671
|
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
@@ -45478,6 +45682,7 @@ export declare type HelpLayoutAtomicElementInput = {
|
|
|
45478
45682
|
};
|
|
45479
45683
|
export declare enum HelpLayoutAtomicElementKey {
|
|
45480
45684
|
Announcement = "ANNOUNCEMENT",
|
|
45685
|
+
Breadcrumb = "BREADCRUMB",
|
|
45481
45686
|
Connect = "CONNECT",
|
|
45482
45687
|
Editor = "EDITOR",
|
|
45483
45688
|
Forge = "FORGE",
|
|
@@ -45521,6 +45726,21 @@ export declare enum HelpLayoutBackgroundType {
|
|
|
45521
45726
|
Image = "IMAGE",
|
|
45522
45727
|
Transparent = "TRANSPARENT"
|
|
45523
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
|
+
};
|
|
45524
45744
|
export declare type HelpLayoutCompositeElement = {
|
|
45525
45745
|
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
45526
45746
|
elementType?: Maybe<HelpLayoutCompositeElementType>;
|
|
@@ -45594,13 +45814,14 @@ export declare type HelpLayoutEditorInput = {
|
|
|
45594
45814
|
adf: Scalars['String']['input'];
|
|
45595
45815
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
45596
45816
|
};
|
|
45597
|
-
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;
|
|
45598
45818
|
export declare enum HelpLayoutElementCategory {
|
|
45599
45819
|
Basic = "BASIC",
|
|
45600
45820
|
Navigation = "NAVIGATION"
|
|
45601
45821
|
}
|
|
45602
45822
|
export declare type HelpLayoutElementInput = {
|
|
45603
45823
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
45824
|
+
breadcrumbInput?: InputMaybe<HelpLayoutBreadcrumbElementInput>;
|
|
45604
45825
|
connectInput?: InputMaybe<HelpLayoutConnectInput>;
|
|
45605
45826
|
editorInput?: InputMaybe<HelpLayoutEditorInput>;
|
|
45606
45827
|
elementTypeKey: HelpLayoutElementKey;
|
|
@@ -45618,6 +45839,7 @@ export declare type HelpLayoutElementInput = {
|
|
|
45618
45839
|
};
|
|
45619
45840
|
export declare enum HelpLayoutElementKey {
|
|
45620
45841
|
Announcement = "ANNOUNCEMENT",
|
|
45842
|
+
Breadcrumb = "BREADCRUMB",
|
|
45621
45843
|
Connect = "CONNECT",
|
|
45622
45844
|
Editor = "EDITOR",
|
|
45623
45845
|
Forge = "FORGE",
|
|
@@ -45845,12 +46067,14 @@ export declare type HelpLayoutPortalsListElement = HelpLayoutVisualEntity & Node
|
|
|
45845
46067
|
data?: Maybe<HelpLayoutPortalsListData>;
|
|
45846
46068
|
elementTitle?: Maybe<Scalars['String']['output']>;
|
|
45847
46069
|
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
46070
|
+
expandButtonTextColor?: Maybe<Scalars['String']['output']>;
|
|
45848
46071
|
id: Scalars['ID']['output'];
|
|
45849
46072
|
portals?: Maybe<Array<Maybe<HelpLayoutPortalCard>>>;
|
|
45850
46073
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
45851
46074
|
};
|
|
45852
46075
|
export declare type HelpLayoutPortalsListInput = {
|
|
45853
46076
|
elementTitle?: InputMaybe<Scalars['String']['input']>;
|
|
46077
|
+
expandButtonTextColor?: InputMaybe<Scalars['String']['input']>;
|
|
45854
46078
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
45855
46079
|
};
|
|
45856
46080
|
export declare enum HelpLayoutProjectType {
|
|
@@ -45860,10 +46084,15 @@ export declare enum HelpLayoutProjectType {
|
|
|
45860
46084
|
export declare type HelpLayoutQueryApi = {
|
|
45861
46085
|
__typename?: 'HelpLayoutQueryApi';
|
|
45862
46086
|
elementTypes?: Maybe<Array<HelpLayoutElementType>>;
|
|
46087
|
+
elements?: Maybe<Array<HelpLayoutElement>>;
|
|
45863
46088
|
layout?: Maybe<HelpLayoutResult>;
|
|
45864
46089
|
layoutByParentId?: Maybe<HelpLayoutResult>;
|
|
45865
46090
|
mediaConfig?: Maybe<HelpLayoutMediaConfig>;
|
|
45866
46091
|
};
|
|
46092
|
+
export declare type HelpLayoutQueryApiElementsArgs = {
|
|
46093
|
+
filter?: InputMaybe<HelpLayoutFilter>;
|
|
46094
|
+
ids: Array<Scalars['ID']['input']>;
|
|
46095
|
+
};
|
|
45867
46096
|
export declare type HelpLayoutQueryApiLayoutArgs = {
|
|
45868
46097
|
filter?: InputMaybe<HelpLayoutFilter>;
|
|
45869
46098
|
id: Scalars['ID']['input'];
|
|
@@ -48062,6 +48291,7 @@ export declare type JiraAutodevDeletedPayload = Payload & {
|
|
|
48062
48291
|
};
|
|
48063
48292
|
export declare type JiraAutodevJob = {
|
|
48064
48293
|
__typename?: 'JiraAutodevJob';
|
|
48294
|
+
agent?: Maybe<DevAiRovoAgent>;
|
|
48065
48295
|
branchName?: Maybe<Scalars['String']['output']>;
|
|
48066
48296
|
branchUrl?: Maybe<Scalars['String']['output']>;
|
|
48067
48297
|
codeChanges?: Maybe<JiraAutodevCodeChangeConnection>;
|
|
@@ -48070,6 +48300,7 @@ export declare type JiraAutodevJob = {
|
|
|
48070
48300
|
gitDiff?: Maybe<Scalars['String']['output']>;
|
|
48071
48301
|
id: Scalars['ID']['output'];
|
|
48072
48302
|
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
48303
|
+
issueScopingScore?: Maybe<DevAiIssueScopingResult>;
|
|
48073
48304
|
jobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
48074
48305
|
logGroups?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
48075
48306
|
logs?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -48082,6 +48313,12 @@ export declare type JiraAutodevJob = {
|
|
|
48082
48313
|
status?: Maybe<JiraAutodevStatus>;
|
|
48083
48314
|
statusHistory?: Maybe<JiraAutodevStatusHistoryItemConnection>;
|
|
48084
48315
|
};
|
|
48316
|
+
export declare type JiraAutodevJobAgentArgs = {
|
|
48317
|
+
cloudId: Scalars['ID']['input'];
|
|
48318
|
+
};
|
|
48319
|
+
export declare type JiraAutodevJobIssueScopingScoreArgs = {
|
|
48320
|
+
cloudId: Scalars['ID']['input'];
|
|
48321
|
+
};
|
|
48085
48322
|
export declare type JiraAutodevJobJobLogsArgs = {
|
|
48086
48323
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
48087
48324
|
cloudId: Scalars['ID']['input'];
|
|
@@ -49331,9 +49568,12 @@ export declare type JiraComment = {
|
|
|
49331
49568
|
};
|
|
49332
49569
|
export declare type JiraCommentChildCommentsArgs = {
|
|
49333
49570
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
49571
|
+
afterTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
49334
49572
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
49573
|
+
beforeTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
49335
49574
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49336
49575
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49576
|
+
targetId?: InputMaybe<Scalars['String']['input']>;
|
|
49337
49577
|
};
|
|
49338
49578
|
export declare type JiraCommentConnection = {
|
|
49339
49579
|
__typename?: 'JiraCommentConnection';
|
|
@@ -50031,7 +50271,7 @@ export declare type JiraCustomBackgroundEdge = {
|
|
|
50031
50271
|
node?: Maybe<JiraCustomBackground>;
|
|
50032
50272
|
};
|
|
50033
50273
|
export declare type JiraCustomFieldOptionInput = {
|
|
50034
|
-
externalUuid
|
|
50274
|
+
externalUuid?: InputMaybe<Scalars['String']['input']>;
|
|
50035
50275
|
optionId?: InputMaybe<Scalars['Long']['input']>;
|
|
50036
50276
|
parentExternalUuid?: InputMaybe<Scalars['String']['input']>;
|
|
50037
50277
|
parentOptionId?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -50968,6 +51208,7 @@ export declare type JiraFieldAssociationWithIssueTypes = JiraProjectFieldAssocia
|
|
|
50968
51208
|
__typename?: 'JiraFieldAssociationWithIssueTypes';
|
|
50969
51209
|
field?: Maybe<JiraField>;
|
|
50970
51210
|
fieldOperation?: Maybe<JiraFieldOperation>;
|
|
51211
|
+
fieldOptions?: Maybe<JiraFieldOptionConnection>;
|
|
50971
51212
|
hasMissingConfiguration?: Maybe<Scalars['Boolean']['output']>;
|
|
50972
51213
|
id: Scalars['ID']['output'];
|
|
50973
51214
|
isFieldLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -51036,6 +51277,22 @@ export declare type JiraFieldOperation = {
|
|
|
51036
51277
|
canModifyOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
51037
51278
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
51038
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
|
+
};
|
|
51039
51296
|
export declare type JiraFieldOptionIdsFilterInput = {
|
|
51040
51297
|
operation: JiraFieldOptionIdsFilterOperation;
|
|
51041
51298
|
optionIds: Array<Scalars['ID']['input']>;
|
|
@@ -53476,6 +53733,10 @@ export declare enum JiraIssueViewActivityFeedSortOrder {
|
|
|
53476
53733
|
NewestFirst = "NEWEST_FIRST",
|
|
53477
53734
|
OldestFirst = "OLDEST_FIRST"
|
|
53478
53735
|
}
|
|
53736
|
+
export declare enum JiraIssueViewActivityLayout {
|
|
53737
|
+
Horizontal = "HORIZONTAL",
|
|
53738
|
+
Vertical = "VERTICAL"
|
|
53739
|
+
}
|
|
53479
53740
|
export declare enum JiraIssueViewAttachmentPanelViewMode {
|
|
53480
53741
|
ListView = "LIST_VIEW",
|
|
53481
53742
|
StripView = "STRIP_VIEW"
|
|
@@ -55536,24 +55797,30 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
55536
55797
|
Calendar = "CALENDAR",
|
|
55537
55798
|
Code = "CODE",
|
|
55538
55799
|
Components = "COMPONENTS",
|
|
55539
|
-
Dependencies = "DEPENDENCIES",
|
|
55540
55800
|
Deployments = "DEPLOYMENTS",
|
|
55541
55801
|
Development = "DEVELOPMENT",
|
|
55542
55802
|
Forms = "FORMS",
|
|
55803
|
+
GetStarted = "GET_STARTED",
|
|
55543
55804
|
Goals = "GOALS",
|
|
55544
55805
|
Incidents = "INCIDENTS",
|
|
55545
55806
|
Issues = "ISSUES",
|
|
55546
55807
|
List = "LIST",
|
|
55547
55808
|
OnCall = "ON_CALL",
|
|
55548
55809
|
Pages = "PAGES",
|
|
55549
|
-
|
|
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",
|
|
55550
55818
|
Releases = "RELEASES",
|
|
55551
55819
|
Reports = "REPORTS",
|
|
55552
55820
|
Requests = "REQUESTS",
|
|
55553
55821
|
Security = "SECURITY",
|
|
55554
55822
|
Shortcuts = "SHORTCUTS",
|
|
55555
55823
|
Summary = "SUMMARY",
|
|
55556
|
-
Teams = "TEAMS",
|
|
55557
55824
|
Timeline = "TIMELINE"
|
|
55558
55825
|
}
|
|
55559
55826
|
export declare type JiraNavigationUiStateUserProperty = JiraEntityProperty & Node & {
|
|
@@ -56339,9 +56606,12 @@ export declare type JiraPlatformComment = JiraComment & Node & {
|
|
|
56339
56606
|
};
|
|
56340
56607
|
export declare type JiraPlatformCommentChildCommentsArgs = {
|
|
56341
56608
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
56609
|
+
afterTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
56342
56610
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
56611
|
+
beforeTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
56343
56612
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
56344
56613
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
56614
|
+
targetId?: InputMaybe<Scalars['String']['input']>;
|
|
56345
56615
|
};
|
|
56346
56616
|
export declare type JiraPlaybook = Node & {
|
|
56347
56617
|
__typename?: 'JiraPlaybook';
|
|
@@ -59509,9 +59779,12 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
59509
59779
|
};
|
|
59510
59780
|
export declare type JiraServiceManagementCommentChildCommentsArgs = {
|
|
59511
59781
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
59782
|
+
afterTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
59512
59783
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
59784
|
+
beforeTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
59513
59785
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59514
59786
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
59787
|
+
targetId?: InputMaybe<Scalars['String']['input']>;
|
|
59515
59788
|
};
|
|
59516
59789
|
export declare enum JiraServiceManagementCommentVisibility {
|
|
59517
59790
|
Internal = "INTERNAL",
|
|
@@ -62227,6 +62500,7 @@ export declare type JiraUserPreferences = {
|
|
|
62227
62500
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
62228
62501
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
62229
62502
|
issueViewActivityFeedSortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
62503
|
+
issueViewActivityLayout?: Maybe<JiraIssueViewActivityLayout>;
|
|
62230
62504
|
issueViewAttachmentPanelViewMode?: Maybe<JiraIssueViewAttachmentPanelViewMode>;
|
|
62231
62505
|
issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
|
|
62232
62506
|
issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
|
|
@@ -65142,6 +65416,24 @@ export declare type LookAndFeelSettings = {
|
|
|
65142
65416
|
selected?: Maybe<Scalars['String']['output']>;
|
|
65143
65417
|
theme?: Maybe<LookAndFeel>;
|
|
65144
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
|
+
}
|
|
65145
65437
|
export declare type LoomSpace = Node & {
|
|
65146
65438
|
__typename?: 'LoomSpace';
|
|
65147
65439
|
id: Scalars['ID']['output'];
|
|
@@ -65720,6 +66012,7 @@ export declare type MarketplaceConsoleAppSoftwares = {
|
|
|
65720
66012
|
appSoftwares: Array<MarketplaceConsoleAppSoftwareShort>;
|
|
65721
66013
|
};
|
|
65722
66014
|
export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
|
|
66015
|
+
assets?: InputMaybe<MarketplaceConsoleCreateVersionAssetsInput>;
|
|
65723
66016
|
buildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
65724
66017
|
compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>;
|
|
65725
66018
|
dcBuildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -65777,6 +66070,10 @@ export declare type MarketplaceConsoleCreatePrivateAppVersionMutationResponse =
|
|
|
65777
66070
|
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
65778
66071
|
success: Scalars['Boolean']['output'];
|
|
65779
66072
|
};
|
|
66073
|
+
export declare type MarketplaceConsoleCreateVersionAssetsInput = {
|
|
66074
|
+
highlights?: InputMaybe<Array<MarketplaceConsoleHighlightAssetInput>>;
|
|
66075
|
+
screenshots?: InputMaybe<Array<MarketplaceConsoleImageAssetInput>>;
|
|
66076
|
+
};
|
|
65780
66077
|
export declare type MarketplaceConsoleDeleteAppVersionResponse = MarketplaceConsoleKnownError | MarketplaceConsoleMutationVoidResponse;
|
|
65781
66078
|
export declare type MarketplaceConsoleDeploymentInstruction = {
|
|
65782
66079
|
__typename?: 'MarketplaceConsoleDeploymentInstruction';
|
|
@@ -65977,6 +66274,10 @@ export declare type MarketplaceConsoleGetVersionsListInput = {
|
|
|
65977
66274
|
legacyAppVersionApprovalStatus?: InputMaybe<Array<MarketplaceConsoleAsvlLegacyVersionApprovalStatus>>;
|
|
65978
66275
|
legacyAppVersionStatus?: InputMaybe<Array<MarketplaceConsoleAsvlLegacyVersionStatus>>;
|
|
65979
66276
|
};
|
|
66277
|
+
export declare type MarketplaceConsoleHighlightAssetInput = {
|
|
66278
|
+
screenshotUrl: Scalars['String']['input'];
|
|
66279
|
+
thumbnailUrl?: InputMaybe<Scalars['String']['input']>;
|
|
66280
|
+
};
|
|
65980
66281
|
export declare enum MarketplaceConsoleHosting {
|
|
65981
66282
|
Cloud = "CLOUD",
|
|
65982
66283
|
DataCenter = "DATA_CENTER",
|
|
@@ -65986,6 +66287,9 @@ export declare type MarketplaceConsoleHostingOption = {
|
|
|
65986
66287
|
__typename?: 'MarketplaceConsoleHostingOption';
|
|
65987
66288
|
hosting: MarketplaceConsoleHosting;
|
|
65988
66289
|
};
|
|
66290
|
+
export declare type MarketplaceConsoleImageAssetInput = {
|
|
66291
|
+
url: Scalars['String']['input'];
|
|
66292
|
+
};
|
|
65989
66293
|
export declare type MarketplaceConsoleImageMediaAsset = {
|
|
65990
66294
|
__typename?: 'MarketplaceConsoleImageMediaAsset';
|
|
65991
66295
|
altText?: Maybe<Scalars['String']['output']>;
|
|
@@ -67649,6 +67953,8 @@ export declare type MercuryFocusAreaFocusAreaStatusUpdatesArgs = {
|
|
|
67649
67953
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67650
67954
|
};
|
|
67651
67955
|
export declare type MercuryFocusAreaSubFocusAreasArgs = {
|
|
67956
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67957
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67652
67958
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
67653
67959
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
67654
67960
|
};
|
|
@@ -67947,29 +68253,6 @@ export declare type MercuryHumanResourcesAllocation = {
|
|
|
67947
68253
|
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
67948
68254
|
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
67949
68255
|
};
|
|
67950
|
-
export declare type MercuryJiraAlignEpic = HasMercuryProjectFields & Node & {
|
|
67951
|
-
__typename?: 'MercuryJiraAlignEpic';
|
|
67952
|
-
id: Scalars['ID']['output'];
|
|
67953
|
-
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
67954
|
-
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
67955
|
-
mercuryProjectName?: Maybe<Scalars['String']['output']>;
|
|
67956
|
-
mercuryProjectOwner?: Maybe<User>;
|
|
67957
|
-
mercuryProjectOwnerId?: Maybe<Scalars['String']['output']>;
|
|
67958
|
-
mercuryProjectProviderName?: Maybe<Scalars['String']['output']>;
|
|
67959
|
-
mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
|
|
67960
|
-
mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
|
|
67961
|
-
mercuryTargetDate?: Maybe<Scalars['String']['output']>;
|
|
67962
|
-
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
67963
|
-
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
67964
|
-
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
67965
|
-
};
|
|
67966
|
-
export declare type MercuryJiraAlignProviderQueryApi = {
|
|
67967
|
-
__typename?: 'MercuryJiraAlignProviderQueryApi';
|
|
67968
|
-
jiraAlignEpicsByAris?: Maybe<Array<MercuryJiraAlignEpic>>;
|
|
67969
|
-
};
|
|
67970
|
-
export declare type MercuryJiraAlignProviderQueryApiJiraAlignEpicsByArisArgs = {
|
|
67971
|
-
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
67972
|
-
};
|
|
67973
68256
|
export declare type MercuryLinkAtlassianWorkToFocusAreaInput = {
|
|
67974
68257
|
focusAreaAri: Scalars['String']['input'];
|
|
67975
68258
|
workAris: Array<Scalars['String']['input']>;
|
|
@@ -68212,11 +68495,6 @@ export declare enum MercuryProjectStatusColor {
|
|
|
68212
68495
|
Red = "RED",
|
|
68213
68496
|
Yellow = "YELLOW"
|
|
68214
68497
|
}
|
|
68215
|
-
export declare type MercuryProjectStatusImpl = MercuryProjectStatus & {
|
|
68216
|
-
__typename?: 'MercuryProjectStatusImpl';
|
|
68217
|
-
mercuryColor?: Maybe<MercuryProjectStatusColor>;
|
|
68218
|
-
mercuryName?: Maybe<Scalars['String']['output']>;
|
|
68219
|
-
};
|
|
68220
68498
|
export declare enum MercuryProjectTargetDateType {
|
|
68221
68499
|
Day = "DAY",
|
|
68222
68500
|
Month = "MONTH",
|
|
@@ -69176,6 +69454,7 @@ export declare type Mutation = {
|
|
|
69176
69454
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
69177
69455
|
devAi?: Maybe<DevAiMutations>;
|
|
69178
69456
|
devOps?: Maybe<DevOpsMutation>;
|
|
69457
|
+
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
69179
69458
|
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
69180
69459
|
disableExperiment?: Maybe<TapExperiment>;
|
|
69181
69460
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
@@ -70219,6 +70498,12 @@ export declare type MutationDeleteTemplateArgs = {
|
|
|
70219
70498
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
70220
70499
|
id: Scalars['ID']['input'];
|
|
70221
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
|
+
};
|
|
70222
70507
|
export declare type MutationDevai_InvokeAutodevRovoAgentArgs = {
|
|
70223
70508
|
agentId: Scalars['ID']['input'];
|
|
70224
70509
|
issueId: Scalars['ID']['input'];
|
|
@@ -72434,6 +72719,10 @@ export declare enum PolarisFieldType {
|
|
|
72434
72719
|
PolarisIdeaPlayField = "PolarisIdeaPlayField",
|
|
72435
72720
|
PolarisJiraField = "PolarisJiraField"
|
|
72436
72721
|
}
|
|
72722
|
+
export declare enum PolarisFilterEnumType {
|
|
72723
|
+
BoardColumn = "BOARD_COLUMN",
|
|
72724
|
+
ViewGroup = "VIEW_GROUP"
|
|
72725
|
+
}
|
|
72437
72726
|
export declare type PolarisFilterInput = {
|
|
72438
72727
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
72439
72728
|
};
|
|
@@ -72903,6 +73192,7 @@ export declare type PolarisViewFilterInput = {
|
|
|
72903
73192
|
values: Array<PolarisViewFilterValueInput>;
|
|
72904
73193
|
};
|
|
72905
73194
|
export declare enum PolarisViewFilterKind {
|
|
73195
|
+
ConnectionFieldIdentity = "CONNECTION_FIELD_IDENTITY",
|
|
72906
73196
|
FieldIdentity = "FIELD_IDENTITY",
|
|
72907
73197
|
FieldNumeric = "FIELD_NUMERIC",
|
|
72908
73198
|
Interval = "INTERVAL",
|
|
@@ -72922,11 +73212,13 @@ export declare enum PolarisViewFilterOperator {
|
|
|
72922
73212
|
}
|
|
72923
73213
|
export declare type PolarisViewFilterValue = {
|
|
72924
73214
|
__typename?: 'PolarisViewFilterValue';
|
|
73215
|
+
enumValue?: Maybe<PolarisFilterEnumType>;
|
|
72925
73216
|
numericValue?: Maybe<Scalars['Float']['output']>;
|
|
72926
73217
|
operator?: Maybe<PolarisViewFilterOperator>;
|
|
72927
73218
|
stringValue?: Maybe<Scalars['String']['output']>;
|
|
72928
73219
|
};
|
|
72929
73220
|
export declare type PolarisViewFilterValueInput = {
|
|
73221
|
+
enumValue?: InputMaybe<PolarisFilterEnumType>;
|
|
72930
73222
|
operator?: InputMaybe<PolarisViewFilterOperator>;
|
|
72931
73223
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
72932
73224
|
value?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -73627,6 +73919,7 @@ export declare type Query = {
|
|
|
73627
73919
|
contentTemplateLabelsByCriteria?: Maybe<PaginatedLabelList>;
|
|
73628
73920
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
73629
73921
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
73922
|
+
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
73630
73923
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
73631
73924
|
countGroupByPage?: Maybe<CountGroupByPage>;
|
|
73632
73925
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
@@ -73662,7 +73955,9 @@ export declare type Query = {
|
|
|
73662
73955
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
73663
73956
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
73664
73957
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
73958
|
+
devai_autodevAgentForJob?: Maybe<DevAiRovoAgent>;
|
|
73665
73959
|
devai_autodevIssueScoping?: Maybe<DevAiIssueScopingResult>;
|
|
73960
|
+
devai_autodevIssueScopingScoreForJob?: Maybe<DevAiIssueScopingResult>;
|
|
73666
73961
|
devai_autodevJobFileContents?: Maybe<Scalars['String']['output']>;
|
|
73667
73962
|
devai_autodevJobLogGroups?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
73668
73963
|
devai_autodevJobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -73776,9 +74071,13 @@ export declare type Query = {
|
|
|
73776
74071
|
lookAndFeel?: Maybe<LookAndFeelSettings>;
|
|
73777
74072
|
loomToken?: Maybe<LoomToken>;
|
|
73778
74073
|
loomUserStatus?: Maybe<LoomUserStatus>;
|
|
74074
|
+
loom_meeting?: Maybe<LoomMeeting>;
|
|
74075
|
+
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
73779
74076
|
loom_space?: Maybe<LoomSpace>;
|
|
74077
|
+
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
73780
74078
|
loom_spacesSearch: Array<Maybe<LoomSpace>>;
|
|
73781
74079
|
loom_video?: Maybe<LoomVideo>;
|
|
74080
|
+
loom_videos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
73782
74081
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
73783
74082
|
macroBodyRenderer?: Maybe<MacroBody>;
|
|
73784
74083
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
@@ -73791,7 +74090,6 @@ export declare type Query = {
|
|
|
73791
74090
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
73792
74091
|
me: AuthenticationContext;
|
|
73793
74092
|
mercury?: Maybe<MercuryQueryApi>;
|
|
73794
|
-
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
73795
74093
|
migration: MigrationQuery;
|
|
73796
74094
|
migrationCatalogue: MigrationCatalogueQuery;
|
|
73797
74095
|
migrationMediaSession?: Maybe<ContentMediaSession>;
|
|
@@ -75321,6 +75619,10 @@ export declare type QueryContentWatchersArgs = {
|
|
|
75321
75619
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75322
75620
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
75323
75621
|
};
|
|
75622
|
+
export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
75623
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
75624
|
+
text?: InputMaybe<Scalars['String']['input']>;
|
|
75625
|
+
};
|
|
75324
75626
|
export declare type QueryCountGroupByEventNameArgs = {
|
|
75325
75627
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
75326
75628
|
eventName: Array<AnalyticsEventName>;
|
|
@@ -75459,11 +75761,19 @@ export declare type QueryDevOpsServicesArgs = {
|
|
|
75459
75761
|
export declare type QueryDevOpsServicesByIdArgs = {
|
|
75460
75762
|
ids: Array<Scalars['ID']['input']>;
|
|
75461
75763
|
};
|
|
75764
|
+
export declare type QueryDevai_AutodevAgentForJobArgs = {
|
|
75765
|
+
cloudId: Scalars['ID']['input'];
|
|
75766
|
+
jobId: Scalars['ID']['input'];
|
|
75767
|
+
};
|
|
75462
75768
|
export declare type QueryDevai_AutodevIssueScopingArgs = {
|
|
75463
75769
|
issueDescription?: InputMaybe<Scalars['String']['input']>;
|
|
75464
75770
|
issueId: Scalars['ID']['input'];
|
|
75465
75771
|
issueSummary: Scalars['String']['input'];
|
|
75466
75772
|
};
|
|
75773
|
+
export declare type QueryDevai_AutodevIssueScopingScoreForJobArgs = {
|
|
75774
|
+
cloudId: Scalars['ID']['input'];
|
|
75775
|
+
jobId: Scalars['ID']['input'];
|
|
75776
|
+
};
|
|
75467
75777
|
export declare type QueryDevai_AutodevJobFileContentsArgs = {
|
|
75468
75778
|
cloudId: Scalars['ID']['input'];
|
|
75469
75779
|
endLine?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -75806,9 +76116,18 @@ export declare type QueryLabelSearchArgs = {
|
|
|
75806
76116
|
export declare type QueryLookAndFeelArgs = {
|
|
75807
76117
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
75808
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
|
+
};
|
|
75809
76125
|
export declare type QueryLoom_SpaceArgs = {
|
|
75810
76126
|
id: Scalars['ID']['input'];
|
|
75811
76127
|
};
|
|
76128
|
+
export declare type QueryLoom_SpacesArgs = {
|
|
76129
|
+
ids: Array<Scalars['ID']['input']>;
|
|
76130
|
+
};
|
|
75812
76131
|
export declare type QueryLoom_SpacesSearchArgs = {
|
|
75813
76132
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
75814
76133
|
siteId: Scalars['ID']['input'];
|
|
@@ -75816,6 +76135,9 @@ export declare type QueryLoom_SpacesSearchArgs = {
|
|
|
75816
76135
|
export declare type QueryLoom_VideoArgs = {
|
|
75817
76136
|
id: Scalars['ID']['input'];
|
|
75818
76137
|
};
|
|
76138
|
+
export declare type QueryLoom_VideosArgs = {
|
|
76139
|
+
ids: Array<Scalars['ID']['input']>;
|
|
76140
|
+
};
|
|
75819
76141
|
export declare type QueryMacroBodyRendererArgs = {
|
|
75820
76142
|
adf: Scalars['String']['input'];
|
|
75821
76143
|
containedRender?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -79382,6 +79704,26 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
79382
79704
|
strategy: SwimlaneStrategy;
|
|
79383
79705
|
success: Scalars['Boolean']['output'];
|
|
79384
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
|
+
};
|
|
79385
79727
|
export declare type SettingsMenuItem = {
|
|
79386
79728
|
__typename?: 'SettingsMenuItem';
|
|
79387
79729
|
menuId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -79404,8 +79746,13 @@ export declare type SettingsMenuItemInput = {
|
|
|
79404
79746
|
};
|
|
79405
79747
|
export declare type SettingsNavigationCustomisation = {
|
|
79406
79748
|
__typename?: 'SettingsNavigationCustomisation';
|
|
79749
|
+
properties?: Maybe<SettingsDisplayPropertyConnection>;
|
|
79407
79750
|
sidebar?: Maybe<SettingsMenuItemConnection>;
|
|
79408
79751
|
};
|
|
79752
|
+
export declare type SettingsNavigationCustomisationPropertiesArgs = {
|
|
79753
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
79754
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79755
|
+
};
|
|
79409
79756
|
export declare type SettingsNavigationCustomisationSidebarArgs = {
|
|
79410
79757
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
79411
79758
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -79413,6 +79760,7 @@ export declare type SettingsNavigationCustomisationSidebarArgs = {
|
|
|
79413
79760
|
export declare type SettingsNavigationCustomisationInput = {
|
|
79414
79761
|
entityAri: Scalars['ID']['input'];
|
|
79415
79762
|
ownerAri?: InputMaybe<Scalars['ID']['input']>;
|
|
79763
|
+
properties?: InputMaybe<Array<InputMaybe<SettingsDisplayPropertyInput>>>;
|
|
79416
79764
|
sidebar?: InputMaybe<Array<InputMaybe<SettingsMenuItemInput>>>;
|
|
79417
79765
|
};
|
|
79418
79766
|
export declare type ShareResourceInput = {
|
|
@@ -79974,16 +80322,6 @@ export declare type ShepherdCreateAlertsPayload = Payload & {
|
|
|
79974
80322
|
nodes?: Maybe<Array<Maybe<ShepherdAlert>>>;
|
|
79975
80323
|
success: Scalars['Boolean']['output'];
|
|
79976
80324
|
};
|
|
79977
|
-
export declare type ShepherdCreateExampleAlertInput = {
|
|
79978
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
79979
|
-
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
79980
|
-
};
|
|
79981
|
-
export declare type ShepherdCreateExampleAlertPayload = Payload & {
|
|
79982
|
-
__typename?: 'ShepherdCreateExampleAlertPayload';
|
|
79983
|
-
errors?: Maybe<Array<MutationError>>;
|
|
79984
|
-
node?: Maybe<ShepherdAlert>;
|
|
79985
|
-
success: Scalars['Boolean']['output'];
|
|
79986
|
-
};
|
|
79987
80325
|
export declare type ShepherdCreateSlackInput = {
|
|
79988
80326
|
authToken: Scalars['String']['input'];
|
|
79989
80327
|
callbackURL: Scalars['URL']['input'];
|
|
@@ -80305,7 +80643,6 @@ export declare type ShepherdMutation = {
|
|
|
80305
80643
|
actor?: Maybe<ShepherdActorMutations>;
|
|
80306
80644
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
80307
80645
|
createAlerts?: Maybe<ShepherdCreateAlertsPayload>;
|
|
80308
|
-
createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
|
|
80309
80646
|
createTestAlert?: Maybe<ShepherdCreateTestAlertPayload>;
|
|
80310
80647
|
deleteAlert?: Maybe<ShepherdDeleteAlertPayload>;
|
|
80311
80648
|
redaction?: Maybe<ShepherdRedactionMutations>;
|
|
@@ -80321,9 +80658,6 @@ export declare type ShepherdMutationCreateAlertArgs = {
|
|
|
80321
80658
|
export declare type ShepherdMutationCreateAlertsArgs = {
|
|
80322
80659
|
input: Array<ShepherdCreateAlertInput>;
|
|
80323
80660
|
};
|
|
80324
|
-
export declare type ShepherdMutationCreateExampleAlertArgs = {
|
|
80325
|
-
input: ShepherdCreateExampleAlertInput;
|
|
80326
|
-
};
|
|
80327
80661
|
export declare type ShepherdMutationCreateTestAlertArgs = {
|
|
80328
80662
|
workspaceId: Scalars['ID']['input'];
|
|
80329
80663
|
};
|
|
@@ -80357,7 +80691,6 @@ export declare type ShepherdQuery = {
|
|
|
80357
80691
|
shepherdActor?: Maybe<ShepherdActorResult>;
|
|
80358
80692
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
80359
80693
|
shepherdAppInfo: ShepherdAppInfo;
|
|
80360
|
-
shepherdUser?: Maybe<ShepherdUser>;
|
|
80361
80694
|
subscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
80362
80695
|
workspace?: Maybe<ShepherdWorkspaceResult>;
|
|
80363
80696
|
workspacesByUserContext?: Maybe<ShepherdWorkspaceResult>;
|
|
@@ -80380,9 +80713,6 @@ export declare type ShepherdQueryShepherdActorArgs = {
|
|
|
80380
80713
|
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
80381
80714
|
id: Scalars['ID']['input'];
|
|
80382
80715
|
};
|
|
80383
|
-
export declare type ShepherdQueryShepherdUserArgs = {
|
|
80384
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
80385
|
-
};
|
|
80386
80716
|
export declare type ShepherdQuerySubscriptionsArgs = {
|
|
80387
80717
|
workspaceId: Scalars['ID']['input'];
|
|
80388
80718
|
};
|
|
@@ -84601,6 +84931,7 @@ export declare type TrelloCardLocation = {
|
|
|
84601
84931
|
address?: Maybe<Scalars['String']['output']>;
|
|
84602
84932
|
coordinates?: Maybe<TrelloCardCoordinates>;
|
|
84603
84933
|
name?: Maybe<Scalars['String']['output']>;
|
|
84934
|
+
staticMapUrl?: Maybe<Scalars['URL']['output']>;
|
|
84604
84935
|
};
|
|
84605
84936
|
export declare enum TrelloCardRole {
|
|
84606
84937
|
Board = "BOARD",
|
|
@@ -84626,6 +84957,7 @@ export declare type TrelloCardUpdated = {
|
|
|
84626
84957
|
members?: Maybe<TrelloMemberUpdatedConnection>;
|
|
84627
84958
|
name?: Maybe<Scalars['String']['output']>;
|
|
84628
84959
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
84960
|
+
onChecklistDeleted?: Maybe<Array<TrelloChecklistDeleted>>;
|
|
84629
84961
|
position?: Maybe<Scalars['Float']['output']>;
|
|
84630
84962
|
stickers?: Maybe<TrelloStickerUpdatedConnection>;
|
|
84631
84963
|
};
|
|
@@ -84698,6 +85030,10 @@ export declare type TrelloChecklistConnectionUpdated = {
|
|
|
84698
85030
|
__typename?: 'TrelloChecklistConnectionUpdated';
|
|
84699
85031
|
edges?: Maybe<Array<TrelloChecklistEdgeUpdated>>;
|
|
84700
85032
|
};
|
|
85033
|
+
export declare type TrelloChecklistDeleted = {
|
|
85034
|
+
__typename?: 'TrelloChecklistDeleted';
|
|
85035
|
+
objectId: Scalars['ID']['output'];
|
|
85036
|
+
};
|
|
84701
85037
|
export declare type TrelloChecklistEdge = {
|
|
84702
85038
|
__typename?: 'TrelloChecklistEdge';
|
|
84703
85039
|
cursor: Scalars['String']['output'];
|
|
@@ -84735,6 +85071,7 @@ export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
|
|
|
84735
85071
|
__typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
|
|
84736
85072
|
errors?: Maybe<Array<MutationError>>;
|
|
84737
85073
|
plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
|
|
85074
|
+
plannerCalendarMutated?: Maybe<TrelloPlannerCalendarMutated>;
|
|
84738
85075
|
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendarUpdated>;
|
|
84739
85076
|
success: Scalars['Boolean']['output'];
|
|
84740
85077
|
};
|
|
@@ -85016,7 +85353,7 @@ export declare type TrelloMember = Node & {
|
|
|
85016
85353
|
__typename?: 'TrelloMember';
|
|
85017
85354
|
activityBlocked?: Maybe<Scalars['Boolean']['output']>;
|
|
85018
85355
|
avatarSource?: Maybe<Scalars['String']['output']>;
|
|
85019
|
-
avatarUrl?: Maybe<Scalars['
|
|
85356
|
+
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
85020
85357
|
bio?: Maybe<Scalars['String']['output']>;
|
|
85021
85358
|
bioData?: Maybe<Scalars['JSON']['output']>;
|
|
85022
85359
|
confirmed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -85030,7 +85367,7 @@ export declare type TrelloMember = Node & {
|
|
|
85030
85367
|
objectId: Scalars['ID']['output'];
|
|
85031
85368
|
planner?: Maybe<TrelloPlanner>;
|
|
85032
85369
|
referrer?: Maybe<TrelloMember>;
|
|
85033
|
-
url?: Maybe<Scalars['
|
|
85370
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
85034
85371
|
user?: Maybe<User>;
|
|
85035
85372
|
username?: Maybe<Scalars['String']['output']>;
|
|
85036
85373
|
workspaces?: Maybe<TrelloMemberWorkspaceConnection>;
|
|
@@ -85053,7 +85390,7 @@ export declare type TrelloMemberEdge = {
|
|
|
85053
85390
|
};
|
|
85054
85391
|
export declare type TrelloMemberNonPublicData = {
|
|
85055
85392
|
__typename?: 'TrelloMemberNonPublicData';
|
|
85056
|
-
avatarUrl?: Maybe<Scalars['
|
|
85393
|
+
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
85057
85394
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
85058
85395
|
initials?: Maybe<Scalars['String']['output']>;
|
|
85059
85396
|
};
|
|
@@ -85317,7 +85654,7 @@ export declare type TrelloPlannerCalendarEventCardEdge = {
|
|
|
85317
85654
|
};
|
|
85318
85655
|
export declare type TrelloPlannerCalendarEventConferencing = {
|
|
85319
85656
|
__typename?: 'TrelloPlannerCalendarEventConferencing';
|
|
85320
|
-
url?: Maybe<Scalars['
|
|
85657
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
85321
85658
|
};
|
|
85322
85659
|
export declare type TrelloPlannerCalendarEventConnection = {
|
|
85323
85660
|
__typename?: 'TrelloPlannerCalendarEventConnection';
|
|
@@ -85355,6 +85692,7 @@ export declare type TrelloPlannerCalendarEventsFilter = {
|
|
|
85355
85692
|
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
85356
85693
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
85357
85694
|
};
|
|
85695
|
+
export declare type TrelloPlannerCalendarMutated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
|
|
85358
85696
|
export declare type TrelloPlannerCalendarUpdated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
|
|
85359
85697
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
85360
85698
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
@@ -85423,7 +85761,7 @@ export declare enum TrelloPowerUpDataScope {
|
|
|
85423
85761
|
}
|
|
85424
85762
|
export declare type TrelloPowerUpIcon = {
|
|
85425
85763
|
__typename?: 'TrelloPowerUpIcon';
|
|
85426
|
-
url?: Maybe<Scalars['
|
|
85764
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
85427
85765
|
};
|
|
85428
85766
|
export declare type TrelloPowerUpUpdated = {
|
|
85429
85767
|
__typename?: 'TrelloPowerUpUpdated';
|
|
@@ -85535,6 +85873,7 @@ export declare type TrelloQueryApiProviderPlannerCalendarsByAccountIdArgs = {
|
|
|
85535
85873
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85536
85874
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85537
85875
|
id: Scalars['ID']['input'];
|
|
85876
|
+
syncToken?: InputMaybe<Scalars['String']['input']>;
|
|
85538
85877
|
workspaceId: Scalars['ID']['input'];
|
|
85539
85878
|
};
|
|
85540
85879
|
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
@@ -85584,7 +85923,7 @@ export declare type TrelloRemoveMemberInput = {
|
|
|
85584
85923
|
export declare type TrelloScaleProps = {
|
|
85585
85924
|
__typename?: 'TrelloScaleProps';
|
|
85586
85925
|
height?: Maybe<Scalars['Int']['output']>;
|
|
85587
|
-
url?: Maybe<Scalars['
|
|
85926
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
85588
85927
|
width?: Maybe<Scalars['Int']['output']>;
|
|
85589
85928
|
};
|
|
85590
85929
|
export declare type TrelloSticker = {
|
|
@@ -85670,7 +86009,7 @@ export declare type TrelloTemplateGalleryFilterInput = {
|
|
|
85670
86009
|
export declare type TrelloTemplateGalleryItemInfo = {
|
|
85671
86010
|
__typename?: 'TrelloTemplateGalleryItemInfo';
|
|
85672
86011
|
avatarShape?: Maybe<Scalars['String']['output']>;
|
|
85673
|
-
avatarUrl?: Maybe<Scalars['
|
|
86012
|
+
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
85674
86013
|
blurb?: Maybe<Scalars['String']['output']>;
|
|
85675
86014
|
byline?: Maybe<Scalars['String']['output']>;
|
|
85676
86015
|
category: TrelloTemplateGalleryCategory;
|
|
@@ -85798,7 +86137,7 @@ export declare type TrelloWorkspace = Node & {
|
|
|
85798
86137
|
prefs?: Maybe<TrelloWorkspacePrefs>;
|
|
85799
86138
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
85800
86139
|
tags?: Maybe<TrelloTagConnection>;
|
|
85801
|
-
url?: Maybe<Scalars['
|
|
86140
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
85802
86141
|
website?: Maybe<Scalars['String']['output']>;
|
|
85803
86142
|
};
|
|
85804
86143
|
export declare type TrelloWorkspaceMembersArgs = {
|
|
@@ -85949,6 +86288,19 @@ export declare type UnifiedAtlassianProductEdge = UnifiedIEdge & {
|
|
|
85949
86288
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
85950
86289
|
node?: Maybe<UnifiedAtlassianProduct>;
|
|
85951
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
|
+
};
|
|
85952
86304
|
export declare type UnifiedForums = UnifiedINode & {
|
|
85953
86305
|
__typename?: 'UnifiedForums';
|
|
85954
86306
|
badges?: Maybe<UnifiedUForumsBadgesResult>;
|
|
@@ -86269,6 +86621,7 @@ export declare type UnifiedLinkingStatusPayload = UnifiedPayload & {
|
|
|
86269
86621
|
export declare type UnifiedMutation = {
|
|
86270
86622
|
__typename?: 'UnifiedMutation';
|
|
86271
86623
|
account?: Maybe<UnifiedAccountMutation>;
|
|
86624
|
+
caching?: Maybe<UnifiedCachingMutation>;
|
|
86272
86625
|
createUnifiedSystem?: Maybe<UnifiedProfilePayload>;
|
|
86273
86626
|
gating?: Maybe<UnifiedGatingMutation>;
|
|
86274
86627
|
linking?: Maybe<UnifiedLinkingMutation>;
|
|
@@ -87166,6 +87519,11 @@ export declare type UpdateUserInstallationRulesInput = {
|
|
|
87166
87519
|
cloudId: Scalars['ID']['input'];
|
|
87167
87520
|
rule: UserInstallationRuleValue;
|
|
87168
87521
|
};
|
|
87522
|
+
export declare type UpgradeableByRollout = {
|
|
87523
|
+
__typename?: 'UpgradeableByRollout';
|
|
87524
|
+
sourceVersionId: Scalars['ID']['output'];
|
|
87525
|
+
upgradeableByRollout: Scalars['Boolean']['output'];
|
|
87526
|
+
};
|
|
87169
87527
|
export declare type User = {
|
|
87170
87528
|
accountId: Scalars['ID']['output'];
|
|
87171
87529
|
accountStatus: AccountStatus;
|