@forge/cli-shared 6.6.2-next.7 → 6.6.2-next.8-experimental-d22b31e
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 +24 -0
- package/out/graphql/graphql-types.d.ts +367 -211
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +35 -25
- package/package.json +2 -2
|
@@ -1819,6 +1819,10 @@ export declare type AppStorageMutationDeleteAppStoredEntityArgs = {
|
|
|
1819
1819
|
export declare type AppStorageMutationSetAppStoredEntityArgs = {
|
|
1820
1820
|
input: SetAppStoredEntityMutationInput;
|
|
1821
1821
|
};
|
|
1822
|
+
export declare type AppStorageOrderByInput = {
|
|
1823
|
+
columnName: Scalars['String']['input'];
|
|
1824
|
+
direction: AppStorageSqlTableDataSortDirection;
|
|
1825
|
+
};
|
|
1822
1826
|
export declare type AppStorageSqlDatabaseColumn = {
|
|
1823
1827
|
__typename?: 'AppStorageSqlDatabaseColumn';
|
|
1824
1828
|
default: Scalars['String']['output'];
|
|
@@ -1848,6 +1852,27 @@ export declare type AppStorageSqlDatabaseTable = {
|
|
|
1848
1852
|
columns: Array<AppStorageSqlDatabaseColumn>;
|
|
1849
1853
|
name: Scalars['String']['output'];
|
|
1850
1854
|
};
|
|
1855
|
+
export declare type AppStorageSqlTableDataInput = {
|
|
1856
|
+
appId: Scalars['ID']['input'];
|
|
1857
|
+
installationId: Scalars['ID']['input'];
|
|
1858
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1859
|
+
orderBy?: InputMaybe<Array<AppStorageOrderByInput>>;
|
|
1860
|
+
tableName: Scalars['String']['input'];
|
|
1861
|
+
};
|
|
1862
|
+
export declare type AppStorageSqlTableDataPayload = {
|
|
1863
|
+
__typename?: 'AppStorageSqlTableDataPayload';
|
|
1864
|
+
columnNames: Array<Scalars['String']['output']>;
|
|
1865
|
+
filteredColumnNames: Array<Scalars['String']['output']>;
|
|
1866
|
+
rows: Array<AppStorageSqlTableDataRow>;
|
|
1867
|
+
};
|
|
1868
|
+
export declare type AppStorageSqlTableDataRow = {
|
|
1869
|
+
__typename?: 'AppStorageSqlTableDataRow';
|
|
1870
|
+
values: Array<Scalars['String']['output']>;
|
|
1871
|
+
};
|
|
1872
|
+
export declare enum AppStorageSqlTableDataSortDirection {
|
|
1873
|
+
Asc = "ASC",
|
|
1874
|
+
Desc = "DESC"
|
|
1875
|
+
}
|
|
1851
1876
|
export declare type AppStoredCustomEntity = {
|
|
1852
1877
|
__typename?: 'AppStoredCustomEntity';
|
|
1853
1878
|
entityName: Scalars['String']['output'];
|
|
@@ -3283,6 +3308,7 @@ export declare type CatchupVersionDiffMetadataResponse = {
|
|
|
3283
3308
|
__typename?: 'CatchupVersionDiffMetadataResponse';
|
|
3284
3309
|
collaborators?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
3285
3310
|
isDiffEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
3311
|
+
users?: Maybe<Array<Maybe<Person>>>;
|
|
3286
3312
|
};
|
|
3287
3313
|
export declare type CcpAccountDetails = CommerceAccountDetails & {
|
|
3288
3314
|
__typename?: 'CcpAccountDetails';
|
|
@@ -23637,6 +23663,10 @@ export declare type EcosystemMarketplaceAppVersion = {
|
|
|
23637
23663
|
paymentModel?: Maybe<EcosystemMarketplacePaymentModel>;
|
|
23638
23664
|
version: Scalars['String']['output'];
|
|
23639
23665
|
};
|
|
23666
|
+
export declare type EcosystemMarketplaceAppVersionFilter = {
|
|
23667
|
+
cloudAppVersionId?: InputMaybe<Scalars['ID']['input']>;
|
|
23668
|
+
version?: InputMaybe<Scalars['String']['input']>;
|
|
23669
|
+
};
|
|
23640
23670
|
export declare type EcosystemMarketplaceCloudAppDeployment = EcosystemMarketplaceAppDeployment & {
|
|
23641
23671
|
__typename?: 'EcosystemMarketplaceCloudAppDeployment';
|
|
23642
23672
|
cloudAppEnvironmentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -23649,6 +23679,7 @@ export declare type EcosystemMarketplaceConnectAppDeployment = EcosystemMarketpl
|
|
|
23649
23679
|
__typename?: 'EcosystemMarketplaceConnectAppDeployment';
|
|
23650
23680
|
descriptorUrl?: Maybe<Scalars['String']['output']>;
|
|
23651
23681
|
frameworkId: Scalars['String']['output'];
|
|
23682
|
+
scopes?: Maybe<Array<EcosystemConnectScope>>;
|
|
23652
23683
|
};
|
|
23653
23684
|
export declare type EcosystemMarketplaceData = {
|
|
23654
23685
|
__typename?: 'EcosystemMarketplaceData';
|
|
@@ -23667,6 +23698,10 @@ export declare type EcosystemMarketplaceData = {
|
|
|
23667
23698
|
versions?: Maybe<EcosystemMarketplaceVersionConnection>;
|
|
23668
23699
|
wikiUrl?: Maybe<Scalars['String']['output']>;
|
|
23669
23700
|
};
|
|
23701
|
+
export declare type EcosystemMarketplaceDataVersionsArgs = {
|
|
23702
|
+
filter?: InputMaybe<EcosystemMarketplaceAppVersionFilter>;
|
|
23703
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
23704
|
+
};
|
|
23670
23705
|
export declare type EcosystemMarketplaceExternalFrameworkAppDeployment = EcosystemMarketplaceAppDeployment & {
|
|
23671
23706
|
__typename?: 'EcosystemMarketplaceExternalFrameworkAppDeployment';
|
|
23672
23707
|
frameworkId: Scalars['String']['output'];
|
|
@@ -25249,6 +25284,7 @@ export declare type FeedEventEditLive = FeedEvent & {
|
|
|
25249
25284
|
datetime: Scalars['String']['output'];
|
|
25250
25285
|
groupSize: Scalars['Int']['output'];
|
|
25251
25286
|
type: FeedEventType;
|
|
25287
|
+
user?: Maybe<Person>;
|
|
25252
25288
|
version: Scalars['Int']['output'];
|
|
25253
25289
|
};
|
|
25254
25290
|
export declare type FeedEventPublishLive = FeedEvent & {
|
|
@@ -25257,6 +25293,7 @@ export declare type FeedEventPublishLive = FeedEvent & {
|
|
|
25257
25293
|
datetime: Scalars['String']['output'];
|
|
25258
25294
|
groupSize: Scalars['Int']['output'];
|
|
25259
25295
|
type: FeedEventType;
|
|
25296
|
+
user?: Maybe<Person>;
|
|
25260
25297
|
version: Scalars['Int']['output'];
|
|
25261
25298
|
};
|
|
25262
25299
|
export declare enum FeedEventType {
|
|
@@ -25339,6 +25376,7 @@ export declare type FooterComment = CommentLocation & {
|
|
|
25339
25376
|
};
|
|
25340
25377
|
export declare type ForYouFeedItem = {
|
|
25341
25378
|
__typename?: 'ForYouFeedItem';
|
|
25379
|
+
content?: Maybe<Content>;
|
|
25342
25380
|
id: Scalars['String']['output'];
|
|
25343
25381
|
mostRelevantUpdate?: Maybe<Scalars['Int']['output']>;
|
|
25344
25382
|
recentActionsCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -30476,8 +30514,6 @@ export declare type GraphStore = {
|
|
|
30476
30514
|
linkedProjectHasVersionInverse?: Maybe<GraphStoreSimplifiedLinkedProjectHasVersionInverseConnection>;
|
|
30477
30515
|
linkedProjectHasVersionInverseRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
|
|
30478
30516
|
linkedProjectHasVersionRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
|
|
30479
|
-
loomVideoSharedWithUser?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserConnection>;
|
|
30480
|
-
loomVideoSharedWithUserInverse?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserInverseConnection>;
|
|
30481
30517
|
mediaAttachedToContent?: Maybe<GraphStoreSimplifiedMediaAttachedToContentConnection>;
|
|
30482
30518
|
mediaAttachedToContentBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
30483
30519
|
mediaAttachedToContentInverseBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
@@ -30731,8 +30767,6 @@ export declare type GraphStore = {
|
|
|
30731
30767
|
userCreatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogConnection>;
|
|
30732
30768
|
userCreatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection>;
|
|
30733
30769
|
userCreatedLoomVideo?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoConnection>;
|
|
30734
|
-
userCreatedLoomVideoComment?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentConnection>;
|
|
30735
|
-
userCreatedLoomVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseConnection>;
|
|
30736
30770
|
userCreatedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection>;
|
|
30737
30771
|
userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
|
|
30738
30772
|
userCreatedMessageInverse?: Maybe<GraphStoreSimplifiedUserCreatedMessageInverseConnection>;
|
|
@@ -30742,6 +30776,8 @@ export declare type GraphStore = {
|
|
|
30742
30776
|
userCreatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkInverseConnection>;
|
|
30743
30777
|
userCreatedRepository?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryConnection>;
|
|
30744
30778
|
userCreatedRepositoryInverse?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryInverseConnection>;
|
|
30779
|
+
userCreatedVideoComment?: Maybe<GraphStoreSimplifiedUserCreatedVideoCommentConnection>;
|
|
30780
|
+
userCreatedVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedVideoCommentInverseConnection>;
|
|
30745
30781
|
userFavoritedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection>;
|
|
30746
30782
|
userFavoritedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseConnection>;
|
|
30747
30783
|
userFavoritedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseConnection>;
|
|
@@ -30770,6 +30806,8 @@ export declare type GraphStore = {
|
|
|
30770
30806
|
userMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedUserMentionedInConversationInverseConnection>;
|
|
30771
30807
|
userMentionedInMessage?: Maybe<GraphStoreSimplifiedUserMentionedInMessageConnection>;
|
|
30772
30808
|
userMentionedInMessageInverse?: Maybe<GraphStoreSimplifiedUserMentionedInMessageInverseConnection>;
|
|
30809
|
+
userMentionedInVideoComment?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentConnection>;
|
|
30810
|
+
userMentionedInVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentInverseConnection>;
|
|
30773
30811
|
userMergedPullRequest?: Maybe<GraphStoreSimplifiedUserMergedPullRequestConnection>;
|
|
30774
30812
|
userMergedPullRequestInverse?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseConnection>;
|
|
30775
30813
|
userOwnedBranch?: Maybe<GraphStoreSimplifiedUserOwnedBranchConnection>;
|
|
@@ -30798,8 +30836,6 @@ export declare type GraphStore = {
|
|
|
30798
30836
|
userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
|
|
30799
30837
|
userTaggedInIssueComment?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentConnection>;
|
|
30800
30838
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
30801
|
-
userTaggedInLoomVideoComment?: Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentConnection>;
|
|
30802
|
-
userTaggedInLoomVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseConnection>;
|
|
30803
30839
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
30804
30840
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
30805
30841
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
@@ -30827,10 +30863,10 @@ export declare type GraphStore = {
|
|
|
30827
30863
|
userViewedGoalUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
|
|
30828
30864
|
userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
|
|
30829
30865
|
userViewedJiraIssueInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseConnection>;
|
|
30830
|
-
userViewedLoomVideo?: Maybe<GraphStoreSimplifiedUserViewedLoomVideoConnection>;
|
|
30831
|
-
userViewedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserViewedLoomVideoInverseConnection>;
|
|
30832
30866
|
userViewedProjectUpdate?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateConnection>;
|
|
30833
30867
|
userViewedProjectUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateInverseConnection>;
|
|
30868
|
+
userViewedVideo?: Maybe<GraphStoreSimplifiedUserViewedVideoConnection>;
|
|
30869
|
+
userViewedVideoInverse?: Maybe<GraphStoreSimplifiedUserViewedVideoInverseConnection>;
|
|
30834
30870
|
userWatchesConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection>;
|
|
30835
30871
|
userWatchesConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseConnection>;
|
|
30836
30872
|
userWatchesConfluencePage?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageConnection>;
|
|
@@ -30879,6 +30915,8 @@ export declare type GraphStore = {
|
|
|
30879
30915
|
versionUserAssociatedFeatureFlagRelationship?: Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagConnection>;
|
|
30880
30916
|
videoHasComment?: Maybe<GraphStoreSimplifiedVideoHasCommentConnection>;
|
|
30881
30917
|
videoHasCommentInverse?: Maybe<GraphStoreSimplifiedVideoHasCommentInverseConnection>;
|
|
30918
|
+
videoSharedWithUser?: Maybe<GraphStoreSimplifiedVideoSharedWithUserConnection>;
|
|
30919
|
+
videoSharedWithUserInverse?: Maybe<GraphStoreSimplifiedVideoSharedWithUserInverseConnection>;
|
|
30882
30920
|
vulnerabilityAssociatedIssue?: Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueConnection>;
|
|
30883
30921
|
vulnerabilityAssociatedIssueInverse?: Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseConnection>;
|
|
30884
30922
|
vulnerabilityAssociatedIssueInverseRelationship?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueConnection>;
|
|
@@ -32475,20 +32513,6 @@ export declare type GraphStoreLinkedProjectHasVersionRelationshipArgs = {
|
|
|
32475
32513
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32476
32514
|
id: Scalars['ID']['input'];
|
|
32477
32515
|
};
|
|
32478
|
-
export declare type GraphStoreLoomVideoSharedWithUserArgs = {
|
|
32479
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32480
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32481
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32482
|
-
id: Scalars['ID']['input'];
|
|
32483
|
-
sort?: InputMaybe<GraphStoreLoomVideoSharedWithUserSortInput>;
|
|
32484
|
-
};
|
|
32485
|
-
export declare type GraphStoreLoomVideoSharedWithUserInverseArgs = {
|
|
32486
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32487
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32488
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32489
|
-
id: Scalars['ID']['input'];
|
|
32490
|
-
sort?: InputMaybe<GraphStoreLoomVideoSharedWithUserSortInput>;
|
|
32491
|
-
};
|
|
32492
32516
|
export declare type GraphStoreMediaAttachedToContentArgs = {
|
|
32493
32517
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32494
32518
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34171,20 +34195,6 @@ export declare type GraphStoreUserCreatedLoomVideoArgs = {
|
|
|
34171
34195
|
id: Scalars['ID']['input'];
|
|
34172
34196
|
sort?: InputMaybe<GraphStoreUserCreatedLoomVideoSortInput>;
|
|
34173
34197
|
};
|
|
34174
|
-
export declare type GraphStoreUserCreatedLoomVideoCommentArgs = {
|
|
34175
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
34176
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34177
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34178
|
-
id: Scalars['ID']['input'];
|
|
34179
|
-
sort?: InputMaybe<GraphStoreUserCreatedLoomVideoCommentSortInput>;
|
|
34180
|
-
};
|
|
34181
|
-
export declare type GraphStoreUserCreatedLoomVideoCommentInverseArgs = {
|
|
34182
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
34183
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34184
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34185
|
-
id: Scalars['ID']['input'];
|
|
34186
|
-
sort?: InputMaybe<GraphStoreUserCreatedLoomVideoCommentSortInput>;
|
|
34187
|
-
};
|
|
34188
34198
|
export declare type GraphStoreUserCreatedLoomVideoInverseArgs = {
|
|
34189
34199
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34190
34200
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34248,6 +34258,20 @@ export declare type GraphStoreUserCreatedRepositoryInverseArgs = {
|
|
|
34248
34258
|
id: Scalars['ID']['input'];
|
|
34249
34259
|
sort?: InputMaybe<GraphStoreUserCreatedRepositorySortInput>;
|
|
34250
34260
|
};
|
|
34261
|
+
export declare type GraphStoreUserCreatedVideoCommentArgs = {
|
|
34262
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34263
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34264
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34265
|
+
id: Scalars['ID']['input'];
|
|
34266
|
+
sort?: InputMaybe<GraphStoreUserCreatedVideoCommentSortInput>;
|
|
34267
|
+
};
|
|
34268
|
+
export declare type GraphStoreUserCreatedVideoCommentInverseArgs = {
|
|
34269
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34270
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34271
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34272
|
+
id: Scalars['ID']['input'];
|
|
34273
|
+
sort?: InputMaybe<GraphStoreUserCreatedVideoCommentSortInput>;
|
|
34274
|
+
};
|
|
34251
34275
|
export declare type GraphStoreUserFavoritedConfluenceBlogpostArgs = {
|
|
34252
34276
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34253
34277
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34446,6 +34470,20 @@ export declare type GraphStoreUserMentionedInMessageInverseArgs = {
|
|
|
34446
34470
|
id: Scalars['ID']['input'];
|
|
34447
34471
|
sort?: InputMaybe<GraphStoreUserMentionedInMessageSortInput>;
|
|
34448
34472
|
};
|
|
34473
|
+
export declare type GraphStoreUserMentionedInVideoCommentArgs = {
|
|
34474
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34475
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34476
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34477
|
+
id: Scalars['ID']['input'];
|
|
34478
|
+
sort?: InputMaybe<GraphStoreUserMentionedInVideoCommentSortInput>;
|
|
34479
|
+
};
|
|
34480
|
+
export declare type GraphStoreUserMentionedInVideoCommentInverseArgs = {
|
|
34481
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34482
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34483
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34484
|
+
id: Scalars['ID']['input'];
|
|
34485
|
+
sort?: InputMaybe<GraphStoreUserMentionedInVideoCommentSortInput>;
|
|
34486
|
+
};
|
|
34449
34487
|
export declare type GraphStoreUserMergedPullRequestArgs = {
|
|
34450
34488
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34451
34489
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34644,20 +34682,6 @@ export declare type GraphStoreUserTaggedInIssueCommentInverseArgs = {
|
|
|
34644
34682
|
id: Scalars['ID']['input'];
|
|
34645
34683
|
sort?: InputMaybe<GraphStoreUserTaggedInIssueCommentSortInput>;
|
|
34646
34684
|
};
|
|
34647
|
-
export declare type GraphStoreUserTaggedInLoomVideoCommentArgs = {
|
|
34648
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
34649
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34650
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34651
|
-
id: Scalars['ID']['input'];
|
|
34652
|
-
sort?: InputMaybe<GraphStoreUserTaggedInLoomVideoCommentSortInput>;
|
|
34653
|
-
};
|
|
34654
|
-
export declare type GraphStoreUserTaggedInLoomVideoCommentInverseArgs = {
|
|
34655
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
34656
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34657
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34658
|
-
id: Scalars['ID']['input'];
|
|
34659
|
-
sort?: InputMaybe<GraphStoreUserTaggedInLoomVideoCommentSortInput>;
|
|
34660
|
-
};
|
|
34661
34685
|
export declare type GraphStoreUserTriggeredDeploymentArgs = {
|
|
34662
34686
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34663
34687
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34847,33 +34871,33 @@ export declare type GraphStoreUserViewedJiraIssueInverseArgs = {
|
|
|
34847
34871
|
id: Scalars['ID']['input'];
|
|
34848
34872
|
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
34849
34873
|
};
|
|
34850
|
-
export declare type
|
|
34874
|
+
export declare type GraphStoreUserViewedProjectUpdateArgs = {
|
|
34851
34875
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34852
34876
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34853
34877
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34854
34878
|
id: Scalars['ID']['input'];
|
|
34855
|
-
sort?: InputMaybe<
|
|
34879
|
+
sort?: InputMaybe<GraphStoreUserViewedProjectUpdateSortInput>;
|
|
34856
34880
|
};
|
|
34857
|
-
export declare type
|
|
34881
|
+
export declare type GraphStoreUserViewedProjectUpdateInverseArgs = {
|
|
34858
34882
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34859
34883
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34860
34884
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34861
34885
|
id: Scalars['ID']['input'];
|
|
34862
|
-
sort?: InputMaybe<
|
|
34886
|
+
sort?: InputMaybe<GraphStoreUserViewedProjectUpdateSortInput>;
|
|
34863
34887
|
};
|
|
34864
|
-
export declare type
|
|
34888
|
+
export declare type GraphStoreUserViewedVideoArgs = {
|
|
34865
34889
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34866
34890
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34867
34891
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34868
34892
|
id: Scalars['ID']['input'];
|
|
34869
|
-
sort?: InputMaybe<
|
|
34893
|
+
sort?: InputMaybe<GraphStoreUserViewedVideoSortInput>;
|
|
34870
34894
|
};
|
|
34871
|
-
export declare type
|
|
34895
|
+
export declare type GraphStoreUserViewedVideoInverseArgs = {
|
|
34872
34896
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34873
34897
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34874
34898
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34875
34899
|
id: Scalars['ID']['input'];
|
|
34876
|
-
sort?: InputMaybe<
|
|
34900
|
+
sort?: InputMaybe<GraphStoreUserViewedVideoSortInput>;
|
|
34877
34901
|
};
|
|
34878
34902
|
export declare type GraphStoreUserWatchesConfluenceBlogpostArgs = {
|
|
34879
34903
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -35177,6 +35201,20 @@ export declare type GraphStoreVideoHasCommentInverseArgs = {
|
|
|
35177
35201
|
id: Scalars['ID']['input'];
|
|
35178
35202
|
sort?: InputMaybe<GraphStoreVideoHasCommentSortInput>;
|
|
35179
35203
|
};
|
|
35204
|
+
export declare type GraphStoreVideoSharedWithUserArgs = {
|
|
35205
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35206
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35207
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35208
|
+
id: Scalars['ID']['input'];
|
|
35209
|
+
sort?: InputMaybe<GraphStoreVideoSharedWithUserSortInput>;
|
|
35210
|
+
};
|
|
35211
|
+
export declare type GraphStoreVideoSharedWithUserInverseArgs = {
|
|
35212
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35213
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35214
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35215
|
+
id: Scalars['ID']['input'];
|
|
35216
|
+
sort?: InputMaybe<GraphStoreVideoSharedWithUserSortInput>;
|
|
35217
|
+
};
|
|
35180
35218
|
export declare type GraphStoreVulnerabilityAssociatedIssueArgs = {
|
|
35181
35219
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35182
35220
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40840,9 +40878,6 @@ export declare type GraphStoreLongFilterInput = {
|
|
|
40840
40878
|
lessThan?: InputMaybe<Scalars['Long']['input']>;
|
|
40841
40879
|
lessThanOrEqual?: InputMaybe<Scalars['Long']['input']>;
|
|
40842
40880
|
};
|
|
40843
|
-
export declare type GraphStoreLoomVideoSharedWithUserSortInput = {
|
|
40844
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40845
|
-
};
|
|
40846
40881
|
export declare type GraphStoreMediaAttachedToContentSortInput = {
|
|
40847
40882
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40848
40883
|
};
|
|
@@ -43857,34 +43892,6 @@ export declare type GraphStoreSimplifiedLinkedProjectHasVersionInverseEdge = {
|
|
|
43857
43892
|
};
|
|
43858
43893
|
export declare type GraphStoreSimplifiedLinkedProjectHasVersionInverseUnion = JiraProject;
|
|
43859
43894
|
export declare type GraphStoreSimplifiedLinkedProjectHasVersionUnion = JiraVersion;
|
|
43860
|
-
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserConnection = HasPageInfo & {
|
|
43861
|
-
__typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserConnection';
|
|
43862
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserEdge>>>;
|
|
43863
|
-
pageInfo: PageInfo;
|
|
43864
|
-
};
|
|
43865
|
-
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserEdge = {
|
|
43866
|
-
__typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserEdge';
|
|
43867
|
-
createdAt: Scalars['DateTime']['output'];
|
|
43868
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
43869
|
-
id: Scalars['ID']['output'];
|
|
43870
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
43871
|
-
node?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserUnion>;
|
|
43872
|
-
};
|
|
43873
|
-
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserInverseConnection = HasPageInfo & {
|
|
43874
|
-
__typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserInverseConnection';
|
|
43875
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserInverseEdge>>>;
|
|
43876
|
-
pageInfo: PageInfo;
|
|
43877
|
-
};
|
|
43878
|
-
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserInverseEdge = {
|
|
43879
|
-
__typename?: 'GraphStoreSimplifiedLoomVideoSharedWithUserInverseEdge';
|
|
43880
|
-
createdAt: Scalars['DateTime']['output'];
|
|
43881
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
43882
|
-
id: Scalars['ID']['output'];
|
|
43883
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
43884
|
-
node?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserInverseUnion>;
|
|
43885
|
-
};
|
|
43886
|
-
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserInverseUnion = LoomVideo;
|
|
43887
|
-
export declare type GraphStoreSimplifiedLoomVideoSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43888
43895
|
export declare type GraphStoreSimplifiedMediaAttachedToContentConnection = HasPageInfo & {
|
|
43889
43896
|
__typename?: 'GraphStoreSimplifiedMediaAttachedToContentConnection';
|
|
43890
43897
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMediaAttachedToContentEdge>>>;
|
|
@@ -46331,34 +46338,6 @@ export declare type GraphStoreSimplifiedUserCreatedIssueWorklogInverseEdge = {
|
|
|
46331
46338
|
};
|
|
46332
46339
|
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46333
46340
|
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogUnion = JiraWorklog;
|
|
46334
|
-
export declare type GraphStoreSimplifiedUserCreatedLoomVideoCommentConnection = HasPageInfo & {
|
|
46335
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoCommentConnection';
|
|
46336
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentEdge>>>;
|
|
46337
|
-
pageInfo: PageInfo;
|
|
46338
|
-
};
|
|
46339
|
-
export declare type GraphStoreSimplifiedUserCreatedLoomVideoCommentEdge = {
|
|
46340
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoCommentEdge';
|
|
46341
|
-
createdAt: Scalars['DateTime']['output'];
|
|
46342
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
46343
|
-
id: Scalars['ID']['output'];
|
|
46344
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
46345
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentUnion>;
|
|
46346
|
-
};
|
|
46347
|
-
export declare type GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseConnection = HasPageInfo & {
|
|
46348
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseConnection';
|
|
46349
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseEdge>>>;
|
|
46350
|
-
pageInfo: PageInfo;
|
|
46351
|
-
};
|
|
46352
|
-
export declare type GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseEdge = {
|
|
46353
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseEdge';
|
|
46354
|
-
createdAt: Scalars['DateTime']['output'];
|
|
46355
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
46356
|
-
id: Scalars['ID']['output'];
|
|
46357
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
46358
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseUnion>;
|
|
46359
|
-
};
|
|
46360
|
-
export declare type GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46361
|
-
export declare type GraphStoreSimplifiedUserCreatedLoomVideoCommentUnion = LoomComment;
|
|
46362
46341
|
export declare type GraphStoreSimplifiedUserCreatedLoomVideoConnection = HasPageInfo & {
|
|
46363
46342
|
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoConnection';
|
|
46364
46343
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoEdge>>>;
|
|
@@ -46499,6 +46478,34 @@ export declare type GraphStoreSimplifiedUserCreatedRepositoryInverseEdge = {
|
|
|
46499
46478
|
};
|
|
46500
46479
|
export declare type GraphStoreSimplifiedUserCreatedRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
46501
46480
|
export declare type GraphStoreSimplifiedUserCreatedRepositoryUnion = ExternalRepository;
|
|
46481
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoCommentConnection = HasPageInfo & {
|
|
46482
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedVideoCommentConnection';
|
|
46483
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedVideoCommentEdge>>>;
|
|
46484
|
+
pageInfo: PageInfo;
|
|
46485
|
+
};
|
|
46486
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoCommentEdge = {
|
|
46487
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedVideoCommentEdge';
|
|
46488
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46489
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46490
|
+
id: Scalars['ID']['output'];
|
|
46491
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46492
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedVideoCommentUnion>;
|
|
46493
|
+
};
|
|
46494
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoCommentInverseConnection = HasPageInfo & {
|
|
46495
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedVideoCommentInverseConnection';
|
|
46496
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedVideoCommentInverseEdge>>>;
|
|
46497
|
+
pageInfo: PageInfo;
|
|
46498
|
+
};
|
|
46499
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoCommentInverseEdge = {
|
|
46500
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedVideoCommentInverseEdge';
|
|
46501
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46502
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46503
|
+
id: Scalars['ID']['output'];
|
|
46504
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46505
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedVideoCommentInverseUnion>;
|
|
46506
|
+
};
|
|
46507
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46508
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoCommentUnion = LoomComment;
|
|
46502
46509
|
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection = HasPageInfo & {
|
|
46503
46510
|
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection';
|
|
46504
46511
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostEdge>>>;
|
|
@@ -46899,6 +46906,34 @@ export declare type GraphStoreSimplifiedUserMentionedInMessageInverseEdge = {
|
|
|
46899
46906
|
};
|
|
46900
46907
|
export declare type GraphStoreSimplifiedUserMentionedInMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
46901
46908
|
export declare type GraphStoreSimplifiedUserMentionedInMessageUnion = ExternalMessage;
|
|
46909
|
+
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentConnection = HasPageInfo & {
|
|
46910
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInVideoCommentConnection';
|
|
46911
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentEdge>>>;
|
|
46912
|
+
pageInfo: PageInfo;
|
|
46913
|
+
};
|
|
46914
|
+
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentEdge = {
|
|
46915
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInVideoCommentEdge';
|
|
46916
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46917
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46918
|
+
id: Scalars['ID']['output'];
|
|
46919
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46920
|
+
node?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentUnion>;
|
|
46921
|
+
};
|
|
46922
|
+
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentInverseConnection = HasPageInfo & {
|
|
46923
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInVideoCommentInverseConnection';
|
|
46924
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentInverseEdge>>>;
|
|
46925
|
+
pageInfo: PageInfo;
|
|
46926
|
+
};
|
|
46927
|
+
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentInverseEdge = {
|
|
46928
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInVideoCommentInverseEdge';
|
|
46929
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46930
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46931
|
+
id: Scalars['ID']['output'];
|
|
46932
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46933
|
+
node?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentInverseUnion>;
|
|
46934
|
+
};
|
|
46935
|
+
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46936
|
+
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentUnion = LoomComment;
|
|
46902
46937
|
export declare type GraphStoreSimplifiedUserMergedPullRequestConnection = HasPageInfo & {
|
|
46903
46938
|
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestConnection';
|
|
46904
46939
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMergedPullRequestEdge>>>;
|
|
@@ -47295,34 +47330,6 @@ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge = {
|
|
|
47295
47330
|
};
|
|
47296
47331
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47297
47332
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
47298
|
-
export declare type GraphStoreSimplifiedUserTaggedInLoomVideoCommentConnection = HasPageInfo & {
|
|
47299
|
-
__typename?: 'GraphStoreSimplifiedUserTaggedInLoomVideoCommentConnection';
|
|
47300
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentEdge>>>;
|
|
47301
|
-
pageInfo: PageInfo;
|
|
47302
|
-
};
|
|
47303
|
-
export declare type GraphStoreSimplifiedUserTaggedInLoomVideoCommentEdge = {
|
|
47304
|
-
__typename?: 'GraphStoreSimplifiedUserTaggedInLoomVideoCommentEdge';
|
|
47305
|
-
createdAt: Scalars['DateTime']['output'];
|
|
47306
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
47307
|
-
id: Scalars['ID']['output'];
|
|
47308
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
47309
|
-
node?: Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentUnion>;
|
|
47310
|
-
};
|
|
47311
|
-
export declare type GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseConnection = HasPageInfo & {
|
|
47312
|
-
__typename?: 'GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseConnection';
|
|
47313
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseEdge>>>;
|
|
47314
|
-
pageInfo: PageInfo;
|
|
47315
|
-
};
|
|
47316
|
-
export declare type GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseEdge = {
|
|
47317
|
-
__typename?: 'GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseEdge';
|
|
47318
|
-
createdAt: Scalars['DateTime']['output'];
|
|
47319
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
47320
|
-
id: Scalars['ID']['output'];
|
|
47321
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
47322
|
-
node?: Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseUnion>;
|
|
47323
|
-
};
|
|
47324
|
-
export declare type GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47325
|
-
export declare type GraphStoreSimplifiedUserTaggedInLoomVideoCommentUnion = LoomComment;
|
|
47326
47333
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
|
|
47327
47334
|
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
|
|
47328
47335
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
|
|
@@ -47701,34 +47708,6 @@ export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseEdge = {
|
|
|
47701
47708
|
};
|
|
47702
47709
|
export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47703
47710
|
export declare type GraphStoreSimplifiedUserViewedJiraIssueUnion = JiraIssue;
|
|
47704
|
-
export declare type GraphStoreSimplifiedUserViewedLoomVideoConnection = HasPageInfo & {
|
|
47705
|
-
__typename?: 'GraphStoreSimplifiedUserViewedLoomVideoConnection';
|
|
47706
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedLoomVideoEdge>>>;
|
|
47707
|
-
pageInfo: PageInfo;
|
|
47708
|
-
};
|
|
47709
|
-
export declare type GraphStoreSimplifiedUserViewedLoomVideoEdge = {
|
|
47710
|
-
__typename?: 'GraphStoreSimplifiedUserViewedLoomVideoEdge';
|
|
47711
|
-
createdAt: Scalars['DateTime']['output'];
|
|
47712
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
47713
|
-
id: Scalars['ID']['output'];
|
|
47714
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
47715
|
-
node?: Maybe<GraphStoreSimplifiedUserViewedLoomVideoUnion>;
|
|
47716
|
-
};
|
|
47717
|
-
export declare type GraphStoreSimplifiedUserViewedLoomVideoInverseConnection = HasPageInfo & {
|
|
47718
|
-
__typename?: 'GraphStoreSimplifiedUserViewedLoomVideoInverseConnection';
|
|
47719
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedLoomVideoInverseEdge>>>;
|
|
47720
|
-
pageInfo: PageInfo;
|
|
47721
|
-
};
|
|
47722
|
-
export declare type GraphStoreSimplifiedUserViewedLoomVideoInverseEdge = {
|
|
47723
|
-
__typename?: 'GraphStoreSimplifiedUserViewedLoomVideoInverseEdge';
|
|
47724
|
-
createdAt: Scalars['DateTime']['output'];
|
|
47725
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
47726
|
-
id: Scalars['ID']['output'];
|
|
47727
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
47728
|
-
node?: Maybe<GraphStoreSimplifiedUserViewedLoomVideoInverseUnion>;
|
|
47729
|
-
};
|
|
47730
|
-
export declare type GraphStoreSimplifiedUserViewedLoomVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47731
|
-
export declare type GraphStoreSimplifiedUserViewedLoomVideoUnion = LoomVideo;
|
|
47732
47711
|
export declare type GraphStoreSimplifiedUserViewedProjectUpdateConnection = HasPageInfo & {
|
|
47733
47712
|
__typename?: 'GraphStoreSimplifiedUserViewedProjectUpdateConnection';
|
|
47734
47713
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedProjectUpdateEdge>>>;
|
|
@@ -47757,6 +47736,34 @@ export declare type GraphStoreSimplifiedUserViewedProjectUpdateInverseEdge = {
|
|
|
47757
47736
|
};
|
|
47758
47737
|
export declare type GraphStoreSimplifiedUserViewedProjectUpdateInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47759
47738
|
export declare type GraphStoreSimplifiedUserViewedProjectUpdateUnion = TownsquareProjectUpdate;
|
|
47739
|
+
export declare type GraphStoreSimplifiedUserViewedVideoConnection = HasPageInfo & {
|
|
47740
|
+
__typename?: 'GraphStoreSimplifiedUserViewedVideoConnection';
|
|
47741
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedVideoEdge>>>;
|
|
47742
|
+
pageInfo: PageInfo;
|
|
47743
|
+
};
|
|
47744
|
+
export declare type GraphStoreSimplifiedUserViewedVideoEdge = {
|
|
47745
|
+
__typename?: 'GraphStoreSimplifiedUserViewedVideoEdge';
|
|
47746
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47747
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47748
|
+
id: Scalars['ID']['output'];
|
|
47749
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47750
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedVideoUnion>;
|
|
47751
|
+
};
|
|
47752
|
+
export declare type GraphStoreSimplifiedUserViewedVideoInverseConnection = HasPageInfo & {
|
|
47753
|
+
__typename?: 'GraphStoreSimplifiedUserViewedVideoInverseConnection';
|
|
47754
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedVideoInverseEdge>>>;
|
|
47755
|
+
pageInfo: PageInfo;
|
|
47756
|
+
};
|
|
47757
|
+
export declare type GraphStoreSimplifiedUserViewedVideoInverseEdge = {
|
|
47758
|
+
__typename?: 'GraphStoreSimplifiedUserViewedVideoInverseEdge';
|
|
47759
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47760
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47761
|
+
id: Scalars['ID']['output'];
|
|
47762
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47763
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedVideoInverseUnion>;
|
|
47764
|
+
};
|
|
47765
|
+
export declare type GraphStoreSimplifiedUserViewedVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47766
|
+
export declare type GraphStoreSimplifiedUserViewedVideoUnion = LoomVideo;
|
|
47760
47767
|
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection = HasPageInfo & {
|
|
47761
47768
|
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection';
|
|
47762
47769
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostEdge>>>;
|
|
@@ -48185,6 +48192,34 @@ export declare type GraphStoreSimplifiedVideoHasCommentInverseEdge = {
|
|
|
48185
48192
|
};
|
|
48186
48193
|
export declare type GraphStoreSimplifiedVideoHasCommentInverseUnion = LoomVideo;
|
|
48187
48194
|
export declare type GraphStoreSimplifiedVideoHasCommentUnion = LoomComment;
|
|
48195
|
+
export declare type GraphStoreSimplifiedVideoSharedWithUserConnection = HasPageInfo & {
|
|
48196
|
+
__typename?: 'GraphStoreSimplifiedVideoSharedWithUserConnection';
|
|
48197
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVideoSharedWithUserEdge>>>;
|
|
48198
|
+
pageInfo: PageInfo;
|
|
48199
|
+
};
|
|
48200
|
+
export declare type GraphStoreSimplifiedVideoSharedWithUserEdge = {
|
|
48201
|
+
__typename?: 'GraphStoreSimplifiedVideoSharedWithUserEdge';
|
|
48202
|
+
createdAt: Scalars['DateTime']['output'];
|
|
48203
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48204
|
+
id: Scalars['ID']['output'];
|
|
48205
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
48206
|
+
node?: Maybe<GraphStoreSimplifiedVideoSharedWithUserUnion>;
|
|
48207
|
+
};
|
|
48208
|
+
export declare type GraphStoreSimplifiedVideoSharedWithUserInverseConnection = HasPageInfo & {
|
|
48209
|
+
__typename?: 'GraphStoreSimplifiedVideoSharedWithUserInverseConnection';
|
|
48210
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVideoSharedWithUserInverseEdge>>>;
|
|
48211
|
+
pageInfo: PageInfo;
|
|
48212
|
+
};
|
|
48213
|
+
export declare type GraphStoreSimplifiedVideoSharedWithUserInverseEdge = {
|
|
48214
|
+
__typename?: 'GraphStoreSimplifiedVideoSharedWithUserInverseEdge';
|
|
48215
|
+
createdAt: Scalars['DateTime']['output'];
|
|
48216
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48217
|
+
id: Scalars['ID']['output'];
|
|
48218
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
48219
|
+
node?: Maybe<GraphStoreSimplifiedVideoSharedWithUserInverseUnion>;
|
|
48220
|
+
};
|
|
48221
|
+
export declare type GraphStoreSimplifiedVideoSharedWithUserInverseUnion = LoomVideo;
|
|
48222
|
+
export declare type GraphStoreSimplifiedVideoSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
48188
48223
|
export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueConnection = HasPageInfo & HasTotal & {
|
|
48189
48224
|
__typename?: 'GraphStoreSimplifiedVulnerabilityAssociatedIssueConnection';
|
|
48190
48225
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueEdge>>>;
|
|
@@ -48598,6 +48633,8 @@ export declare type GraphStoreUserAttendedCalendarEventConditionalFilterInput =
|
|
|
48598
48633
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48599
48634
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
48600
48635
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48636
|
+
to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
48637
|
+
to_eventStartTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
48601
48638
|
};
|
|
48602
48639
|
export declare type GraphStoreUserAttendedCalendarEventFilterInput = {
|
|
48603
48640
|
and?: InputMaybe<Array<InputMaybe<GraphStoreUserAttendedCalendarEventConditionalFilterInput>>>;
|
|
@@ -48608,6 +48645,8 @@ export declare type GraphStoreUserAttendedCalendarEventSortInput = {
|
|
|
48608
48645
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
48609
48646
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48610
48647
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
48648
|
+
to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
|
|
48649
|
+
to_eventStartTime?: InputMaybe<GraphStoreSortInput>;
|
|
48611
48650
|
};
|
|
48612
48651
|
export declare type GraphStoreUserAuthoredCommitSortInput = {
|
|
48613
48652
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -48665,6 +48704,8 @@ export declare type GraphStoreUserCreatedCalendarEventConditionalFilterInput = {
|
|
|
48665
48704
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48666
48705
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
48667
48706
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48707
|
+
to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
48708
|
+
to_eventStartTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
48668
48709
|
};
|
|
48669
48710
|
export declare type GraphStoreUserCreatedCalendarEventFilterInput = {
|
|
48670
48711
|
and?: InputMaybe<Array<InputMaybe<GraphStoreUserCreatedCalendarEventConditionalFilterInput>>>;
|
|
@@ -48675,6 +48716,8 @@ export declare type GraphStoreUserCreatedCalendarEventSortInput = {
|
|
|
48675
48716
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
48676
48717
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48677
48718
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
48719
|
+
to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
|
|
48720
|
+
to_eventStartTime?: InputMaybe<GraphStoreSortInput>;
|
|
48678
48721
|
};
|
|
48679
48722
|
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
48680
48723
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -48706,9 +48749,6 @@ export declare type GraphStoreUserCreatedIssueCommentSortInput = {
|
|
|
48706
48749
|
export declare type GraphStoreUserCreatedIssueWorklogSortInput = {
|
|
48707
48750
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48708
48751
|
};
|
|
48709
|
-
export declare type GraphStoreUserCreatedLoomVideoCommentSortInput = {
|
|
48710
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48711
|
-
};
|
|
48712
48752
|
export declare type GraphStoreUserCreatedLoomVideoSortInput = {
|
|
48713
48753
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48714
48754
|
};
|
|
@@ -48724,6 +48764,9 @@ export declare type GraphStoreUserCreatedRemoteLinkSortInput = {
|
|
|
48724
48764
|
export declare type GraphStoreUserCreatedRepositorySortInput = {
|
|
48725
48765
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48726
48766
|
};
|
|
48767
|
+
export declare type GraphStoreUserCreatedVideoCommentSortInput = {
|
|
48768
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48769
|
+
};
|
|
48727
48770
|
export declare type GraphStoreUserFavoritedConfluenceBlogpostSortInput = {
|
|
48728
48771
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48729
48772
|
};
|
|
@@ -48790,6 +48833,9 @@ export declare type GraphStoreUserMentionedInConversationSortInput = {
|
|
|
48790
48833
|
export declare type GraphStoreUserMentionedInMessageSortInput = {
|
|
48791
48834
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48792
48835
|
};
|
|
48836
|
+
export declare type GraphStoreUserMentionedInVideoCommentSortInput = {
|
|
48837
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48838
|
+
};
|
|
48793
48839
|
export declare type GraphStoreUserMergedPullRequestSortInput = {
|
|
48794
48840
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48795
48841
|
};
|
|
@@ -48845,9 +48891,6 @@ export declare type GraphStoreUserTaggedInConfluencePageSortInput = {
|
|
|
48845
48891
|
export declare type GraphStoreUserTaggedInIssueCommentSortInput = {
|
|
48846
48892
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48847
48893
|
};
|
|
48848
|
-
export declare type GraphStoreUserTaggedInLoomVideoCommentSortInput = {
|
|
48849
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48850
|
-
};
|
|
48851
48894
|
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
48852
48895
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48853
48896
|
};
|
|
@@ -48890,10 +48933,10 @@ export declare type GraphStoreUserViewedGoalUpdateSortInput = {
|
|
|
48890
48933
|
export declare type GraphStoreUserViewedJiraIssueSortInput = {
|
|
48891
48934
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48892
48935
|
};
|
|
48893
|
-
export declare type
|
|
48936
|
+
export declare type GraphStoreUserViewedProjectUpdateSortInput = {
|
|
48894
48937
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48895
48938
|
};
|
|
48896
|
-
export declare type
|
|
48939
|
+
export declare type GraphStoreUserViewedVideoSortInput = {
|
|
48897
48940
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48898
48941
|
};
|
|
48899
48942
|
export declare type GraphStoreUserWatchesConfluenceBlogpostSortInput = {
|
|
@@ -49004,6 +49047,9 @@ export declare type GraphStoreVersionUserAssociatedFeatureFlagSortInput = {
|
|
|
49004
49047
|
export declare type GraphStoreVideoHasCommentSortInput = {
|
|
49005
49048
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49006
49049
|
};
|
|
49050
|
+
export declare type GraphStoreVideoSharedWithUserSortInput = {
|
|
49051
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49052
|
+
};
|
|
49007
49053
|
export declare type GraphStoreVulnerabilityAssociatedIssueContainerSortInput = {
|
|
49008
49054
|
containerAri?: InputMaybe<GraphStoreSortInput>;
|
|
49009
49055
|
};
|
|
@@ -54906,6 +54952,7 @@ export declare type JiraCreateCalendarIssuePayload = Payload & {
|
|
|
54906
54952
|
};
|
|
54907
54953
|
export declare type JiraCreateCustomBackgroundInput = {
|
|
54908
54954
|
altText: Scalars['String']['input'];
|
|
54955
|
+
dominantColor?: InputMaybe<Scalars['String']['input']>;
|
|
54909
54956
|
entityId: Scalars['ID']['input'];
|
|
54910
54957
|
mediaApiFileId: Scalars['String']['input'];
|
|
54911
54958
|
};
|
|
@@ -55056,6 +55103,8 @@ export declare type JiraCustomBackground = {
|
|
|
55056
55103
|
__typename?: 'JiraCustomBackground';
|
|
55057
55104
|
activeCount?: Maybe<Scalars['Long']['output']>;
|
|
55058
55105
|
altText?: Maybe<Scalars['String']['output']>;
|
|
55106
|
+
brightness?: Maybe<JiraCustomBackgroundBrightness>;
|
|
55107
|
+
dominantColor?: Maybe<Scalars['String']['output']>;
|
|
55059
55108
|
id?: Maybe<Scalars['ID']['output']>;
|
|
55060
55109
|
mediaApiFileId?: Maybe<Scalars['String']['output']>;
|
|
55061
55110
|
mediaReadToken?: Maybe<Scalars['String']['output']>;
|
|
@@ -55065,6 +55114,10 @@ export declare type JiraCustomBackground = {
|
|
|
55065
55114
|
export declare type JiraCustomBackgroundMediaReadTokenArgs = {
|
|
55066
55115
|
durationInSeconds: Scalars['Int']['input'];
|
|
55067
55116
|
};
|
|
55117
|
+
export declare enum JiraCustomBackgroundBrightness {
|
|
55118
|
+
Dark = "DARK",
|
|
55119
|
+
Light = "LIGHT"
|
|
55120
|
+
}
|
|
55068
55121
|
export declare type JiraCustomBackgroundConnection = {
|
|
55069
55122
|
__typename?: 'JiraCustomBackgroundConnection';
|
|
55070
55123
|
edges?: Maybe<Array<Maybe<JiraCustomBackgroundEdge>>>;
|
|
@@ -55083,6 +55136,26 @@ export declare type JiraCustomFieldOptionInput = {
|
|
|
55083
55136
|
parentOptionId?: InputMaybe<Scalars['Long']['input']>;
|
|
55084
55137
|
value: Scalars['String']['input'];
|
|
55085
55138
|
};
|
|
55139
|
+
export declare type JiraCustomFieldUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
55140
|
+
__typename?: 'JiraCustomFieldUsageMetric';
|
|
55141
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
55142
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
55143
|
+
globalScopedCustomFieldsCount?: Maybe<Scalars['Long']['output']>;
|
|
55144
|
+
id: Scalars['ID']['output'];
|
|
55145
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
55146
|
+
projectScopedCustomFieldsCount?: Maybe<Scalars['Long']['output']>;
|
|
55147
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
55148
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
55149
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
55150
|
+
};
|
|
55151
|
+
export declare type JiraCustomFieldUsageMetricValuesArgs = {
|
|
55152
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55153
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
55154
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55155
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
55156
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
55157
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
55158
|
+
};
|
|
55086
55159
|
export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
55087
55160
|
__typename?: 'JiraCustomFilter';
|
|
55088
55161
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -55425,7 +55498,7 @@ export declare enum JiraDeploymentsFeaturePrecondition {
|
|
|
55425
55498
|
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
|
|
55426
55499
|
NotAvailable = "NOT_AVAILABLE"
|
|
55427
55500
|
}
|
|
55428
|
-
export declare type JiraDetailedView = JiraIssueSearchViewMetadata &
|
|
55501
|
+
export declare type JiraDetailedView = JiraIssueSearchViewMetadata & JiraView & Node & {
|
|
55429
55502
|
__typename?: 'JiraDetailedView';
|
|
55430
55503
|
error?: Maybe<QueryError>;
|
|
55431
55504
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -56780,6 +56853,24 @@ export declare type JiraGenericIssueField = JiraIssueField & JiraIssueFieldConfi
|
|
|
56780
56853
|
name: Scalars['String']['output'];
|
|
56781
56854
|
type: Scalars['String']['output'];
|
|
56782
56855
|
};
|
|
56856
|
+
export declare type JiraGenericResourceUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
56857
|
+
__typename?: 'JiraGenericResourceUsageMetric';
|
|
56858
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
56859
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
56860
|
+
id: Scalars['ID']['output'];
|
|
56861
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
56862
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
56863
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
56864
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
56865
|
+
};
|
|
56866
|
+
export declare type JiraGenericResourceUsageMetricValuesArgs = {
|
|
56867
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
56868
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
56869
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
56870
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
56871
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
56872
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
56873
|
+
};
|
|
56783
56874
|
export declare enum JiraGlobalIssueCreateView {
|
|
56784
56875
|
FullModal = "FULL_MODAL",
|
|
56785
56876
|
MiniModal = "MINI_MODAL"
|
|
@@ -56946,7 +57037,7 @@ export declare type JiraGroupGrantTypeValue = Node & {
|
|
|
56946
57037
|
export declare type JiraGroupInput = {
|
|
56947
57038
|
groupName: Scalars['ID']['input'];
|
|
56948
57039
|
};
|
|
56949
|
-
export declare type JiraGroupedListView = JiraIssueSearchViewMetadata &
|
|
57040
|
+
export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
56950
57041
|
__typename?: 'JiraGroupedListView';
|
|
56951
57042
|
error?: Maybe<QueryError>;
|
|
56952
57043
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -58415,6 +58506,18 @@ export declare type JiraIssueSearchViewContexts = {
|
|
|
58415
58506
|
__typename?: 'JiraIssueSearchViewContexts';
|
|
58416
58507
|
contexts?: Maybe<Array<JiraIssueSearchViewContextMapping>>;
|
|
58417
58508
|
errors?: Maybe<Array<QueryError>>;
|
|
58509
|
+
issueId?: Maybe<Scalars['String']['output']>;
|
|
58510
|
+
};
|
|
58511
|
+
export declare type JiraIssueSearchViewContextsConnection = {
|
|
58512
|
+
__typename?: 'JiraIssueSearchViewContextsConnection';
|
|
58513
|
+
edges?: Maybe<Array<Maybe<JiraIssueSearchViewContextsEdge>>>;
|
|
58514
|
+
pageInfo: PageInfo;
|
|
58515
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
58516
|
+
};
|
|
58517
|
+
export declare type JiraIssueSearchViewContextsEdge = {
|
|
58518
|
+
__typename?: 'JiraIssueSearchViewContextsEdge';
|
|
58519
|
+
cursor: Scalars['String']['output'];
|
|
58520
|
+
node?: Maybe<JiraIssueSearchViewContexts>;
|
|
58418
58521
|
};
|
|
58419
58522
|
export declare type JiraIssueSearchViewFieldSetsContext = {
|
|
58420
58523
|
issueContext?: InputMaybe<JiraIssueSearchViewFieldSetsIssueContext>;
|
|
@@ -58456,10 +58559,6 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
58456
58559
|
view?: Maybe<JiraIssueSearchView>;
|
|
58457
58560
|
};
|
|
58458
58561
|
export declare type JiraIssueSearchViewResult = JiraIssueSearchView | QueryError;
|
|
58459
|
-
export declare type JiraIssueSearchViewType = {
|
|
58460
|
-
error?: Maybe<QueryError>;
|
|
58461
|
-
id: Scalars['ID']['output'];
|
|
58462
|
-
};
|
|
58463
58562
|
export declare type JiraIssueTransitionComment = {
|
|
58464
58563
|
__typename?: 'JiraIssueTransitionComment';
|
|
58465
58564
|
adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
|
|
@@ -59546,7 +59645,7 @@ export declare type JiraLinkedIssuesInput = {
|
|
|
59546
59645
|
inwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
59547
59646
|
outwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
59548
59647
|
};
|
|
59549
|
-
export declare type JiraListView = JiraIssueSearchViewMetadata &
|
|
59648
|
+
export declare type JiraListView = JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
59550
59649
|
__typename?: 'JiraListView';
|
|
59551
59650
|
error?: Maybe<QueryError>;
|
|
59552
59651
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -62904,6 +63003,7 @@ export declare type JiraQuery = {
|
|
|
62904
63003
|
resourceUsageCustomFieldRecommendations?: Maybe<JiraResourceUsageCustomFieldRecommendationConnection>;
|
|
62905
63004
|
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
62906
63005
|
resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
|
|
63006
|
+
resourceUsageMetricV2?: Maybe<JiraResourceUsageMetricV2>;
|
|
62907
63007
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
62908
63008
|
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
62909
63009
|
savedFilters?: Maybe<JiraFilterConnection>;
|
|
@@ -62911,6 +63011,7 @@ export declare type JiraQuery = {
|
|
|
62911
63011
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
62912
63012
|
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
62913
63013
|
searchUserTeamMention?: Maybe<JiraMentionableConnection>;
|
|
63014
|
+
searchViewContexts?: Maybe<JiraIssueSearchViewContextsConnection>;
|
|
62914
63015
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
62915
63016
|
sprintById?: Maybe<JiraSprint>;
|
|
62916
63017
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
@@ -63722,6 +63823,10 @@ export declare type JiraQueryResourceUsageMetricArgs = {
|
|
|
63722
63823
|
export declare type JiraQueryResourceUsageMetricByIdArgs = {
|
|
63723
63824
|
id: Scalars['ID']['input'];
|
|
63724
63825
|
};
|
|
63826
|
+
export declare type JiraQueryResourceUsageMetricV2Args = {
|
|
63827
|
+
cloudId: Scalars['ID']['input'];
|
|
63828
|
+
metricKey: Scalars['String']['input'];
|
|
63829
|
+
};
|
|
63725
63830
|
export declare type JiraQueryResourceUsageMetricsArgs = {
|
|
63726
63831
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63727
63832
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -63759,6 +63864,15 @@ export declare type JiraQuerySearchUserTeamMentionArgs = {
|
|
|
63759
63864
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
63760
63865
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
63761
63866
|
};
|
|
63867
|
+
export declare type JiraQuerySearchViewContextsArgs = {
|
|
63868
|
+
cloudId: Scalars['ID']['input'];
|
|
63869
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63870
|
+
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63871
|
+
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63872
|
+
issueIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
63873
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
63874
|
+
searchViewContextInput: JiraIssueSearchViewContextInput;
|
|
63875
|
+
};
|
|
63762
63876
|
export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
63763
63877
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
63764
63878
|
cloudId: Scalars['ID']['input'];
|
|
@@ -64414,6 +64528,23 @@ export declare type JiraResourceUsageMetricEdge = {
|
|
|
64414
64528
|
cursor: Scalars['String']['output'];
|
|
64415
64529
|
node?: Maybe<JiraResourceUsageMetric>;
|
|
64416
64530
|
};
|
|
64531
|
+
export declare type JiraResourceUsageMetricV2 = {
|
|
64532
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
64533
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
64534
|
+
id: Scalars['ID']['output'];
|
|
64535
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
64536
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
64537
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
64538
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
64539
|
+
};
|
|
64540
|
+
export declare type JiraResourceUsageMetricV2ValuesArgs = {
|
|
64541
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64542
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
64543
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64544
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
64545
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64546
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
64547
|
+
};
|
|
64417
64548
|
export declare type JiraResourceUsageMetricValue = {
|
|
64418
64549
|
__typename?: 'JiraResourceUsageMetricValue';
|
|
64419
64550
|
date?: Maybe<Scalars['Date']['output']>;
|
|
@@ -67258,6 +67389,7 @@ export declare type JiraUpdateAttachmentFieldInput = {
|
|
|
67258
67389
|
export declare type JiraUpdateBackgroundInput = {
|
|
67259
67390
|
backgroundType: JiraBackgroundType;
|
|
67260
67391
|
backgroundValue: Scalars['String']['input'];
|
|
67392
|
+
dominantColor?: InputMaybe<Scalars['String']['input']>;
|
|
67261
67393
|
entityId: Scalars['ID']['input'];
|
|
67262
67394
|
};
|
|
67263
67395
|
export declare type JiraUpdateCascadingSelectFieldInput = {
|
|
@@ -70928,6 +71060,11 @@ export declare type LoomToken = {
|
|
|
70928
71060
|
__typename?: 'LoomToken';
|
|
70929
71061
|
token: Scalars['String']['output'];
|
|
70930
71062
|
};
|
|
71063
|
+
export declare type LoomUserPrimaryAuthType = {
|
|
71064
|
+
__typename?: 'LoomUserPrimaryAuthType';
|
|
71065
|
+
authType: Scalars['String']['output'];
|
|
71066
|
+
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
71067
|
+
};
|
|
70931
71068
|
export declare enum LoomUserStatus {
|
|
70932
71069
|
Linked = "LINKED",
|
|
70933
71070
|
LinkedEnterprise = "LINKED_ENTERPRISE",
|
|
@@ -71371,13 +71508,6 @@ export declare enum MarketplaceConsoleAsvlLegacyVersionStatus {
|
|
|
71371
71508
|
Private = "PRIVATE",
|
|
71372
71509
|
Public = "PUBLIC"
|
|
71373
71510
|
}
|
|
71374
|
-
export declare type MarketplaceConsoleAppPrivateListingsPageInfo = {
|
|
71375
|
-
__typename?: 'MarketplaceConsoleAppPrivateListingsPageInfo';
|
|
71376
|
-
endCursor: Scalars['String']['output'];
|
|
71377
|
-
hasNextPage: Scalars['Boolean']['output'];
|
|
71378
|
-
hasPreviousPage: Scalars['Boolean']['output'];
|
|
71379
|
-
startCursor: Scalars['String']['output'];
|
|
71380
|
-
};
|
|
71381
71511
|
export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
71382
71512
|
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
71383
71513
|
appKey: Scalars['ID']['output'];
|
|
@@ -71957,6 +72087,7 @@ export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
|
71957
72087
|
product: MarketplaceConsoleEditionsInput;
|
|
71958
72088
|
};
|
|
71959
72089
|
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
72090
|
+
appId: Scalars['String']['input'];
|
|
71960
72091
|
appSoftwareId: Scalars['String']['input'];
|
|
71961
72092
|
};
|
|
71962
72093
|
export declare type MarketplaceConsoleMutationApiCreateEcoHelpTicketArgs = {
|
|
@@ -72128,22 +72259,14 @@ export declare enum MarketplaceConsolePricingPlanStatus {
|
|
|
72128
72259
|
Live = "LIVE",
|
|
72129
72260
|
Pending = "PENDING"
|
|
72130
72261
|
}
|
|
72131
|
-
export declare type MarketplaceConsolePrivateListings = {
|
|
72132
|
-
__typename?: 'MarketplaceConsolePrivateListings';
|
|
72133
|
-
appSoftwareId: Scalars['ID']['output'];
|
|
72134
|
-
edges: Array<MarketplaceConsolePrivateListingsTokenDetails>;
|
|
72135
|
-
pageInfo: MarketplaceConsoleAppPrivateListingsPageInfo;
|
|
72136
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
72137
|
-
};
|
|
72138
72262
|
export declare type MarketplaceConsolePrivateListingsLink = {
|
|
72139
72263
|
__typename?: 'MarketplaceConsolePrivateListingsLink';
|
|
72140
|
-
|
|
72264
|
+
descriptor: Scalars['String']['output'];
|
|
72141
72265
|
versionNumber: Scalars['String']['output'];
|
|
72142
72266
|
};
|
|
72143
|
-
export declare type
|
|
72144
|
-
__typename?: '
|
|
72145
|
-
|
|
72146
|
-
node: MarketplaceConsoleTokenDetails;
|
|
72267
|
+
export declare type MarketplaceConsolePrivateListingsTokens = {
|
|
72268
|
+
__typename?: 'MarketplaceConsolePrivateListingsTokens';
|
|
72269
|
+
tokens: Array<Maybe<MarketplaceConsoleTokenDetails>>;
|
|
72147
72270
|
};
|
|
72148
72271
|
export declare type MarketplaceConsoleProduct = {
|
|
72149
72272
|
__typename?: 'MarketplaceConsoleProduct';
|
|
@@ -72170,6 +72293,7 @@ export declare type MarketplaceConsoleProductListing = {
|
|
|
72170
72293
|
marketplaceAppName: Scalars['String']['output'];
|
|
72171
72294
|
productId: Scalars['ID']['output'];
|
|
72172
72295
|
segmentWriteKey?: Maybe<Scalars['String']['output']>;
|
|
72296
|
+
slug: Scalars['String']['output'];
|
|
72173
72297
|
summary?: Maybe<Scalars['String']['output']>;
|
|
72174
72298
|
tagLine?: Maybe<Scalars['String']['output']>;
|
|
72175
72299
|
tags?: Maybe<MarketplaceConsoleProductListingTags>;
|
|
@@ -72216,7 +72340,7 @@ export declare type MarketplaceConsoleProductTags = {
|
|
|
72216
72340
|
};
|
|
72217
72341
|
export declare type MarketplaceConsoleQueryApi = {
|
|
72218
72342
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
72219
|
-
appPrivateListings?: Maybe<
|
|
72343
|
+
appPrivateListings?: Maybe<MarketplaceConsolePrivateListingsTokens>;
|
|
72220
72344
|
appSoftwareVersionByAppId?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
72221
72345
|
appSoftwareVersionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
72222
72346
|
appSoftwareVersionsByAppId?: Maybe<Array<MarketplaceConsoleAppSoftwareVersion>>;
|
|
@@ -72241,9 +72365,8 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
72241
72365
|
productTags?: Maybe<MarketplaceConsoleProductTags>;
|
|
72242
72366
|
};
|
|
72243
72367
|
export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
|
|
72244
|
-
|
|
72368
|
+
appId: Scalars['ID']['input'];
|
|
72245
72369
|
appSoftwareId: Scalars['ID']['input'];
|
|
72246
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
72247
72370
|
};
|
|
72248
72371
|
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionByAppIdArgs = {
|
|
72249
72372
|
appId: Scalars['ID']['input'];
|
|
@@ -72342,7 +72465,8 @@ export declare type MarketplaceConsoleTagsContent = {
|
|
|
72342
72465
|
export declare type MarketplaceConsoleTokenDetails = {
|
|
72343
72466
|
__typename?: 'MarketplaceConsoleTokenDetails';
|
|
72344
72467
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
72345
|
-
|
|
72468
|
+
instance?: Maybe<Scalars['String']['output']>;
|
|
72469
|
+
links: Array<Maybe<MarketplaceConsolePrivateListingsLink>>;
|
|
72346
72470
|
token: Scalars['String']['output'];
|
|
72347
72471
|
};
|
|
72348
72472
|
export declare type MarketplaceConsoleUpdateAppDetailsRequest = {
|
|
@@ -73665,6 +73789,7 @@ export declare type MercuryFocusAreaActivityHistory = Node & {
|
|
|
73665
73789
|
fields?: Maybe<Array<Maybe<MercuryUpdatedField>>>;
|
|
73666
73790
|
fieldsChanged?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
73667
73791
|
focusAreaId?: Maybe<Scalars['String']['output']>;
|
|
73792
|
+
focusAreaName?: Maybe<Scalars['String']['output']>;
|
|
73668
73793
|
id: Scalars['ID']['output'];
|
|
73669
73794
|
user?: Maybe<User>;
|
|
73670
73795
|
};
|
|
@@ -79941,6 +80066,7 @@ export declare type Query = {
|
|
|
79941
80066
|
appLogs?: Maybe<AppLogConnection>;
|
|
79942
80067
|
appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
|
|
79943
80068
|
appStorage_sqlDatabase?: Maybe<AppStorageSqlDatabasePayload>;
|
|
80069
|
+
appStorage_sqlTableData?: Maybe<AppStorageSqlTableDataPayload>;
|
|
79944
80070
|
appStoredCustomEntities?: Maybe<AppStoredCustomEntityConnection>;
|
|
79945
80071
|
appStoredCustomEntity?: Maybe<AppStoredCustomEntity>;
|
|
79946
80072
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
@@ -80402,6 +80528,7 @@ export declare type Query = {
|
|
|
80402
80528
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
80403
80529
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
80404
80530
|
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
80531
|
+
loom_primaryAuthTypeForEmail?: Maybe<LoomUserPrimaryAuthType>;
|
|
80405
80532
|
loom_settings?: Maybe<LoomSettings>;
|
|
80406
80533
|
loom_space?: Maybe<LoomSpace>;
|
|
80407
80534
|
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
@@ -80571,6 +80698,7 @@ export declare type Query = {
|
|
|
80571
80698
|
totalSearchCTR?: Maybe<TotalSearchCtr>;
|
|
80572
80699
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
80573
80700
|
townsquareUnsharded_allWorkspaceSummariesForOrg?: Maybe<TownsquareUnshardedWorkspaceSummaryConnection>;
|
|
80701
|
+
townsquareUnsharded_fusionConfigByJiraIssueAris?: Maybe<Array<Maybe<TownsquareUnshardedFusionConfigForJiraIssueAri>>>;
|
|
80574
80702
|
traceTiming?: Maybe<TraceTiming>;
|
|
80575
80703
|
trello: TrelloQueryApi;
|
|
80576
80704
|
unified?: Maybe<UnifiedQuery>;
|
|
@@ -80717,6 +80845,9 @@ export declare type QueryAppLogsWithMetaDataArgs = {
|
|
|
80717
80845
|
export declare type QueryAppStorage_SqlDatabaseArgs = {
|
|
80718
80846
|
input: AppStorageSqlDatabaseInput;
|
|
80719
80847
|
};
|
|
80848
|
+
export declare type QueryAppStorage_SqlTableDataArgs = {
|
|
80849
|
+
input: AppStorageSqlTableDataInput;
|
|
80850
|
+
};
|
|
80720
80851
|
export declare type QueryAppStoredCustomEntitiesArgs = {
|
|
80721
80852
|
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
80722
80853
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -82582,6 +82713,9 @@ export declare type QueryLoom_MeetingRecurrencesArgs = {
|
|
|
82582
82713
|
export declare type QueryLoom_MeetingsArgs = {
|
|
82583
82714
|
ids: Array<Scalars['ID']['input']>;
|
|
82584
82715
|
};
|
|
82716
|
+
export declare type QueryLoom_PrimaryAuthTypeForEmailArgs = {
|
|
82717
|
+
email: Scalars['String']['input'];
|
|
82718
|
+
};
|
|
82585
82719
|
export declare type QueryLoom_SettingsArgs = {
|
|
82586
82720
|
siteId: Scalars['ID']['input'];
|
|
82587
82721
|
};
|
|
@@ -83233,6 +83367,9 @@ export declare type QueryTownsquareUnsharded_AllWorkspaceSummariesForOrgArgs = {
|
|
|
83233
83367
|
cloudId: Scalars['String']['input'];
|
|
83234
83368
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83235
83369
|
};
|
|
83370
|
+
export declare type QueryTownsquareUnsharded_FusionConfigByJiraIssueArisArgs = {
|
|
83371
|
+
jiraIssueAris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
83372
|
+
};
|
|
83236
83373
|
export declare type QueryUserArgs = {
|
|
83237
83374
|
accountId: Scalars['ID']['input'];
|
|
83238
83375
|
};
|
|
@@ -91237,6 +91374,11 @@ export declare enum TownsquareUnshardedCapabilityContainer {
|
|
|
91237
91374
|
GoalsApp = "GOALS_APP",
|
|
91238
91375
|
ProjectsApp = "PROJECTS_APP"
|
|
91239
91376
|
}
|
|
91377
|
+
export declare type TownsquareUnshardedFusionConfigForJiraIssueAri = {
|
|
91378
|
+
__typename?: 'TownsquareUnshardedFusionConfigForJiraIssueAri';
|
|
91379
|
+
isAppEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
91380
|
+
jiraIssueAri?: Maybe<Scalars['String']['output']>;
|
|
91381
|
+
};
|
|
91240
91382
|
export declare type TownsquareUnshardedUserCapabilities = {
|
|
91241
91383
|
__typename?: 'TownsquareUnshardedUserCapabilities';
|
|
91242
91384
|
capabilities?: Maybe<Array<Maybe<TownsquareUnshardedCapability>>>;
|
|
@@ -91853,6 +91995,7 @@ export declare type TrelloCard = Node & {
|
|
|
91853
91995
|
list?: Maybe<TrelloList>;
|
|
91854
91996
|
location?: Maybe<TrelloCardLocation>;
|
|
91855
91997
|
members?: Maybe<TrelloMemberConnection>;
|
|
91998
|
+
mirrorSource?: Maybe<TrelloCard>;
|
|
91856
91999
|
mirrorSourceId?: Maybe<Scalars['ID']['output']>;
|
|
91857
92000
|
mirrorSourceNodeId?: Maybe<Scalars['String']['output']>;
|
|
91858
92001
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -92079,6 +92222,7 @@ export declare type TrelloCardUpdated = {
|
|
|
92079
92222
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92080
92223
|
location?: Maybe<TrelloCardLocation>;
|
|
92081
92224
|
members?: Maybe<TrelloMemberUpdatedConnection>;
|
|
92225
|
+
mirrorSource?: Maybe<TrelloCard>;
|
|
92082
92226
|
mirrorSourceId?: Maybe<Scalars['ID']['output']>;
|
|
92083
92227
|
mirrorSourceObjectId?: Maybe<Scalars['ID']['output']>;
|
|
92084
92228
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -92304,6 +92448,7 @@ export declare type TrelloCustomFieldItemValueInfo = {
|
|
|
92304
92448
|
date?: Maybe<Scalars['String']['output']>;
|
|
92305
92449
|
id?: Maybe<Scalars['ID']['output']>;
|
|
92306
92450
|
number?: Maybe<Scalars['Float']['output']>;
|
|
92451
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
92307
92452
|
text?: Maybe<Scalars['String']['output']>;
|
|
92308
92453
|
};
|
|
92309
92454
|
export declare type TrelloCustomFieldOption = {
|
|
@@ -92965,6 +93110,10 @@ export declare type TrelloPlannerCalendarEventsFilter = {
|
|
|
92965
93110
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
92966
93111
|
updateCursor?: InputMaybe<Scalars['String']['input']>;
|
|
92967
93112
|
};
|
|
93113
|
+
export declare type TrelloPlannerCalendarEventsUpdatedFilter = {
|
|
93114
|
+
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
93115
|
+
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
93116
|
+
};
|
|
92968
93117
|
export declare type TrelloPlannerCalendarMutated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
|
|
92969
93118
|
export declare type TrelloPlannerCalendarProviderCalendarsFilter = {
|
|
92970
93119
|
updateCursor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -92974,6 +93123,9 @@ export declare type TrelloPlannerCalendarUpdated = {
|
|
|
92974
93123
|
events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
|
|
92975
93124
|
id: Scalars['ID']['output'];
|
|
92976
93125
|
};
|
|
93126
|
+
export declare type TrelloPlannerCalendarUpdatedEventsArgs = {
|
|
93127
|
+
filter: TrelloPlannerCalendarEventsUpdatedFilter;
|
|
93128
|
+
};
|
|
92977
93129
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
92978
93130
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
92979
93131
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -93698,8 +93850,12 @@ export declare type UnifiedCachingQueryGetCachedDataArgs = {
|
|
|
93698
93850
|
};
|
|
93699
93851
|
export declare type UnifiedCommunityMutation = {
|
|
93700
93852
|
__typename?: 'UnifiedCommunityMutation';
|
|
93853
|
+
deleteCommunityData?: Maybe<UnifiedCommunityPayload>;
|
|
93701
93854
|
initializeCommunity?: Maybe<UnifiedCommunityPayload>;
|
|
93702
93855
|
};
|
|
93856
|
+
export declare type UnifiedCommunityMutationDeleteCommunityDataArgs = {
|
|
93857
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
93858
|
+
};
|
|
93703
93859
|
export declare type UnifiedCommunityMutationInitializeCommunityArgs = {
|
|
93704
93860
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
93705
93861
|
emailId?: InputMaybe<Scalars['String']['input']>;
|