@forge/cli-shared 8.8.1-next.5 → 8.8.1-next.5-experimental-04e7c02
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 +17 -0
- package/out/graphql/graphql-types.d.ts +271 -2
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +25 -10
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.8.1-next.5-experimental-04e7c02
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f751b9b:
|
|
8
|
+
- 9cb69da: Enable force forge container deletion
|
|
9
|
+
- 94243f1: Split development and contribution guidelines
|
|
10
|
+
- Updated dependencies [b3792e4]
|
|
11
|
+
- Updated dependencies [fae0e71]
|
|
12
|
+
- Updated dependencies [0ea6722]
|
|
13
|
+
- Updated dependencies [4718346]
|
|
14
|
+
- Updated dependencies [94243f1]
|
|
15
|
+
- Updated dependencies [0ef937d]
|
|
16
|
+
- Updated dependencies [dcd46a4]
|
|
17
|
+
- @forge/manifest@10.8.0-next.5-experimental-04e7c02
|
|
18
|
+
- @forge/util@2.0.1-next.0-experimental-04e7c02
|
|
19
|
+
|
|
3
20
|
## 8.8.1-next.5
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -1549,11 +1549,21 @@ export declare enum AdminAnnouncementBannerSettingsByCriteriaOrder {
|
|
|
1549
1549
|
ScheduledStartDate = "SCHEDULED_START_DATE",
|
|
1550
1550
|
Visibility = "VISIBILITY"
|
|
1551
1551
|
}
|
|
1552
|
+
export declare type AdminAppFoundryManifest = {
|
|
1553
|
+
__typename?: 'AdminAppFoundryManifest';
|
|
1554
|
+
appId: Scalars['String']['output'];
|
|
1555
|
+
modules: Array<AdminAppModule>;
|
|
1556
|
+
version: Scalars['String']['output'];
|
|
1557
|
+
};
|
|
1552
1558
|
export declare type AdminAppManifest = {
|
|
1553
1559
|
__typename?: 'AdminAppManifest';
|
|
1554
1560
|
appId: Scalars['String']['output'];
|
|
1555
1561
|
version: Scalars['String']['output'];
|
|
1556
1562
|
};
|
|
1563
|
+
export declare type AdminAppModule = {
|
|
1564
|
+
key: Scalars['String']['output'];
|
|
1565
|
+
typeName: Scalars['String']['output'];
|
|
1566
|
+
};
|
|
1557
1567
|
export declare type AdminApplicationErrorExtension = AdminErrorExtension & MutationErrorExtension & QueryErrorExtension & {
|
|
1558
1568
|
__typename?: 'AdminApplicationErrorExtension';
|
|
1559
1569
|
code?: Maybe<Scalars['String']['output']>;
|
|
@@ -1701,6 +1711,22 @@ export declare type AdminEventAction = {
|
|
|
1701
1711
|
__typename?: 'AdminEventAction';
|
|
1702
1712
|
name: Scalars['String']['output'];
|
|
1703
1713
|
};
|
|
1714
|
+
export declare type AdminEventLocation = {
|
|
1715
|
+
__typename?: 'AdminEventLocation';
|
|
1716
|
+
cityName: Scalars['String']['output'];
|
|
1717
|
+
countryName: Scalars['String']['output'];
|
|
1718
|
+
regionName?: Maybe<Scalars['String']['output']>;
|
|
1719
|
+
};
|
|
1720
|
+
export declare type AdminEventLocationConnection = {
|
|
1721
|
+
__typename?: 'AdminEventLocationConnection';
|
|
1722
|
+
edges?: Maybe<Array<AdminEventLocationEdge>>;
|
|
1723
|
+
pageInfo: PageInfo;
|
|
1724
|
+
};
|
|
1725
|
+
export declare type AdminEventLocationEdge = {
|
|
1726
|
+
__typename?: 'AdminEventLocationEdge';
|
|
1727
|
+
cursor: Scalars['String']['output'];
|
|
1728
|
+
node: AdminEventLocation;
|
|
1729
|
+
};
|
|
1704
1730
|
export declare type AdminExternalCollaboratorFeature = {
|
|
1705
1731
|
__typename?: 'AdminExternalCollaboratorFeature';
|
|
1706
1732
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -1728,6 +1754,11 @@ export declare type AdminFreezeWindowsFeature = {
|
|
|
1728
1754
|
__typename?: 'AdminFreezeWindowsFeature';
|
|
1729
1755
|
isEntitled?: Maybe<Scalars['Boolean']['output']>;
|
|
1730
1756
|
};
|
|
1757
|
+
export declare type AdminGenericAppModule = AdminAppModule & {
|
|
1758
|
+
__typename?: 'AdminGenericAppModule';
|
|
1759
|
+
key: Scalars['String']['output'];
|
|
1760
|
+
typeName: Scalars['String']['output'];
|
|
1761
|
+
};
|
|
1731
1762
|
export declare type AdminGroup = {
|
|
1732
1763
|
__typename?: 'AdminGroup';
|
|
1733
1764
|
counts?: Maybe<AdminGroupCounts>;
|
|
@@ -1772,7 +1803,7 @@ export declare type AdminGroupEventActionConnection = {
|
|
|
1772
1803
|
export declare type AdminGroupEventActionEdge = {
|
|
1773
1804
|
__typename?: 'AdminGroupEventActionEdge';
|
|
1774
1805
|
cursor: Scalars['String']['output'];
|
|
1775
|
-
node
|
|
1806
|
+
node: AdminGroupEventAction;
|
|
1776
1807
|
};
|
|
1777
1808
|
export declare type AdminGroupStatsQueryInput = {
|
|
1778
1809
|
includeResources?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -15429,6 +15460,10 @@ export declare type ConfluenceChildContentPageArgs = {
|
|
|
15429
15460
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15430
15461
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
15431
15462
|
};
|
|
15463
|
+
export declare type ConfluenceCloudArchitectureShapesFeature = {
|
|
15464
|
+
__typename?: 'ConfluenceCloudArchitectureShapesFeature';
|
|
15465
|
+
isEntitled: Scalars['Boolean']['output'];
|
|
15466
|
+
};
|
|
15432
15467
|
export declare enum ConfluenceCollaborativeEditingService {
|
|
15433
15468
|
Ncs = "NCS",
|
|
15434
15469
|
Synchrony = "SYNCHRONY"
|
|
@@ -25063,7 +25098,9 @@ export declare type DataRetention = {
|
|
|
25063
25098
|
};
|
|
25064
25099
|
export declare enum DataSecurityPolicyAction {
|
|
25065
25100
|
AiAccess = "AI_ACCESS",
|
|
25101
|
+
AnonymousAccess = "ANONYMOUS_ACCESS",
|
|
25066
25102
|
AppAccess = "APP_ACCESS",
|
|
25103
|
+
AppAccessConfigured = "APP_ACCESS_CONFIGURED",
|
|
25067
25104
|
PageExport = "PAGE_EXPORT",
|
|
25068
25105
|
PublicLinks = "PUBLIC_LINKS"
|
|
25069
25106
|
}
|
|
@@ -26641,6 +26678,7 @@ export declare type DevConsoleQuery = {
|
|
|
26641
26678
|
getAppsWithoutConsent: DevConsoleAppsWithoutConsentResponse;
|
|
26642
26679
|
getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
|
|
26643
26680
|
getDeveloperSpaceMembers?: Maybe<DevConsoleDeveloperSpaceMembersResponse>;
|
|
26681
|
+
getDeveloperSpaceTransactionAccount: DevConsoleTransactionAccountResponse;
|
|
26644
26682
|
getDeveloperSpaceWithLinkingAccess?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
26645
26683
|
tenantContexts: Array<Maybe<DevConsoleTenantContext>>;
|
|
26646
26684
|
};
|
|
@@ -26666,6 +26704,9 @@ export declare type DevConsoleQueryGetDeveloperSpaceDetailsArgs = {
|
|
|
26666
26704
|
export declare type DevConsoleQueryGetDeveloperSpaceMembersArgs = {
|
|
26667
26705
|
developerSpaceId: Scalars['String']['input'];
|
|
26668
26706
|
};
|
|
26707
|
+
export declare type DevConsoleQueryGetDeveloperSpaceTransactionAccountArgs = {
|
|
26708
|
+
developerSpaceId: Scalars['String']['input'];
|
|
26709
|
+
};
|
|
26669
26710
|
export declare type DevConsoleQueryTenantContextsArgs = {
|
|
26670
26711
|
ids: Array<Scalars['ID']['input']>;
|
|
26671
26712
|
};
|
|
@@ -26724,6 +26765,17 @@ export declare type DevConsoleTenantContext = {
|
|
|
26724
26765
|
cloudIdOrActivationId: Scalars['ID']['output'];
|
|
26725
26766
|
hostName: Scalars['String']['output'];
|
|
26726
26767
|
};
|
|
26768
|
+
export declare type DevConsoleTransactionAccountData = {
|
|
26769
|
+
__typename?: 'DevConsoleTransactionAccountData';
|
|
26770
|
+
invoiceGroupId?: Maybe<Scalars['String']['output']>;
|
|
26771
|
+
status: Scalars['String']['output'];
|
|
26772
|
+
txnAccountId?: Maybe<Scalars['String']['output']>;
|
|
26773
|
+
};
|
|
26774
|
+
export declare type DevConsoleTransactionAccountResponse = {
|
|
26775
|
+
__typename?: 'DevConsoleTransactionAccountResponse';
|
|
26776
|
+
error?: Maybe<QueryError>;
|
|
26777
|
+
transactionAccount?: Maybe<DevConsoleTransactionAccountData>;
|
|
26778
|
+
};
|
|
26727
26779
|
export declare type DevConsoleUpdateDeveloperSpaceMemberInput = {
|
|
26728
26780
|
developerSpaceId: Scalars['String']['input'];
|
|
26729
26781
|
memberId: Scalars['String']['input'];
|
|
@@ -36391,6 +36443,8 @@ export declare type GraphStore = {
|
|
|
36391
36443
|
userCreatedDesignInverse?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseConnection>;
|
|
36392
36444
|
userCreatedDocument?: Maybe<GraphStoreSimplifiedUserCreatedDocumentConnection>;
|
|
36393
36445
|
userCreatedDocumentInverse?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseConnection>;
|
|
36446
|
+
userCreatedExternalTest?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestConnection>;
|
|
36447
|
+
userCreatedExternalTestInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestInverseConnection>;
|
|
36394
36448
|
userCreatedIssue?: Maybe<GraphStoreSimplifiedUserCreatedIssueConnection>;
|
|
36395
36449
|
userCreatedIssueComment?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentConnection>;
|
|
36396
36450
|
userCreatedIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection>;
|
|
@@ -36455,6 +36509,8 @@ export declare type GraphStore = {
|
|
|
36455
36509
|
userOwnedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventInverseConnection>;
|
|
36456
36510
|
userOwnedDocument?: Maybe<GraphStoreSimplifiedUserOwnedDocumentConnection>;
|
|
36457
36511
|
userOwnedDocumentInverse?: Maybe<GraphStoreSimplifiedUserOwnedDocumentInverseConnection>;
|
|
36512
|
+
userOwnedExternalTest?: Maybe<GraphStoreSimplifiedUserOwnedExternalTestConnection>;
|
|
36513
|
+
userOwnedExternalTestInverse?: Maybe<GraphStoreSimplifiedUserOwnedExternalTestInverseConnection>;
|
|
36458
36514
|
userOwnedRemoteLink?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkConnection>;
|
|
36459
36515
|
userOwnedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkInverseConnection>;
|
|
36460
36516
|
userOwnedRepository?: Maybe<GraphStoreSimplifiedUserOwnedRepositoryConnection>;
|
|
@@ -36501,6 +36557,8 @@ export declare type GraphStore = {
|
|
|
36501
36557
|
userUpdatedConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseConnection>;
|
|
36502
36558
|
userUpdatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardConnection>;
|
|
36503
36559
|
userUpdatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseConnection>;
|
|
36560
|
+
userUpdatedExternalTest?: Maybe<GraphStoreSimplifiedUserUpdatedExternalTestConnection>;
|
|
36561
|
+
userUpdatedExternalTestInverse?: Maybe<GraphStoreSimplifiedUserUpdatedExternalTestInverseConnection>;
|
|
36504
36562
|
userUpdatedGraphDocument?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentConnection>;
|
|
36505
36563
|
userUpdatedGraphDocumentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentInverseConnection>;
|
|
36506
36564
|
userUpdatedIssue?: Maybe<GraphStoreSimplifiedUserUpdatedIssueConnection>;
|
|
@@ -40707,6 +40765,20 @@ export declare type GraphStoreUserCreatedDocumentInverseArgs = {
|
|
|
40707
40765
|
id: Scalars['ID']['input'];
|
|
40708
40766
|
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
40709
40767
|
};
|
|
40768
|
+
export declare type GraphStoreUserCreatedExternalTestArgs = {
|
|
40769
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40770
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40771
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40772
|
+
id: Scalars['ID']['input'];
|
|
40773
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalTestSortInput>;
|
|
40774
|
+
};
|
|
40775
|
+
export declare type GraphStoreUserCreatedExternalTestInverseArgs = {
|
|
40776
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40777
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40778
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40779
|
+
id: Scalars['ID']['input'];
|
|
40780
|
+
sort?: InputMaybe<GraphStoreUserCreatedExternalTestSortInput>;
|
|
40781
|
+
};
|
|
40710
40782
|
export declare type GraphStoreUserCreatedIssueArgs = {
|
|
40711
40783
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40712
40784
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41155,6 +41227,20 @@ export declare type GraphStoreUserOwnedDocumentInverseArgs = {
|
|
|
41155
41227
|
id: Scalars['ID']['input'];
|
|
41156
41228
|
sort?: InputMaybe<GraphStoreUserOwnedDocumentSortInput>;
|
|
41157
41229
|
};
|
|
41230
|
+
export declare type GraphStoreUserOwnedExternalTestArgs = {
|
|
41231
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41232
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41233
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41234
|
+
id: Scalars['ID']['input'];
|
|
41235
|
+
sort?: InputMaybe<GraphStoreUserOwnedExternalTestSortInput>;
|
|
41236
|
+
};
|
|
41237
|
+
export declare type GraphStoreUserOwnedExternalTestInverseArgs = {
|
|
41238
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41239
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41240
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41241
|
+
id: Scalars['ID']['input'];
|
|
41242
|
+
sort?: InputMaybe<GraphStoreUserOwnedExternalTestSortInput>;
|
|
41243
|
+
};
|
|
41158
41244
|
export declare type GraphStoreUserOwnedRemoteLinkArgs = {
|
|
41159
41245
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
41160
41246
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41479,6 +41565,20 @@ export declare type GraphStoreUserUpdatedConfluenceWhiteboardInverseArgs = {
|
|
|
41479
41565
|
id: Scalars['ID']['input'];
|
|
41480
41566
|
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceWhiteboardSortInput>;
|
|
41481
41567
|
};
|
|
41568
|
+
export declare type GraphStoreUserUpdatedExternalTestArgs = {
|
|
41569
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41570
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41571
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41572
|
+
id: Scalars['ID']['input'];
|
|
41573
|
+
sort?: InputMaybe<GraphStoreUserUpdatedExternalTestSortInput>;
|
|
41574
|
+
};
|
|
41575
|
+
export declare type GraphStoreUserUpdatedExternalTestInverseArgs = {
|
|
41576
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41577
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41578
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41579
|
+
id: Scalars['ID']['input'];
|
|
41580
|
+
sort?: InputMaybe<GraphStoreUserUpdatedExternalTestSortInput>;
|
|
41581
|
+
};
|
|
41482
41582
|
export declare type GraphStoreUserUpdatedGraphDocumentArgs = {
|
|
41483
41583
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
41484
41584
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -55447,6 +55547,34 @@ export declare type GraphStoreSimplifiedUserCreatedDocumentInverseEdge = {
|
|
|
55447
55547
|
};
|
|
55448
55548
|
export declare type GraphStoreSimplifiedUserCreatedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55449
55549
|
export declare type GraphStoreSimplifiedUserCreatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
55550
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalTestConnection = HasPageInfo & {
|
|
55551
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalTestConnection';
|
|
55552
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalTestEdge>>>;
|
|
55553
|
+
pageInfo: PageInfo;
|
|
55554
|
+
};
|
|
55555
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalTestEdge = {
|
|
55556
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalTestEdge';
|
|
55557
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55558
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55559
|
+
id: Scalars['ID']['output'];
|
|
55560
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55561
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestUnion>;
|
|
55562
|
+
};
|
|
55563
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalTestInverseConnection = HasPageInfo & {
|
|
55564
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalTestInverseConnection';
|
|
55565
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedExternalTestInverseEdge>>>;
|
|
55566
|
+
pageInfo: PageInfo;
|
|
55567
|
+
};
|
|
55568
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalTestInverseEdge = {
|
|
55569
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedExternalTestInverseEdge';
|
|
55570
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55571
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55572
|
+
id: Scalars['ID']['output'];
|
|
55573
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55574
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestInverseUnion>;
|
|
55575
|
+
};
|
|
55576
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
55577
|
+
export declare type GraphStoreSimplifiedUserCreatedExternalTestUnion = ExternalTest;
|
|
55450
55578
|
export declare type GraphStoreSimplifiedUserCreatedIssueCommentConnection = HasPageInfo & {
|
|
55451
55579
|
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentConnection';
|
|
55452
55580
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueCommentEdge>>>;
|
|
@@ -56327,6 +56455,34 @@ export declare type GraphStoreSimplifiedUserOwnedDocumentInverseEdge = {
|
|
|
56327
56455
|
};
|
|
56328
56456
|
export declare type GraphStoreSimplifiedUserOwnedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
56329
56457
|
export declare type GraphStoreSimplifiedUserOwnedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
56458
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalTestConnection = HasPageInfo & {
|
|
56459
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalTestConnection';
|
|
56460
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedExternalTestEdge>>>;
|
|
56461
|
+
pageInfo: PageInfo;
|
|
56462
|
+
};
|
|
56463
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalTestEdge = {
|
|
56464
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalTestEdge';
|
|
56465
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56466
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56467
|
+
id: Scalars['ID']['output'];
|
|
56468
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56469
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedExternalTestUnion>;
|
|
56470
|
+
};
|
|
56471
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalTestInverseConnection = HasPageInfo & {
|
|
56472
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalTestInverseConnection';
|
|
56473
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedExternalTestInverseEdge>>>;
|
|
56474
|
+
pageInfo: PageInfo;
|
|
56475
|
+
};
|
|
56476
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalTestInverseEdge = {
|
|
56477
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedExternalTestInverseEdge';
|
|
56478
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56479
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56480
|
+
id: Scalars['ID']['output'];
|
|
56481
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56482
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedExternalTestInverseUnion>;
|
|
56483
|
+
};
|
|
56484
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
56485
|
+
export declare type GraphStoreSimplifiedUserOwnedExternalTestUnion = ExternalTest;
|
|
56330
56486
|
export declare type GraphStoreSimplifiedUserOwnedRemoteLinkConnection = HasPageInfo & {
|
|
56331
56487
|
__typename?: 'GraphStoreSimplifiedUserOwnedRemoteLinkConnection';
|
|
56332
56488
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkEdge>>>;
|
|
@@ -56975,6 +57131,34 @@ export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseEd
|
|
|
56975
57131
|
};
|
|
56976
57132
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56977
57133
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
57134
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalTestConnection = HasPageInfo & {
|
|
57135
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalTestConnection';
|
|
57136
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedExternalTestEdge>>>;
|
|
57137
|
+
pageInfo: PageInfo;
|
|
57138
|
+
};
|
|
57139
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalTestEdge = {
|
|
57140
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalTestEdge';
|
|
57141
|
+
createdAt: Scalars['DateTime']['output'];
|
|
57142
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
57143
|
+
id: Scalars['ID']['output'];
|
|
57144
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
57145
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedExternalTestUnion>;
|
|
57146
|
+
};
|
|
57147
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalTestInverseConnection = HasPageInfo & {
|
|
57148
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalTestInverseConnection';
|
|
57149
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedExternalTestInverseEdge>>>;
|
|
57150
|
+
pageInfo: PageInfo;
|
|
57151
|
+
};
|
|
57152
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalTestInverseEdge = {
|
|
57153
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedExternalTestInverseEdge';
|
|
57154
|
+
createdAt: Scalars['DateTime']['output'];
|
|
57155
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
57156
|
+
id: Scalars['ID']['output'];
|
|
57157
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
57158
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedExternalTestInverseUnion>;
|
|
57159
|
+
};
|
|
57160
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
57161
|
+
export declare type GraphStoreSimplifiedUserUpdatedExternalTestUnion = ExternalTest;
|
|
56978
57162
|
export declare type GraphStoreSimplifiedUserUpdatedGraphDocumentConnection = HasPageInfo & {
|
|
56979
57163
|
__typename?: 'GraphStoreSimplifiedUserUpdatedGraphDocumentConnection';
|
|
56980
57164
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentEdge>>>;
|
|
@@ -58240,6 +58424,9 @@ export declare type GraphStoreUserCreatedDesignSortInput = {
|
|
|
58240
58424
|
export declare type GraphStoreUserCreatedDocumentSortInput = {
|
|
58241
58425
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58242
58426
|
};
|
|
58427
|
+
export declare type GraphStoreUserCreatedExternalTestSortInput = {
|
|
58428
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58429
|
+
};
|
|
58243
58430
|
export declare type GraphStoreUserCreatedIssueCommentSortInput = {
|
|
58244
58431
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58245
58432
|
};
|
|
@@ -58360,6 +58547,9 @@ export declare type GraphStoreUserOwnedCalendarEventSortInput = {
|
|
|
58360
58547
|
export declare type GraphStoreUserOwnedDocumentSortInput = {
|
|
58361
58548
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58362
58549
|
};
|
|
58550
|
+
export declare type GraphStoreUserOwnedExternalTestSortInput = {
|
|
58551
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58552
|
+
};
|
|
58363
58553
|
export declare type GraphStoreUserOwnedRemoteLinkSortInput = {
|
|
58364
58554
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58365
58555
|
};
|
|
@@ -58442,6 +58632,9 @@ export declare type GraphStoreUserUpdatedConfluenceSpaceSortInput = {
|
|
|
58442
58632
|
export declare type GraphStoreUserUpdatedConfluenceWhiteboardSortInput = {
|
|
58443
58633
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58444
58634
|
};
|
|
58635
|
+
export declare type GraphStoreUserUpdatedExternalTestSortInput = {
|
|
58636
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58637
|
+
};
|
|
58445
58638
|
export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
|
|
58446
58639
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58447
58640
|
};
|
|
@@ -71585,6 +71778,7 @@ export declare enum JiraIssueViewActivityLayout {
|
|
|
71585
71778
|
Vertical = "VERTICAL"
|
|
71586
71779
|
}
|
|
71587
71780
|
export declare enum JiraIssueViewAttachmentPanelViewMode {
|
|
71781
|
+
GridView = "GRID_VIEW",
|
|
71588
71782
|
ListView = "LIST_VIEW",
|
|
71589
71783
|
StripView = "STRIP_VIEW"
|
|
71590
71784
|
}
|
|
@@ -78493,7 +78687,8 @@ export declare type JiraResource = {
|
|
|
78493
78687
|
export declare enum JiraResourceIntegration {
|
|
78494
78688
|
Attachment = "ATTACHMENT",
|
|
78495
78689
|
Confluence = "CONFLUENCE",
|
|
78496
|
-
Loom = "LOOM"
|
|
78690
|
+
Loom = "LOOM",
|
|
78691
|
+
Whiteboard = "WHITEBOARD"
|
|
78497
78692
|
}
|
|
78498
78693
|
export declare type JiraResourceNode = {
|
|
78499
78694
|
__typename?: 'JiraResourceNode';
|
|
@@ -81863,6 +82058,7 @@ export declare type JiraTownsquareProject = {
|
|
|
81863
82058
|
hasPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
81864
82059
|
iconName?: Maybe<Scalars['String']['output']>;
|
|
81865
82060
|
id: Scalars['ID']['output'];
|
|
82061
|
+
isWorkspaceActive?: Maybe<Scalars['Boolean']['output']>;
|
|
81866
82062
|
key?: Maybe<Scalars['String']['output']>;
|
|
81867
82063
|
name?: Maybe<Scalars['String']['output']>;
|
|
81868
82064
|
ownerAaid?: Maybe<Scalars['String']['output']>;
|
|
@@ -84270,10 +84466,14 @@ export declare enum JsmChannelsExperience {
|
|
|
84270
84466
|
}
|
|
84271
84467
|
export declare type JsmChannelsExperienceConfiguration = {
|
|
84272
84468
|
__typename?: 'JsmChannelsExperienceConfiguration';
|
|
84469
|
+
filter?: Maybe<JsmChannelsFilterConfiguration>;
|
|
84273
84470
|
isEnabled: Scalars['Boolean']['output'];
|
|
84471
|
+
mode?: Maybe<JsmChannelsExperienceMode>;
|
|
84274
84472
|
};
|
|
84275
84473
|
export declare type JsmChannelsExperienceConfigurationInput = {
|
|
84474
|
+
filter?: InputMaybe<JsmChannelsFilterConfigurationInput>;
|
|
84276
84475
|
isEnabled: Scalars['Boolean']['input'];
|
|
84476
|
+
mode?: InputMaybe<JsmChannelsExperienceMode>;
|
|
84277
84477
|
};
|
|
84278
84478
|
export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
|
|
84279
84479
|
__typename?: 'JsmChannelsExperienceConfigurationPayload';
|
|
@@ -84282,6 +84482,23 @@ export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
|
|
|
84282
84482
|
success: Scalars['Boolean']['output'];
|
|
84283
84483
|
};
|
|
84284
84484
|
export declare type JsmChannelsExperienceConfigurationResult = JsmChannelsExperienceConfiguration | QueryError;
|
|
84485
|
+
export declare enum JsmChannelsExperienceMode {
|
|
84486
|
+
Autonomous = "AUTONOMOUS",
|
|
84487
|
+
Supervised = "SUPERVISED"
|
|
84488
|
+
}
|
|
84489
|
+
export declare type JsmChannelsFilterConfiguration = {
|
|
84490
|
+
__typename?: 'JsmChannelsFilterConfiguration';
|
|
84491
|
+
requestTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
84492
|
+
requestTypesMode?: Maybe<JsmChannelsFilterRequestTypesMode>;
|
|
84493
|
+
};
|
|
84494
|
+
export declare type JsmChannelsFilterConfigurationInput = {
|
|
84495
|
+
requestTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
84496
|
+
requestTypesMode?: InputMaybe<JsmChannelsFilterRequestTypesMode>;
|
|
84497
|
+
};
|
|
84498
|
+
export declare enum JsmChannelsFilterRequestTypesMode {
|
|
84499
|
+
All = "ALL",
|
|
84500
|
+
Specific = "SPECIFIC"
|
|
84501
|
+
}
|
|
84285
84502
|
export declare type JsmChannelsOrchestratorConversation = Node & {
|
|
84286
84503
|
__typename?: 'JsmChannelsOrchestratorConversation';
|
|
84287
84504
|
action?: Maybe<JsmChannelsOrchestratorConversationActionType>;
|
|
@@ -99202,9 +99419,11 @@ export declare type Query = {
|
|
|
99202
99419
|
adminAnnouncementBannerSettingsByCriteria?: Maybe<AdminAnnouncementBannerSettingConnection>;
|
|
99203
99420
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
99204
99421
|
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
99422
|
+
admin_appModules?: Maybe<Array<Maybe<AdminAppFoundryManifest>>>;
|
|
99205
99423
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
99206
99424
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
99207
99425
|
admin_eventActions?: Maybe<AdminGroupEventActionConnection>;
|
|
99426
|
+
admin_eventLocations?: Maybe<AdminEventLocationConnection>;
|
|
99208
99427
|
admin_group?: Maybe<AdminGroup>;
|
|
99209
99428
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
99210
99429
|
admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
|
|
@@ -100055,6 +100274,10 @@ export declare type QueryAdmin_AccessUrlsArgs = {
|
|
|
100055
100274
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
100056
100275
|
orgId: Scalars['ID']['input'];
|
|
100057
100276
|
};
|
|
100277
|
+
export declare type QueryAdmin_AppModulesArgs = {
|
|
100278
|
+
ari: Scalars['String']['input'];
|
|
100279
|
+
modules?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
100280
|
+
};
|
|
100058
100281
|
export declare type QueryAdmin_ConnectedAppInstallationsArgs = {
|
|
100059
100282
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
100060
100283
|
appInstallationId: Scalars['ID']['input'];
|
|
@@ -100078,6 +100301,14 @@ export declare type QueryAdmin_EventActionsArgs = {
|
|
|
100078
100301
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
100079
100302
|
orgId: Scalars['ID']['input'];
|
|
100080
100303
|
};
|
|
100304
|
+
export declare type QueryAdmin_EventLocationsArgs = {
|
|
100305
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
100306
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
100307
|
+
filter?: InputMaybe<Scalars['String']['input']>;
|
|
100308
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
100309
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
100310
|
+
orgId: Scalars['ID']['input'];
|
|
100311
|
+
};
|
|
100081
100312
|
export declare type QueryAdmin_GroupArgs = {
|
|
100082
100313
|
input?: InputMaybe<AdminFetchGroupInput>;
|
|
100083
100314
|
};
|
|
@@ -106836,6 +107067,7 @@ export declare enum SearchResultType {
|
|
|
106836
107067
|
Object = "object",
|
|
106837
107068
|
Page = "page",
|
|
106838
107069
|
Plan = "plan",
|
|
107070
|
+
Position = "position",
|
|
106839
107071
|
Presentation = "presentation",
|
|
106840
107072
|
Project = "project",
|
|
106841
107073
|
ProjectUpdate = "project_update",
|
|
@@ -133900,11 +134132,25 @@ export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
|
|
|
133900
134132
|
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
133901
134133
|
url?: Maybe<Scalars['URL']['output']>;
|
|
133902
134134
|
};
|
|
134135
|
+
export declare type TrelloInboxNotificationsUpdated = {
|
|
134136
|
+
__typename?: 'TrelloInboxNotificationsUpdated';
|
|
134137
|
+
onQuickCaptureCardsCleared?: Maybe<Array<TrelloQuickCaptureCardCleared>>;
|
|
134138
|
+
quickCaptureCards?: Maybe<Array<TrelloInboxQuickCaptureCard>>;
|
|
134139
|
+
};
|
|
133903
134140
|
export declare type TrelloInboxPrefs = TrelloBaseBoardPrefs & {
|
|
133904
134141
|
__typename?: 'TrelloInboxPrefs';
|
|
133905
134142
|
autoArchive?: Maybe<Scalars['Boolean']['output']>;
|
|
133906
134143
|
background?: Maybe<TrelloBoardBackground>;
|
|
133907
134144
|
};
|
|
134145
|
+
export declare type TrelloInboxQuickCaptureCard = {
|
|
134146
|
+
__typename?: 'TrelloInboxQuickCaptureCard';
|
|
134147
|
+
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
134148
|
+
card?: Maybe<TrelloCard>;
|
|
134149
|
+
dateCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
134150
|
+
inbox?: Maybe<TrelloInbox>;
|
|
134151
|
+
member?: Maybe<TrelloMember>;
|
|
134152
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
134153
|
+
};
|
|
133908
134154
|
export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
133909
134155
|
__typename?: 'TrelloInboxUpdated';
|
|
133910
134156
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -133912,6 +134158,7 @@ export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
|
133912
134158
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
133913
134159
|
id?: Maybe<Scalars['ID']['output']>;
|
|
133914
134160
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
134161
|
+
notifications?: Maybe<TrelloInboxNotificationsUpdated>;
|
|
133915
134162
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
133916
134163
|
prefs?: Maybe<TrelloInboxPrefs>;
|
|
133917
134164
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
@@ -134338,6 +134585,7 @@ export declare type TrelloMutationApi = {
|
|
|
134338
134585
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
134339
134586
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
134340
134587
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
134588
|
+
updateBoardStarPosition?: Maybe<TrelloUpdateBoardStarPositionPayload>;
|
|
134341
134589
|
updateBoardViewerAIBrowserExtension?: Maybe<TrelloUpdateBoardViewerAiBrowserExtensionPayload>;
|
|
134342
134590
|
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
134343
134591
|
updateBoardViewerAIMSTeams?: Maybe<TrelloUpdateBoardViewerAimsTeamsPayload>;
|
|
@@ -134448,6 +134696,9 @@ export declare type TrelloMutationApiUpdateBoardIsTemplateArgs = {
|
|
|
134448
134696
|
export declare type TrelloMutationApiUpdateBoardNameArgs = {
|
|
134449
134697
|
input: TrelloUpdateBoardNameInput;
|
|
134450
134698
|
};
|
|
134699
|
+
export declare type TrelloMutationApiUpdateBoardStarPositionArgs = {
|
|
134700
|
+
input: TrelloUpdateBoardStarPositionInput;
|
|
134701
|
+
};
|
|
134451
134702
|
export declare type TrelloMutationApiUpdateBoardViewerAiBrowserExtensionArgs = {
|
|
134452
134703
|
input: TrelloUpdateBoardViewerAiBrowserExtensionInput;
|
|
134453
134704
|
};
|
|
@@ -134832,6 +135083,7 @@ export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalenda
|
|
|
134832
135083
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
134833
135084
|
id: Scalars['ID']['output'];
|
|
134834
135085
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
135086
|
+
providerAccountId?: Maybe<Scalars['ID']['output']>;
|
|
134835
135087
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
134836
135088
|
timezone?: Maybe<Scalars['String']['output']>;
|
|
134837
135089
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -134863,6 +135115,7 @@ export declare type TrelloPlannerProviderCalendarUpdated = {
|
|
|
134863
135115
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
134864
135116
|
id: Scalars['ID']['output'];
|
|
134865
135117
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
135118
|
+
providerAccountId?: Maybe<Scalars['ID']['output']>;
|
|
134866
135119
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
134867
135120
|
timezone?: Maybe<Scalars['String']['output']>;
|
|
134868
135121
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -135117,6 +135370,10 @@ export declare type TrelloQueryApiUsersByIdArgs = {
|
|
|
135117
135370
|
export declare type TrelloQueryApiWorkspaceArgs = {
|
|
135118
135371
|
id: Scalars['ID']['input'];
|
|
135119
135372
|
};
|
|
135373
|
+
export declare type TrelloQuickCaptureCardCleared = {
|
|
135374
|
+
__typename?: 'TrelloQuickCaptureCardCleared';
|
|
135375
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
135376
|
+
};
|
|
135120
135377
|
export declare type TrelloReaction = {
|
|
135121
135378
|
__typename?: 'TrelloReaction';
|
|
135122
135379
|
emoji?: Maybe<TrelloEmoji>;
|
|
@@ -135392,6 +135649,17 @@ export declare type TrelloUpdateBoardNamePayload = Payload & {
|
|
|
135392
135649
|
errors?: Maybe<Array<MutationError>>;
|
|
135393
135650
|
success: Scalars['Boolean']['output'];
|
|
135394
135651
|
};
|
|
135652
|
+
export declare type TrelloUpdateBoardStarPositionInput = {
|
|
135653
|
+
boardStarId: Scalars['ID']['input'];
|
|
135654
|
+
position: Scalars['Float']['input'];
|
|
135655
|
+
userId: Scalars['ID']['input'];
|
|
135656
|
+
};
|
|
135657
|
+
export declare type TrelloUpdateBoardStarPositionPayload = Payload & {
|
|
135658
|
+
__typename?: 'TrelloUpdateBoardStarPositionPayload';
|
|
135659
|
+
errors?: Maybe<Array<MutationError>>;
|
|
135660
|
+
member?: Maybe<TrelloMember>;
|
|
135661
|
+
success: Scalars['Boolean']['output'];
|
|
135662
|
+
};
|
|
135395
135663
|
export declare type TrelloUpdateBoardViewerAiBrowserExtensionInput = {
|
|
135396
135664
|
boardId: Scalars['ID']['input'];
|
|
135397
135665
|
value: Scalars['Boolean']['input'];
|
|
@@ -139051,6 +139319,7 @@ export declare type WebTriggerUrlInput = {
|
|
|
139051
139319
|
};
|
|
139052
139320
|
export declare type WhiteboardFeatures = {
|
|
139053
139321
|
__typename?: 'WhiteboardFeatures';
|
|
139322
|
+
cloudArchitectureShapes?: Maybe<ConfluenceCloudArchitectureShapesFeature>;
|
|
139054
139323
|
smartConnectors?: Maybe<SmartConnectorsFeature>;
|
|
139055
139324
|
smartSections?: Maybe<SmartSectionsFeature>;
|
|
139056
139325
|
};
|