@forge/cli-shared 6.6.2-next.7 → 6.7.0-next.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/out/graphql/graphql-types.d.ts +260 -204
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +30 -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'];
|
|
@@ -23649,6 +23674,7 @@ export declare type EcosystemMarketplaceConnectAppDeployment = EcosystemMarketpl
|
|
|
23649
23674
|
__typename?: 'EcosystemMarketplaceConnectAppDeployment';
|
|
23650
23675
|
descriptorUrl?: Maybe<Scalars['String']['output']>;
|
|
23651
23676
|
frameworkId: Scalars['String']['output'];
|
|
23677
|
+
scopes?: Maybe<Array<EcosystemConnectScope>>;
|
|
23652
23678
|
};
|
|
23653
23679
|
export declare type EcosystemMarketplaceData = {
|
|
23654
23680
|
__typename?: 'EcosystemMarketplaceData';
|
|
@@ -30476,8 +30502,6 @@ export declare type GraphStore = {
|
|
|
30476
30502
|
linkedProjectHasVersionInverse?: Maybe<GraphStoreSimplifiedLinkedProjectHasVersionInverseConnection>;
|
|
30477
30503
|
linkedProjectHasVersionInverseRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
|
|
30478
30504
|
linkedProjectHasVersionRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
|
|
30479
|
-
loomVideoSharedWithUser?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserConnection>;
|
|
30480
|
-
loomVideoSharedWithUserInverse?: Maybe<GraphStoreSimplifiedLoomVideoSharedWithUserInverseConnection>;
|
|
30481
30505
|
mediaAttachedToContent?: Maybe<GraphStoreSimplifiedMediaAttachedToContentConnection>;
|
|
30482
30506
|
mediaAttachedToContentBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
30483
30507
|
mediaAttachedToContentInverseBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
@@ -30731,8 +30755,6 @@ export declare type GraphStore = {
|
|
|
30731
30755
|
userCreatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogConnection>;
|
|
30732
30756
|
userCreatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection>;
|
|
30733
30757
|
userCreatedLoomVideo?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoConnection>;
|
|
30734
|
-
userCreatedLoomVideoComment?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentConnection>;
|
|
30735
|
-
userCreatedLoomVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseConnection>;
|
|
30736
30758
|
userCreatedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection>;
|
|
30737
30759
|
userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
|
|
30738
30760
|
userCreatedMessageInverse?: Maybe<GraphStoreSimplifiedUserCreatedMessageInverseConnection>;
|
|
@@ -30742,6 +30764,8 @@ export declare type GraphStore = {
|
|
|
30742
30764
|
userCreatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkInverseConnection>;
|
|
30743
30765
|
userCreatedRepository?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryConnection>;
|
|
30744
30766
|
userCreatedRepositoryInverse?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryInverseConnection>;
|
|
30767
|
+
userCreatedVideoComment?: Maybe<GraphStoreSimplifiedUserCreatedVideoCommentConnection>;
|
|
30768
|
+
userCreatedVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedVideoCommentInverseConnection>;
|
|
30745
30769
|
userFavoritedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection>;
|
|
30746
30770
|
userFavoritedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseConnection>;
|
|
30747
30771
|
userFavoritedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseConnection>;
|
|
@@ -30770,6 +30794,8 @@ export declare type GraphStore = {
|
|
|
30770
30794
|
userMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedUserMentionedInConversationInverseConnection>;
|
|
30771
30795
|
userMentionedInMessage?: Maybe<GraphStoreSimplifiedUserMentionedInMessageConnection>;
|
|
30772
30796
|
userMentionedInMessageInverse?: Maybe<GraphStoreSimplifiedUserMentionedInMessageInverseConnection>;
|
|
30797
|
+
userMentionedInVideoComment?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentConnection>;
|
|
30798
|
+
userMentionedInVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentInverseConnection>;
|
|
30773
30799
|
userMergedPullRequest?: Maybe<GraphStoreSimplifiedUserMergedPullRequestConnection>;
|
|
30774
30800
|
userMergedPullRequestInverse?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseConnection>;
|
|
30775
30801
|
userOwnedBranch?: Maybe<GraphStoreSimplifiedUserOwnedBranchConnection>;
|
|
@@ -30798,8 +30824,6 @@ export declare type GraphStore = {
|
|
|
30798
30824
|
userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
|
|
30799
30825
|
userTaggedInIssueComment?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentConnection>;
|
|
30800
30826
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
30801
|
-
userTaggedInLoomVideoComment?: Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentConnection>;
|
|
30802
|
-
userTaggedInLoomVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseConnection>;
|
|
30803
30827
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
30804
30828
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
30805
30829
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
@@ -30827,10 +30851,10 @@ export declare type GraphStore = {
|
|
|
30827
30851
|
userViewedGoalUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
|
|
30828
30852
|
userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
|
|
30829
30853
|
userViewedJiraIssueInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseConnection>;
|
|
30830
|
-
userViewedLoomVideo?: Maybe<GraphStoreSimplifiedUserViewedLoomVideoConnection>;
|
|
30831
|
-
userViewedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserViewedLoomVideoInverseConnection>;
|
|
30832
30854
|
userViewedProjectUpdate?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateConnection>;
|
|
30833
30855
|
userViewedProjectUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateInverseConnection>;
|
|
30856
|
+
userViewedVideo?: Maybe<GraphStoreSimplifiedUserViewedVideoConnection>;
|
|
30857
|
+
userViewedVideoInverse?: Maybe<GraphStoreSimplifiedUserViewedVideoInverseConnection>;
|
|
30834
30858
|
userWatchesConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection>;
|
|
30835
30859
|
userWatchesConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseConnection>;
|
|
30836
30860
|
userWatchesConfluencePage?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageConnection>;
|
|
@@ -30879,6 +30903,8 @@ export declare type GraphStore = {
|
|
|
30879
30903
|
versionUserAssociatedFeatureFlagRelationship?: Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagConnection>;
|
|
30880
30904
|
videoHasComment?: Maybe<GraphStoreSimplifiedVideoHasCommentConnection>;
|
|
30881
30905
|
videoHasCommentInverse?: Maybe<GraphStoreSimplifiedVideoHasCommentInverseConnection>;
|
|
30906
|
+
videoSharedWithUser?: Maybe<GraphStoreSimplifiedVideoSharedWithUserConnection>;
|
|
30907
|
+
videoSharedWithUserInverse?: Maybe<GraphStoreSimplifiedVideoSharedWithUserInverseConnection>;
|
|
30882
30908
|
vulnerabilityAssociatedIssue?: Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueConnection>;
|
|
30883
30909
|
vulnerabilityAssociatedIssueInverse?: Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseConnection>;
|
|
30884
30910
|
vulnerabilityAssociatedIssueInverseRelationship?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueConnection>;
|
|
@@ -32475,20 +32501,6 @@ export declare type GraphStoreLinkedProjectHasVersionRelationshipArgs = {
|
|
|
32475
32501
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32476
32502
|
id: Scalars['ID']['input'];
|
|
32477
32503
|
};
|
|
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
32504
|
export declare type GraphStoreMediaAttachedToContentArgs = {
|
|
32493
32505
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32494
32506
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34171,20 +34183,6 @@ export declare type GraphStoreUserCreatedLoomVideoArgs = {
|
|
|
34171
34183
|
id: Scalars['ID']['input'];
|
|
34172
34184
|
sort?: InputMaybe<GraphStoreUserCreatedLoomVideoSortInput>;
|
|
34173
34185
|
};
|
|
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
34186
|
export declare type GraphStoreUserCreatedLoomVideoInverseArgs = {
|
|
34189
34187
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34190
34188
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34248,6 +34246,20 @@ export declare type GraphStoreUserCreatedRepositoryInverseArgs = {
|
|
|
34248
34246
|
id: Scalars['ID']['input'];
|
|
34249
34247
|
sort?: InputMaybe<GraphStoreUserCreatedRepositorySortInput>;
|
|
34250
34248
|
};
|
|
34249
|
+
export declare type GraphStoreUserCreatedVideoCommentArgs = {
|
|
34250
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34251
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34252
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34253
|
+
id: Scalars['ID']['input'];
|
|
34254
|
+
sort?: InputMaybe<GraphStoreUserCreatedVideoCommentSortInput>;
|
|
34255
|
+
};
|
|
34256
|
+
export declare type GraphStoreUserCreatedVideoCommentInverseArgs = {
|
|
34257
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34258
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34259
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34260
|
+
id: Scalars['ID']['input'];
|
|
34261
|
+
sort?: InputMaybe<GraphStoreUserCreatedVideoCommentSortInput>;
|
|
34262
|
+
};
|
|
34251
34263
|
export declare type GraphStoreUserFavoritedConfluenceBlogpostArgs = {
|
|
34252
34264
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34253
34265
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34446,6 +34458,20 @@ export declare type GraphStoreUserMentionedInMessageInverseArgs = {
|
|
|
34446
34458
|
id: Scalars['ID']['input'];
|
|
34447
34459
|
sort?: InputMaybe<GraphStoreUserMentionedInMessageSortInput>;
|
|
34448
34460
|
};
|
|
34461
|
+
export declare type GraphStoreUserMentionedInVideoCommentArgs = {
|
|
34462
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34463
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34464
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34465
|
+
id: Scalars['ID']['input'];
|
|
34466
|
+
sort?: InputMaybe<GraphStoreUserMentionedInVideoCommentSortInput>;
|
|
34467
|
+
};
|
|
34468
|
+
export declare type GraphStoreUserMentionedInVideoCommentInverseArgs = {
|
|
34469
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34470
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34471
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34472
|
+
id: Scalars['ID']['input'];
|
|
34473
|
+
sort?: InputMaybe<GraphStoreUserMentionedInVideoCommentSortInput>;
|
|
34474
|
+
};
|
|
34449
34475
|
export declare type GraphStoreUserMergedPullRequestArgs = {
|
|
34450
34476
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34451
34477
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34644,20 +34670,6 @@ export declare type GraphStoreUserTaggedInIssueCommentInverseArgs = {
|
|
|
34644
34670
|
id: Scalars['ID']['input'];
|
|
34645
34671
|
sort?: InputMaybe<GraphStoreUserTaggedInIssueCommentSortInput>;
|
|
34646
34672
|
};
|
|
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
34673
|
export declare type GraphStoreUserTriggeredDeploymentArgs = {
|
|
34662
34674
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34663
34675
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34847,33 +34859,33 @@ export declare type GraphStoreUserViewedJiraIssueInverseArgs = {
|
|
|
34847
34859
|
id: Scalars['ID']['input'];
|
|
34848
34860
|
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
34849
34861
|
};
|
|
34850
|
-
export declare type
|
|
34862
|
+
export declare type GraphStoreUserViewedProjectUpdateArgs = {
|
|
34851
34863
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34852
34864
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34853
34865
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34854
34866
|
id: Scalars['ID']['input'];
|
|
34855
|
-
sort?: InputMaybe<
|
|
34867
|
+
sort?: InputMaybe<GraphStoreUserViewedProjectUpdateSortInput>;
|
|
34856
34868
|
};
|
|
34857
|
-
export declare type
|
|
34869
|
+
export declare type GraphStoreUserViewedProjectUpdateInverseArgs = {
|
|
34858
34870
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34859
34871
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34860
34872
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34861
34873
|
id: Scalars['ID']['input'];
|
|
34862
|
-
sort?: InputMaybe<
|
|
34874
|
+
sort?: InputMaybe<GraphStoreUserViewedProjectUpdateSortInput>;
|
|
34863
34875
|
};
|
|
34864
|
-
export declare type
|
|
34876
|
+
export declare type GraphStoreUserViewedVideoArgs = {
|
|
34865
34877
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34866
34878
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34867
34879
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34868
34880
|
id: Scalars['ID']['input'];
|
|
34869
|
-
sort?: InputMaybe<
|
|
34881
|
+
sort?: InputMaybe<GraphStoreUserViewedVideoSortInput>;
|
|
34870
34882
|
};
|
|
34871
|
-
export declare type
|
|
34883
|
+
export declare type GraphStoreUserViewedVideoInverseArgs = {
|
|
34872
34884
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34873
34885
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34874
34886
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34875
34887
|
id: Scalars['ID']['input'];
|
|
34876
|
-
sort?: InputMaybe<
|
|
34888
|
+
sort?: InputMaybe<GraphStoreUserViewedVideoSortInput>;
|
|
34877
34889
|
};
|
|
34878
34890
|
export declare type GraphStoreUserWatchesConfluenceBlogpostArgs = {
|
|
34879
34891
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -35177,6 +35189,20 @@ export declare type GraphStoreVideoHasCommentInverseArgs = {
|
|
|
35177
35189
|
id: Scalars['ID']['input'];
|
|
35178
35190
|
sort?: InputMaybe<GraphStoreVideoHasCommentSortInput>;
|
|
35179
35191
|
};
|
|
35192
|
+
export declare type GraphStoreVideoSharedWithUserArgs = {
|
|
35193
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35194
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35195
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35196
|
+
id: Scalars['ID']['input'];
|
|
35197
|
+
sort?: InputMaybe<GraphStoreVideoSharedWithUserSortInput>;
|
|
35198
|
+
};
|
|
35199
|
+
export declare type GraphStoreVideoSharedWithUserInverseArgs = {
|
|
35200
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35201
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35202
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35203
|
+
id: Scalars['ID']['input'];
|
|
35204
|
+
sort?: InputMaybe<GraphStoreVideoSharedWithUserSortInput>;
|
|
35205
|
+
};
|
|
35180
35206
|
export declare type GraphStoreVulnerabilityAssociatedIssueArgs = {
|
|
35181
35207
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35182
35208
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40840,9 +40866,6 @@ export declare type GraphStoreLongFilterInput = {
|
|
|
40840
40866
|
lessThan?: InputMaybe<Scalars['Long']['input']>;
|
|
40841
40867
|
lessThanOrEqual?: InputMaybe<Scalars['Long']['input']>;
|
|
40842
40868
|
};
|
|
40843
|
-
export declare type GraphStoreLoomVideoSharedWithUserSortInput = {
|
|
40844
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40845
|
-
};
|
|
40846
40869
|
export declare type GraphStoreMediaAttachedToContentSortInput = {
|
|
40847
40870
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40848
40871
|
};
|
|
@@ -43857,34 +43880,6 @@ export declare type GraphStoreSimplifiedLinkedProjectHasVersionInverseEdge = {
|
|
|
43857
43880
|
};
|
|
43858
43881
|
export declare type GraphStoreSimplifiedLinkedProjectHasVersionInverseUnion = JiraProject;
|
|
43859
43882
|
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
43883
|
export declare type GraphStoreSimplifiedMediaAttachedToContentConnection = HasPageInfo & {
|
|
43889
43884
|
__typename?: 'GraphStoreSimplifiedMediaAttachedToContentConnection';
|
|
43890
43885
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMediaAttachedToContentEdge>>>;
|
|
@@ -46331,34 +46326,6 @@ export declare type GraphStoreSimplifiedUserCreatedIssueWorklogInverseEdge = {
|
|
|
46331
46326
|
};
|
|
46332
46327
|
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46333
46328
|
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
46329
|
export declare type GraphStoreSimplifiedUserCreatedLoomVideoConnection = HasPageInfo & {
|
|
46363
46330
|
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoConnection';
|
|
46364
46331
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoEdge>>>;
|
|
@@ -46499,6 +46466,34 @@ export declare type GraphStoreSimplifiedUserCreatedRepositoryInverseEdge = {
|
|
|
46499
46466
|
};
|
|
46500
46467
|
export declare type GraphStoreSimplifiedUserCreatedRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
46501
46468
|
export declare type GraphStoreSimplifiedUserCreatedRepositoryUnion = ExternalRepository;
|
|
46469
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoCommentConnection = HasPageInfo & {
|
|
46470
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedVideoCommentConnection';
|
|
46471
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedVideoCommentEdge>>>;
|
|
46472
|
+
pageInfo: PageInfo;
|
|
46473
|
+
};
|
|
46474
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoCommentEdge = {
|
|
46475
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedVideoCommentEdge';
|
|
46476
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46477
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46478
|
+
id: Scalars['ID']['output'];
|
|
46479
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46480
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedVideoCommentUnion>;
|
|
46481
|
+
};
|
|
46482
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoCommentInverseConnection = HasPageInfo & {
|
|
46483
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedVideoCommentInverseConnection';
|
|
46484
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedVideoCommentInverseEdge>>>;
|
|
46485
|
+
pageInfo: PageInfo;
|
|
46486
|
+
};
|
|
46487
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoCommentInverseEdge = {
|
|
46488
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedVideoCommentInverseEdge';
|
|
46489
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46490
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46491
|
+
id: Scalars['ID']['output'];
|
|
46492
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46493
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedVideoCommentInverseUnion>;
|
|
46494
|
+
};
|
|
46495
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46496
|
+
export declare type GraphStoreSimplifiedUserCreatedVideoCommentUnion = LoomComment;
|
|
46502
46497
|
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection = HasPageInfo & {
|
|
46503
46498
|
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection';
|
|
46504
46499
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostEdge>>>;
|
|
@@ -46899,6 +46894,34 @@ export declare type GraphStoreSimplifiedUserMentionedInMessageInverseEdge = {
|
|
|
46899
46894
|
};
|
|
46900
46895
|
export declare type GraphStoreSimplifiedUserMentionedInMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
46901
46896
|
export declare type GraphStoreSimplifiedUserMentionedInMessageUnion = ExternalMessage;
|
|
46897
|
+
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentConnection = HasPageInfo & {
|
|
46898
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInVideoCommentConnection';
|
|
46899
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentEdge>>>;
|
|
46900
|
+
pageInfo: PageInfo;
|
|
46901
|
+
};
|
|
46902
|
+
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentEdge = {
|
|
46903
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInVideoCommentEdge';
|
|
46904
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46905
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46906
|
+
id: Scalars['ID']['output'];
|
|
46907
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46908
|
+
node?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentUnion>;
|
|
46909
|
+
};
|
|
46910
|
+
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentInverseConnection = HasPageInfo & {
|
|
46911
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInVideoCommentInverseConnection';
|
|
46912
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentInverseEdge>>>;
|
|
46913
|
+
pageInfo: PageInfo;
|
|
46914
|
+
};
|
|
46915
|
+
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentInverseEdge = {
|
|
46916
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInVideoCommentInverseEdge';
|
|
46917
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46918
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46919
|
+
id: Scalars['ID']['output'];
|
|
46920
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46921
|
+
node?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentInverseUnion>;
|
|
46922
|
+
};
|
|
46923
|
+
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46924
|
+
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentUnion = LoomComment;
|
|
46902
46925
|
export declare type GraphStoreSimplifiedUserMergedPullRequestConnection = HasPageInfo & {
|
|
46903
46926
|
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestConnection';
|
|
46904
46927
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMergedPullRequestEdge>>>;
|
|
@@ -47295,34 +47318,6 @@ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge = {
|
|
|
47295
47318
|
};
|
|
47296
47319
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47297
47320
|
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
47321
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
|
|
47327
47322
|
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
|
|
47328
47323
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
|
|
@@ -47701,34 +47696,6 @@ export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseEdge = {
|
|
|
47701
47696
|
};
|
|
47702
47697
|
export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47703
47698
|
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
47699
|
export declare type GraphStoreSimplifiedUserViewedProjectUpdateConnection = HasPageInfo & {
|
|
47733
47700
|
__typename?: 'GraphStoreSimplifiedUserViewedProjectUpdateConnection';
|
|
47734
47701
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedProjectUpdateEdge>>>;
|
|
@@ -47757,6 +47724,34 @@ export declare type GraphStoreSimplifiedUserViewedProjectUpdateInverseEdge = {
|
|
|
47757
47724
|
};
|
|
47758
47725
|
export declare type GraphStoreSimplifiedUserViewedProjectUpdateInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47759
47726
|
export declare type GraphStoreSimplifiedUserViewedProjectUpdateUnion = TownsquareProjectUpdate;
|
|
47727
|
+
export declare type GraphStoreSimplifiedUserViewedVideoConnection = HasPageInfo & {
|
|
47728
|
+
__typename?: 'GraphStoreSimplifiedUserViewedVideoConnection';
|
|
47729
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedVideoEdge>>>;
|
|
47730
|
+
pageInfo: PageInfo;
|
|
47731
|
+
};
|
|
47732
|
+
export declare type GraphStoreSimplifiedUserViewedVideoEdge = {
|
|
47733
|
+
__typename?: 'GraphStoreSimplifiedUserViewedVideoEdge';
|
|
47734
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47735
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47736
|
+
id: Scalars['ID']['output'];
|
|
47737
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47738
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedVideoUnion>;
|
|
47739
|
+
};
|
|
47740
|
+
export declare type GraphStoreSimplifiedUserViewedVideoInverseConnection = HasPageInfo & {
|
|
47741
|
+
__typename?: 'GraphStoreSimplifiedUserViewedVideoInverseConnection';
|
|
47742
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedVideoInverseEdge>>>;
|
|
47743
|
+
pageInfo: PageInfo;
|
|
47744
|
+
};
|
|
47745
|
+
export declare type GraphStoreSimplifiedUserViewedVideoInverseEdge = {
|
|
47746
|
+
__typename?: 'GraphStoreSimplifiedUserViewedVideoInverseEdge';
|
|
47747
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47748
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47749
|
+
id: Scalars['ID']['output'];
|
|
47750
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47751
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedVideoInverseUnion>;
|
|
47752
|
+
};
|
|
47753
|
+
export declare type GraphStoreSimplifiedUserViewedVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47754
|
+
export declare type GraphStoreSimplifiedUserViewedVideoUnion = LoomVideo;
|
|
47760
47755
|
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection = HasPageInfo & {
|
|
47761
47756
|
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection';
|
|
47762
47757
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostEdge>>>;
|
|
@@ -48185,6 +48180,34 @@ export declare type GraphStoreSimplifiedVideoHasCommentInverseEdge = {
|
|
|
48185
48180
|
};
|
|
48186
48181
|
export declare type GraphStoreSimplifiedVideoHasCommentInverseUnion = LoomVideo;
|
|
48187
48182
|
export declare type GraphStoreSimplifiedVideoHasCommentUnion = LoomComment;
|
|
48183
|
+
export declare type GraphStoreSimplifiedVideoSharedWithUserConnection = HasPageInfo & {
|
|
48184
|
+
__typename?: 'GraphStoreSimplifiedVideoSharedWithUserConnection';
|
|
48185
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVideoSharedWithUserEdge>>>;
|
|
48186
|
+
pageInfo: PageInfo;
|
|
48187
|
+
};
|
|
48188
|
+
export declare type GraphStoreSimplifiedVideoSharedWithUserEdge = {
|
|
48189
|
+
__typename?: 'GraphStoreSimplifiedVideoSharedWithUserEdge';
|
|
48190
|
+
createdAt: Scalars['DateTime']['output'];
|
|
48191
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48192
|
+
id: Scalars['ID']['output'];
|
|
48193
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
48194
|
+
node?: Maybe<GraphStoreSimplifiedVideoSharedWithUserUnion>;
|
|
48195
|
+
};
|
|
48196
|
+
export declare type GraphStoreSimplifiedVideoSharedWithUserInverseConnection = HasPageInfo & {
|
|
48197
|
+
__typename?: 'GraphStoreSimplifiedVideoSharedWithUserInverseConnection';
|
|
48198
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVideoSharedWithUserInverseEdge>>>;
|
|
48199
|
+
pageInfo: PageInfo;
|
|
48200
|
+
};
|
|
48201
|
+
export declare type GraphStoreSimplifiedVideoSharedWithUserInverseEdge = {
|
|
48202
|
+
__typename?: 'GraphStoreSimplifiedVideoSharedWithUserInverseEdge';
|
|
48203
|
+
createdAt: Scalars['DateTime']['output'];
|
|
48204
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48205
|
+
id: Scalars['ID']['output'];
|
|
48206
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
48207
|
+
node?: Maybe<GraphStoreSimplifiedVideoSharedWithUserInverseUnion>;
|
|
48208
|
+
};
|
|
48209
|
+
export declare type GraphStoreSimplifiedVideoSharedWithUserInverseUnion = LoomVideo;
|
|
48210
|
+
export declare type GraphStoreSimplifiedVideoSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
48188
48211
|
export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueConnection = HasPageInfo & HasTotal & {
|
|
48189
48212
|
__typename?: 'GraphStoreSimplifiedVulnerabilityAssociatedIssueConnection';
|
|
48190
48213
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueEdge>>>;
|
|
@@ -48598,6 +48621,8 @@ export declare type GraphStoreUserAttendedCalendarEventConditionalFilterInput =
|
|
|
48598
48621
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48599
48622
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
48600
48623
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48624
|
+
to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
48625
|
+
to_eventStartTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
48601
48626
|
};
|
|
48602
48627
|
export declare type GraphStoreUserAttendedCalendarEventFilterInput = {
|
|
48603
48628
|
and?: InputMaybe<Array<InputMaybe<GraphStoreUserAttendedCalendarEventConditionalFilterInput>>>;
|
|
@@ -48608,6 +48633,8 @@ export declare type GraphStoreUserAttendedCalendarEventSortInput = {
|
|
|
48608
48633
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
48609
48634
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48610
48635
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
48636
|
+
to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
|
|
48637
|
+
to_eventStartTime?: InputMaybe<GraphStoreSortInput>;
|
|
48611
48638
|
};
|
|
48612
48639
|
export declare type GraphStoreUserAuthoredCommitSortInput = {
|
|
48613
48640
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -48665,6 +48692,8 @@ export declare type GraphStoreUserCreatedCalendarEventConditionalFilterInput = {
|
|
|
48665
48692
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48666
48693
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
48667
48694
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48695
|
+
to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
48696
|
+
to_eventStartTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
48668
48697
|
};
|
|
48669
48698
|
export declare type GraphStoreUserCreatedCalendarEventFilterInput = {
|
|
48670
48699
|
and?: InputMaybe<Array<InputMaybe<GraphStoreUserCreatedCalendarEventConditionalFilterInput>>>;
|
|
@@ -48675,6 +48704,8 @@ export declare type GraphStoreUserCreatedCalendarEventSortInput = {
|
|
|
48675
48704
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
48676
48705
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48677
48706
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
48707
|
+
to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
|
|
48708
|
+
to_eventStartTime?: InputMaybe<GraphStoreSortInput>;
|
|
48678
48709
|
};
|
|
48679
48710
|
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
48680
48711
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -48706,9 +48737,6 @@ export declare type GraphStoreUserCreatedIssueCommentSortInput = {
|
|
|
48706
48737
|
export declare type GraphStoreUserCreatedIssueWorklogSortInput = {
|
|
48707
48738
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48708
48739
|
};
|
|
48709
|
-
export declare type GraphStoreUserCreatedLoomVideoCommentSortInput = {
|
|
48710
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48711
|
-
};
|
|
48712
48740
|
export declare type GraphStoreUserCreatedLoomVideoSortInput = {
|
|
48713
48741
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48714
48742
|
};
|
|
@@ -48724,6 +48752,9 @@ export declare type GraphStoreUserCreatedRemoteLinkSortInput = {
|
|
|
48724
48752
|
export declare type GraphStoreUserCreatedRepositorySortInput = {
|
|
48725
48753
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48726
48754
|
};
|
|
48755
|
+
export declare type GraphStoreUserCreatedVideoCommentSortInput = {
|
|
48756
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48757
|
+
};
|
|
48727
48758
|
export declare type GraphStoreUserFavoritedConfluenceBlogpostSortInput = {
|
|
48728
48759
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48729
48760
|
};
|
|
@@ -48790,6 +48821,9 @@ export declare type GraphStoreUserMentionedInConversationSortInput = {
|
|
|
48790
48821
|
export declare type GraphStoreUserMentionedInMessageSortInput = {
|
|
48791
48822
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48792
48823
|
};
|
|
48824
|
+
export declare type GraphStoreUserMentionedInVideoCommentSortInput = {
|
|
48825
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48826
|
+
};
|
|
48793
48827
|
export declare type GraphStoreUserMergedPullRequestSortInput = {
|
|
48794
48828
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48795
48829
|
};
|
|
@@ -48845,9 +48879,6 @@ export declare type GraphStoreUserTaggedInConfluencePageSortInput = {
|
|
|
48845
48879
|
export declare type GraphStoreUserTaggedInIssueCommentSortInput = {
|
|
48846
48880
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48847
48881
|
};
|
|
48848
|
-
export declare type GraphStoreUserTaggedInLoomVideoCommentSortInput = {
|
|
48849
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48850
|
-
};
|
|
48851
48882
|
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
48852
48883
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48853
48884
|
};
|
|
@@ -48890,10 +48921,10 @@ export declare type GraphStoreUserViewedGoalUpdateSortInput = {
|
|
|
48890
48921
|
export declare type GraphStoreUserViewedJiraIssueSortInput = {
|
|
48891
48922
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48892
48923
|
};
|
|
48893
|
-
export declare type
|
|
48924
|
+
export declare type GraphStoreUserViewedProjectUpdateSortInput = {
|
|
48894
48925
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48895
48926
|
};
|
|
48896
|
-
export declare type
|
|
48927
|
+
export declare type GraphStoreUserViewedVideoSortInput = {
|
|
48897
48928
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48898
48929
|
};
|
|
48899
48930
|
export declare type GraphStoreUserWatchesConfluenceBlogpostSortInput = {
|
|
@@ -49004,6 +49035,9 @@ export declare type GraphStoreVersionUserAssociatedFeatureFlagSortInput = {
|
|
|
49004
49035
|
export declare type GraphStoreVideoHasCommentSortInput = {
|
|
49005
49036
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49006
49037
|
};
|
|
49038
|
+
export declare type GraphStoreVideoSharedWithUserSortInput = {
|
|
49039
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49040
|
+
};
|
|
49007
49041
|
export declare type GraphStoreVulnerabilityAssociatedIssueContainerSortInput = {
|
|
49008
49042
|
containerAri?: InputMaybe<GraphStoreSortInput>;
|
|
49009
49043
|
};
|
|
@@ -58415,6 +58449,18 @@ export declare type JiraIssueSearchViewContexts = {
|
|
|
58415
58449
|
__typename?: 'JiraIssueSearchViewContexts';
|
|
58416
58450
|
contexts?: Maybe<Array<JiraIssueSearchViewContextMapping>>;
|
|
58417
58451
|
errors?: Maybe<Array<QueryError>>;
|
|
58452
|
+
issueId?: Maybe<Scalars['String']['output']>;
|
|
58453
|
+
};
|
|
58454
|
+
export declare type JiraIssueSearchViewContextsConnection = {
|
|
58455
|
+
__typename?: 'JiraIssueSearchViewContextsConnection';
|
|
58456
|
+
edges?: Maybe<Array<Maybe<JiraIssueSearchViewContextsEdge>>>;
|
|
58457
|
+
pageInfo: PageInfo;
|
|
58458
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
58459
|
+
};
|
|
58460
|
+
export declare type JiraIssueSearchViewContextsEdge = {
|
|
58461
|
+
__typename?: 'JiraIssueSearchViewContextsEdge';
|
|
58462
|
+
cursor: Scalars['String']['output'];
|
|
58463
|
+
node?: Maybe<JiraIssueSearchViewContexts>;
|
|
58418
58464
|
};
|
|
58419
58465
|
export declare type JiraIssueSearchViewFieldSetsContext = {
|
|
58420
58466
|
issueContext?: InputMaybe<JiraIssueSearchViewFieldSetsIssueContext>;
|
|
@@ -62911,6 +62957,7 @@ export declare type JiraQuery = {
|
|
|
62911
62957
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
62912
62958
|
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
62913
62959
|
searchUserTeamMention?: Maybe<JiraMentionableConnection>;
|
|
62960
|
+
searchViewContexts?: Maybe<JiraIssueSearchViewContextsConnection>;
|
|
62914
62961
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
62915
62962
|
sprintById?: Maybe<JiraSprint>;
|
|
62916
62963
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
@@ -63759,6 +63806,15 @@ export declare type JiraQuerySearchUserTeamMentionArgs = {
|
|
|
63759
63806
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
63760
63807
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
63761
63808
|
};
|
|
63809
|
+
export declare type JiraQuerySearchViewContextsArgs = {
|
|
63810
|
+
cloudId: Scalars['ID']['input'];
|
|
63811
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63812
|
+
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63813
|
+
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63814
|
+
issueIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
63815
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
63816
|
+
searchViewContextInput: JiraIssueSearchViewContextInput;
|
|
63817
|
+
};
|
|
63762
63818
|
export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
63763
63819
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
63764
63820
|
cloudId: Scalars['ID']['input'];
|
|
@@ -71371,13 +71427,6 @@ export declare enum MarketplaceConsoleAsvlLegacyVersionStatus {
|
|
|
71371
71427
|
Private = "PRIVATE",
|
|
71372
71428
|
Public = "PUBLIC"
|
|
71373
71429
|
}
|
|
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
71430
|
export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
71382
71431
|
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
71383
71432
|
appKey: Scalars['ID']['output'];
|
|
@@ -71957,6 +72006,7 @@ export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
|
71957
72006
|
product: MarketplaceConsoleEditionsInput;
|
|
71958
72007
|
};
|
|
71959
72008
|
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
72009
|
+
appId: Scalars['String']['input'];
|
|
71960
72010
|
appSoftwareId: Scalars['String']['input'];
|
|
71961
72011
|
};
|
|
71962
72012
|
export declare type MarketplaceConsoleMutationApiCreateEcoHelpTicketArgs = {
|
|
@@ -72128,22 +72178,14 @@ export declare enum MarketplaceConsolePricingPlanStatus {
|
|
|
72128
72178
|
Live = "LIVE",
|
|
72129
72179
|
Pending = "PENDING"
|
|
72130
72180
|
}
|
|
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
72181
|
export declare type MarketplaceConsolePrivateListingsLink = {
|
|
72139
72182
|
__typename?: 'MarketplaceConsolePrivateListingsLink';
|
|
72140
|
-
|
|
72183
|
+
descriptor: Scalars['String']['output'];
|
|
72141
72184
|
versionNumber: Scalars['String']['output'];
|
|
72142
72185
|
};
|
|
72143
|
-
export declare type
|
|
72144
|
-
__typename?: '
|
|
72145
|
-
|
|
72146
|
-
node: MarketplaceConsoleTokenDetails;
|
|
72186
|
+
export declare type MarketplaceConsolePrivateListingsTokens = {
|
|
72187
|
+
__typename?: 'MarketplaceConsolePrivateListingsTokens';
|
|
72188
|
+
tokens: Array<Maybe<MarketplaceConsoleTokenDetails>>;
|
|
72147
72189
|
};
|
|
72148
72190
|
export declare type MarketplaceConsoleProduct = {
|
|
72149
72191
|
__typename?: 'MarketplaceConsoleProduct';
|
|
@@ -72170,6 +72212,7 @@ export declare type MarketplaceConsoleProductListing = {
|
|
|
72170
72212
|
marketplaceAppName: Scalars['String']['output'];
|
|
72171
72213
|
productId: Scalars['ID']['output'];
|
|
72172
72214
|
segmentWriteKey?: Maybe<Scalars['String']['output']>;
|
|
72215
|
+
slug: Scalars['String']['output'];
|
|
72173
72216
|
summary?: Maybe<Scalars['String']['output']>;
|
|
72174
72217
|
tagLine?: Maybe<Scalars['String']['output']>;
|
|
72175
72218
|
tags?: Maybe<MarketplaceConsoleProductListingTags>;
|
|
@@ -72216,7 +72259,7 @@ export declare type MarketplaceConsoleProductTags = {
|
|
|
72216
72259
|
};
|
|
72217
72260
|
export declare type MarketplaceConsoleQueryApi = {
|
|
72218
72261
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
72219
|
-
appPrivateListings?: Maybe<
|
|
72262
|
+
appPrivateListings?: Maybe<MarketplaceConsolePrivateListingsTokens>;
|
|
72220
72263
|
appSoftwareVersionByAppId?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
72221
72264
|
appSoftwareVersionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
72222
72265
|
appSoftwareVersionsByAppId?: Maybe<Array<MarketplaceConsoleAppSoftwareVersion>>;
|
|
@@ -72241,9 +72284,8 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
72241
72284
|
productTags?: Maybe<MarketplaceConsoleProductTags>;
|
|
72242
72285
|
};
|
|
72243
72286
|
export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
|
|
72244
|
-
|
|
72287
|
+
appId: Scalars['ID']['input'];
|
|
72245
72288
|
appSoftwareId: Scalars['ID']['input'];
|
|
72246
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
72247
72289
|
};
|
|
72248
72290
|
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionByAppIdArgs = {
|
|
72249
72291
|
appId: Scalars['ID']['input'];
|
|
@@ -72342,7 +72384,8 @@ export declare type MarketplaceConsoleTagsContent = {
|
|
|
72342
72384
|
export declare type MarketplaceConsoleTokenDetails = {
|
|
72343
72385
|
__typename?: 'MarketplaceConsoleTokenDetails';
|
|
72344
72386
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
72345
|
-
|
|
72387
|
+
instance?: Maybe<Scalars['String']['output']>;
|
|
72388
|
+
links: Array<Maybe<MarketplaceConsolePrivateListingsLink>>;
|
|
72346
72389
|
token: Scalars['String']['output'];
|
|
72347
72390
|
};
|
|
72348
72391
|
export declare type MarketplaceConsoleUpdateAppDetailsRequest = {
|
|
@@ -79941,6 +79984,7 @@ export declare type Query = {
|
|
|
79941
79984
|
appLogs?: Maybe<AppLogConnection>;
|
|
79942
79985
|
appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
|
|
79943
79986
|
appStorage_sqlDatabase?: Maybe<AppStorageSqlDatabasePayload>;
|
|
79987
|
+
appStorage_sqlTableData?: Maybe<AppStorageSqlTableDataPayload>;
|
|
79944
79988
|
appStoredCustomEntities?: Maybe<AppStoredCustomEntityConnection>;
|
|
79945
79989
|
appStoredCustomEntity?: Maybe<AppStoredCustomEntity>;
|
|
79946
79990
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
@@ -80571,6 +80615,7 @@ export declare type Query = {
|
|
|
80571
80615
|
totalSearchCTR?: Maybe<TotalSearchCtr>;
|
|
80572
80616
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
80573
80617
|
townsquareUnsharded_allWorkspaceSummariesForOrg?: Maybe<TownsquareUnshardedWorkspaceSummaryConnection>;
|
|
80618
|
+
townsquareUnsharded_fusionConfigByJiraIssueAris?: Maybe<Array<Maybe<TownsquareUnshardedFusionConfigForJiraIssueAri>>>;
|
|
80574
80619
|
traceTiming?: Maybe<TraceTiming>;
|
|
80575
80620
|
trello: TrelloQueryApi;
|
|
80576
80621
|
unified?: Maybe<UnifiedQuery>;
|
|
@@ -80717,6 +80762,9 @@ export declare type QueryAppLogsWithMetaDataArgs = {
|
|
|
80717
80762
|
export declare type QueryAppStorage_SqlDatabaseArgs = {
|
|
80718
80763
|
input: AppStorageSqlDatabaseInput;
|
|
80719
80764
|
};
|
|
80765
|
+
export declare type QueryAppStorage_SqlTableDataArgs = {
|
|
80766
|
+
input: AppStorageSqlTableDataInput;
|
|
80767
|
+
};
|
|
80720
80768
|
export declare type QueryAppStoredCustomEntitiesArgs = {
|
|
80721
80769
|
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
80722
80770
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -83233,6 +83281,9 @@ export declare type QueryTownsquareUnsharded_AllWorkspaceSummariesForOrgArgs = {
|
|
|
83233
83281
|
cloudId: Scalars['String']['input'];
|
|
83234
83282
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83235
83283
|
};
|
|
83284
|
+
export declare type QueryTownsquareUnsharded_FusionConfigByJiraIssueArisArgs = {
|
|
83285
|
+
jiraIssueAris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
83286
|
+
};
|
|
83236
83287
|
export declare type QueryUserArgs = {
|
|
83237
83288
|
accountId: Scalars['ID']['input'];
|
|
83238
83289
|
};
|
|
@@ -91237,6 +91288,11 @@ export declare enum TownsquareUnshardedCapabilityContainer {
|
|
|
91237
91288
|
GoalsApp = "GOALS_APP",
|
|
91238
91289
|
ProjectsApp = "PROJECTS_APP"
|
|
91239
91290
|
}
|
|
91291
|
+
export declare type TownsquareUnshardedFusionConfigForJiraIssueAri = {
|
|
91292
|
+
__typename?: 'TownsquareUnshardedFusionConfigForJiraIssueAri';
|
|
91293
|
+
isAppEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
91294
|
+
jiraIssueAri?: Maybe<Scalars['String']['output']>;
|
|
91295
|
+
};
|
|
91240
91296
|
export declare type TownsquareUnshardedUserCapabilities = {
|
|
91241
91297
|
__typename?: 'TownsquareUnshardedUserCapabilities';
|
|
91242
91298
|
capabilities?: Maybe<Array<Maybe<TownsquareUnshardedCapability>>>;
|