@forge/cli-shared 8.8.1-next.4-experimental-44e92a2 → 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 +12 -4
- package/out/graphql/graphql-types.d.ts +126 -1
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +23 -10
- package/out/ui/text.d.ts +5 -6
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +8 -15
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,21 +1,29 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 8.8.1-next.
|
|
3
|
+
## 8.8.1-next.5-experimental-04e7c02
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- f751b9b:
|
|
8
8
|
- 9cb69da: Enable force forge container deletion
|
|
9
9
|
- 94243f1: Split development and contribution guidelines
|
|
10
|
-
- 8183db5: added cli command to hit decoupled state endpoint
|
|
11
10
|
- Updated dependencies [b3792e4]
|
|
11
|
+
- Updated dependencies [fae0e71]
|
|
12
12
|
- Updated dependencies [0ea6722]
|
|
13
13
|
- Updated dependencies [4718346]
|
|
14
14
|
- Updated dependencies [94243f1]
|
|
15
15
|
- Updated dependencies [0ef937d]
|
|
16
16
|
- Updated dependencies [dcd46a4]
|
|
17
|
-
- @forge/manifest@10.8.0-next.
|
|
18
|
-
- @forge/util@2.0.1-next.0-experimental-
|
|
17
|
+
- @forge/manifest@10.8.0-next.5-experimental-04e7c02
|
|
18
|
+
- @forge/util@2.0.1-next.0-experimental-04e7c02
|
|
19
|
+
|
|
20
|
+
## 8.8.1-next.5
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [fae0e71]
|
|
25
|
+
- Updated dependencies [4718346]
|
|
26
|
+
- @forge/manifest@10.8.0-next.5
|
|
19
27
|
|
|
20
28
|
## 8.8.1-next.4
|
|
21
29
|
|
|
@@ -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'];
|
|
@@ -84414,10 +84466,14 @@ export declare enum JsmChannelsExperience {
|
|
|
84414
84466
|
}
|
|
84415
84467
|
export declare type JsmChannelsExperienceConfiguration = {
|
|
84416
84468
|
__typename?: 'JsmChannelsExperienceConfiguration';
|
|
84469
|
+
filter?: Maybe<JsmChannelsFilterConfiguration>;
|
|
84417
84470
|
isEnabled: Scalars['Boolean']['output'];
|
|
84471
|
+
mode?: Maybe<JsmChannelsExperienceMode>;
|
|
84418
84472
|
};
|
|
84419
84473
|
export declare type JsmChannelsExperienceConfigurationInput = {
|
|
84474
|
+
filter?: InputMaybe<JsmChannelsFilterConfigurationInput>;
|
|
84420
84475
|
isEnabled: Scalars['Boolean']['input'];
|
|
84476
|
+
mode?: InputMaybe<JsmChannelsExperienceMode>;
|
|
84421
84477
|
};
|
|
84422
84478
|
export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
|
|
84423
84479
|
__typename?: 'JsmChannelsExperienceConfigurationPayload';
|
|
@@ -84426,6 +84482,23 @@ export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
|
|
|
84426
84482
|
success: Scalars['Boolean']['output'];
|
|
84427
84483
|
};
|
|
84428
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
|
+
}
|
|
84429
84502
|
export declare type JsmChannelsOrchestratorConversation = Node & {
|
|
84430
84503
|
__typename?: 'JsmChannelsOrchestratorConversation';
|
|
84431
84504
|
action?: Maybe<JsmChannelsOrchestratorConversationActionType>;
|
|
@@ -99346,9 +99419,11 @@ export declare type Query = {
|
|
|
99346
99419
|
adminAnnouncementBannerSettingsByCriteria?: Maybe<AdminAnnouncementBannerSettingConnection>;
|
|
99347
99420
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
99348
99421
|
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
99422
|
+
admin_appModules?: Maybe<Array<Maybe<AdminAppFoundryManifest>>>;
|
|
99349
99423
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
99350
99424
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
99351
99425
|
admin_eventActions?: Maybe<AdminGroupEventActionConnection>;
|
|
99426
|
+
admin_eventLocations?: Maybe<AdminEventLocationConnection>;
|
|
99352
99427
|
admin_group?: Maybe<AdminGroup>;
|
|
99353
99428
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
99354
99429
|
admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
|
|
@@ -100199,6 +100274,10 @@ export declare type QueryAdmin_AccessUrlsArgs = {
|
|
|
100199
100274
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
100200
100275
|
orgId: Scalars['ID']['input'];
|
|
100201
100276
|
};
|
|
100277
|
+
export declare type QueryAdmin_AppModulesArgs = {
|
|
100278
|
+
ari: Scalars['String']['input'];
|
|
100279
|
+
modules?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
100280
|
+
};
|
|
100202
100281
|
export declare type QueryAdmin_ConnectedAppInstallationsArgs = {
|
|
100203
100282
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
100204
100283
|
appInstallationId: Scalars['ID']['input'];
|
|
@@ -100222,6 +100301,14 @@ export declare type QueryAdmin_EventActionsArgs = {
|
|
|
100222
100301
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
100223
100302
|
orgId: Scalars['ID']['input'];
|
|
100224
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
|
+
};
|
|
100225
100312
|
export declare type QueryAdmin_GroupArgs = {
|
|
100226
100313
|
input?: InputMaybe<AdminFetchGroupInput>;
|
|
100227
100314
|
};
|
|
@@ -106980,6 +107067,7 @@ export declare enum SearchResultType {
|
|
|
106980
107067
|
Object = "object",
|
|
106981
107068
|
Page = "page",
|
|
106982
107069
|
Plan = "plan",
|
|
107070
|
+
Position = "position",
|
|
106983
107071
|
Presentation = "presentation",
|
|
106984
107072
|
Project = "project",
|
|
106985
107073
|
ProjectUpdate = "project_update",
|
|
@@ -134044,11 +134132,25 @@ export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
|
|
|
134044
134132
|
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
134045
134133
|
url?: Maybe<Scalars['URL']['output']>;
|
|
134046
134134
|
};
|
|
134135
|
+
export declare type TrelloInboxNotificationsUpdated = {
|
|
134136
|
+
__typename?: 'TrelloInboxNotificationsUpdated';
|
|
134137
|
+
onQuickCaptureCardsCleared?: Maybe<Array<TrelloQuickCaptureCardCleared>>;
|
|
134138
|
+
quickCaptureCards?: Maybe<Array<TrelloInboxQuickCaptureCard>>;
|
|
134139
|
+
};
|
|
134047
134140
|
export declare type TrelloInboxPrefs = TrelloBaseBoardPrefs & {
|
|
134048
134141
|
__typename?: 'TrelloInboxPrefs';
|
|
134049
134142
|
autoArchive?: Maybe<Scalars['Boolean']['output']>;
|
|
134050
134143
|
background?: Maybe<TrelloBoardBackground>;
|
|
134051
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
|
+
};
|
|
134052
134154
|
export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
134053
134155
|
__typename?: 'TrelloInboxUpdated';
|
|
134054
134156
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -134056,6 +134158,7 @@ export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
|
134056
134158
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
134057
134159
|
id?: Maybe<Scalars['ID']['output']>;
|
|
134058
134160
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
134161
|
+
notifications?: Maybe<TrelloInboxNotificationsUpdated>;
|
|
134059
134162
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
134060
134163
|
prefs?: Maybe<TrelloInboxPrefs>;
|
|
134061
134164
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
@@ -134482,6 +134585,7 @@ export declare type TrelloMutationApi = {
|
|
|
134482
134585
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
134483
134586
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
134484
134587
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
134588
|
+
updateBoardStarPosition?: Maybe<TrelloUpdateBoardStarPositionPayload>;
|
|
134485
134589
|
updateBoardViewerAIBrowserExtension?: Maybe<TrelloUpdateBoardViewerAiBrowserExtensionPayload>;
|
|
134486
134590
|
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
134487
134591
|
updateBoardViewerAIMSTeams?: Maybe<TrelloUpdateBoardViewerAimsTeamsPayload>;
|
|
@@ -134592,6 +134696,9 @@ export declare type TrelloMutationApiUpdateBoardIsTemplateArgs = {
|
|
|
134592
134696
|
export declare type TrelloMutationApiUpdateBoardNameArgs = {
|
|
134593
134697
|
input: TrelloUpdateBoardNameInput;
|
|
134594
134698
|
};
|
|
134699
|
+
export declare type TrelloMutationApiUpdateBoardStarPositionArgs = {
|
|
134700
|
+
input: TrelloUpdateBoardStarPositionInput;
|
|
134701
|
+
};
|
|
134595
134702
|
export declare type TrelloMutationApiUpdateBoardViewerAiBrowserExtensionArgs = {
|
|
134596
134703
|
input: TrelloUpdateBoardViewerAiBrowserExtensionInput;
|
|
134597
134704
|
};
|
|
@@ -134976,6 +135083,7 @@ export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalenda
|
|
|
134976
135083
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
134977
135084
|
id: Scalars['ID']['output'];
|
|
134978
135085
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
135086
|
+
providerAccountId?: Maybe<Scalars['ID']['output']>;
|
|
134979
135087
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
134980
135088
|
timezone?: Maybe<Scalars['String']['output']>;
|
|
134981
135089
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -135007,6 +135115,7 @@ export declare type TrelloPlannerProviderCalendarUpdated = {
|
|
|
135007
135115
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
135008
135116
|
id: Scalars['ID']['output'];
|
|
135009
135117
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
135118
|
+
providerAccountId?: Maybe<Scalars['ID']['output']>;
|
|
135010
135119
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
135011
135120
|
timezone?: Maybe<Scalars['String']['output']>;
|
|
135012
135121
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -135261,6 +135370,10 @@ export declare type TrelloQueryApiUsersByIdArgs = {
|
|
|
135261
135370
|
export declare type TrelloQueryApiWorkspaceArgs = {
|
|
135262
135371
|
id: Scalars['ID']['input'];
|
|
135263
135372
|
};
|
|
135373
|
+
export declare type TrelloQuickCaptureCardCleared = {
|
|
135374
|
+
__typename?: 'TrelloQuickCaptureCardCleared';
|
|
135375
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
135376
|
+
};
|
|
135264
135377
|
export declare type TrelloReaction = {
|
|
135265
135378
|
__typename?: 'TrelloReaction';
|
|
135266
135379
|
emoji?: Maybe<TrelloEmoji>;
|
|
@@ -135536,6 +135649,17 @@ export declare type TrelloUpdateBoardNamePayload = Payload & {
|
|
|
135536
135649
|
errors?: Maybe<Array<MutationError>>;
|
|
135537
135650
|
success: Scalars['Boolean']['output'];
|
|
135538
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
|
+
};
|
|
135539
135663
|
export declare type TrelloUpdateBoardViewerAiBrowserExtensionInput = {
|
|
135540
135664
|
boardId: Scalars['ID']['input'];
|
|
135541
135665
|
value: Scalars['Boolean']['input'];
|
|
@@ -139195,6 +139319,7 @@ export declare type WebTriggerUrlInput = {
|
|
|
139195
139319
|
};
|
|
139196
139320
|
export declare type WhiteboardFeatures = {
|
|
139197
139321
|
__typename?: 'WhiteboardFeatures';
|
|
139322
|
+
cloudArchitectureShapes?: Maybe<ConfluenceCloudArchitectureShapesFeature>;
|
|
139198
139323
|
smartConnectors?: Maybe<SmartConnectorsFeature>;
|
|
139199
139324
|
smartSections?: Maybe<SmartSectionsFeature>;
|
|
139200
139325
|
};
|