@forge/cli-shared 8.8.2-next.4-experimental-4cf7fd3 → 8.8.2-next.5
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 +2 -7
- package/out/graphql/graphql-types.d.ts +184 -8
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +49 -30
- package/out/tunnel/docker-compose-lifecycle.d.ts +3 -0
- package/out/tunnel/docker-compose-lifecycle.d.ts.map +1 -1
- package/out/tunnel/docker-compose-lifecycle.js +21 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,10 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 8.8.2-next.
|
|
3
|
+
## 8.8.2-next.5
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
- Updated dependencies [9a6d346]
|
|
9
|
-
- Updated dependencies [260eb24]
|
|
10
|
-
- Updated dependencies [8962080]
|
|
11
|
-
- Updated dependencies [78efec7]
|
|
12
|
-
- @forge/manifest@11.0.0-next.3-experimental-4cf7fd3
|
|
7
|
+
- ef033a5: support container identity when tunneling
|
|
13
8
|
|
|
14
9
|
## 8.8.2-next.4
|
|
15
10
|
|
|
@@ -809,6 +809,15 @@ export declare type AvpUpdateDashboardPayload = Payload & {
|
|
|
809
809
|
errors?: Maybe<Array<MutationError>>;
|
|
810
810
|
success: Scalars['Boolean']['output'];
|
|
811
811
|
};
|
|
812
|
+
export declare type AvpUpdateDashboardResourcePermissionInput = {
|
|
813
|
+
dashboardId: Scalars['ID']['input'];
|
|
814
|
+
permissionType: AvpDashboardPermissionType;
|
|
815
|
+
};
|
|
816
|
+
export declare type AvpUpdateDashboardResourcePermissionPayload = Payload & {
|
|
817
|
+
__typename?: 'AVPUpdateDashboardResourcePermissionPayload';
|
|
818
|
+
errors?: Maybe<Array<MutationError>>;
|
|
819
|
+
success: Scalars['Boolean']['output'];
|
|
820
|
+
};
|
|
812
821
|
export declare type AvpUpdateDashboardRowHeightInput = {
|
|
813
822
|
dashboardAri: Scalars['ID']['input'];
|
|
814
823
|
height: AvpCanvasRowHeight;
|
|
@@ -1013,6 +1022,7 @@ export declare type ActionsActionableAppEdge = {
|
|
|
1013
1022
|
node?: Maybe<ActionsActionableApp>;
|
|
1014
1023
|
};
|
|
1015
1024
|
export declare type ActionsActionableAppsFilter = {
|
|
1025
|
+
byActionAri?: InputMaybe<Scalars['String']['input']>;
|
|
1016
1026
|
byActionId?: InputMaybe<Scalars['String']['input']>;
|
|
1017
1027
|
byActionType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1018
1028
|
byActionVerb?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -1059,6 +1069,7 @@ export declare type ActionsDescription = {
|
|
|
1059
1069
|
default: Scalars['String']['output'];
|
|
1060
1070
|
};
|
|
1061
1071
|
export declare type ActionsExecuteActionFilter = {
|
|
1072
|
+
actionAri?: InputMaybe<Scalars['String']['input']>;
|
|
1062
1073
|
actionId?: InputMaybe<Scalars['String']['input']>;
|
|
1063
1074
|
authType?: InputMaybe<Array<InputMaybe<ActionsAuthType>>>;
|
|
1064
1075
|
extensionAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4723,6 +4734,21 @@ export declare type AquaLiveChatSubscriptionResponse = {
|
|
|
4723
4734
|
__typename?: 'AquaLiveChatSubscriptionResponse';
|
|
4724
4735
|
result?: Maybe<Scalars['String']['output']>;
|
|
4725
4736
|
};
|
|
4737
|
+
export declare type AquaMessage = {
|
|
4738
|
+
__typename?: 'AquaMessage';
|
|
4739
|
+
content: Scalars['String']['output'];
|
|
4740
|
+
conversationId: Scalars['String']['output'];
|
|
4741
|
+
id: Scalars['String']['output'];
|
|
4742
|
+
messageType: AquaMessageType;
|
|
4743
|
+
senderId: Scalars['String']['output'];
|
|
4744
|
+
sentAt: Scalars['String']['output'];
|
|
4745
|
+
};
|
|
4746
|
+
export declare enum AquaMessageType {
|
|
4747
|
+
File = "FILE",
|
|
4748
|
+
Image = "IMAGE",
|
|
4749
|
+
System = "SYSTEM",
|
|
4750
|
+
Text = "TEXT"
|
|
4751
|
+
}
|
|
4726
4752
|
export declare type AquaNotificationDetails = {
|
|
4727
4753
|
__typename?: 'AquaNotificationDetails';
|
|
4728
4754
|
actionTaken?: Maybe<Scalars['String']['output']>;
|
|
@@ -4789,6 +4815,11 @@ export declare type AquaProjectContext = {
|
|
|
4789
4815
|
__typename?: 'AquaProjectContext';
|
|
4790
4816
|
id?: Maybe<Scalars['Long']['output']>;
|
|
4791
4817
|
};
|
|
4818
|
+
export declare type AquaSendMessageInput = {
|
|
4819
|
+
content: Scalars['String']['input'];
|
|
4820
|
+
messageType?: InputMaybe<AquaMessageType>;
|
|
4821
|
+
senderId: Scalars['String']['input'];
|
|
4822
|
+
};
|
|
4792
4823
|
export declare type ArchiveFeature = {
|
|
4793
4824
|
__typename?: 'ArchiveFeature';
|
|
4794
4825
|
isEntitled: Scalars['Boolean']['output'];
|
|
@@ -26699,6 +26730,7 @@ export declare type DevConsoleDeveloperSpace = {
|
|
|
26699
26730
|
__typename?: 'DevConsoleDeveloperSpace';
|
|
26700
26731
|
id: Scalars['String']['output'];
|
|
26701
26732
|
name: Scalars['String']['output'];
|
|
26733
|
+
publishStatus: DevConsoleDeveloperSpacePublishStatus;
|
|
26702
26734
|
status: Scalars['String']['output'];
|
|
26703
26735
|
type: DevConsoleDeveloperSpaceType;
|
|
26704
26736
|
version: Scalars['Int']['output'];
|
|
@@ -26708,6 +26740,7 @@ export declare type DevConsoleDeveloperSpaceDetails = {
|
|
|
26708
26740
|
__typename?: 'DevConsoleDeveloperSpaceDetails';
|
|
26709
26741
|
logo?: Maybe<Scalars['String']['output']>;
|
|
26710
26742
|
name: Scalars['String']['output'];
|
|
26743
|
+
publishStatus: DevConsoleDeveloperSpacePublishStatus;
|
|
26711
26744
|
};
|
|
26712
26745
|
export declare type DevConsoleDeveloperSpaceDetailsResult = {
|
|
26713
26746
|
__typename?: 'DevConsoleDeveloperSpaceDetailsResult';
|
|
@@ -26758,6 +26791,10 @@ export declare type DevConsoleDeveloperSpacePermissions = {
|
|
|
26758
26791
|
canViewDevSpaceDetails?: Maybe<Scalars['Boolean']['output']>;
|
|
26759
26792
|
canViewDevSpaceMembers?: Maybe<Scalars['Boolean']['output']>;
|
|
26760
26793
|
};
|
|
26794
|
+
export declare enum DevConsoleDeveloperSpacePublishStatus {
|
|
26795
|
+
Private = "PRIVATE",
|
|
26796
|
+
Public = "PUBLIC"
|
|
26797
|
+
}
|
|
26761
26798
|
export declare type DevConsoleDeveloperSpaceSettingsPayload = Payload & {
|
|
26762
26799
|
__typename?: 'DevConsoleDeveloperSpaceSettingsPayload';
|
|
26763
26800
|
devSpace?: Maybe<DevConsoleDeveloperSpace>;
|
|
@@ -60065,6 +60102,7 @@ export declare type HelpCenterContentGapIndicatorsWithMetaData = {
|
|
|
60065
60102
|
contentGapIndicators?: Maybe<Array<HelpCenterContentGapIndicator>>;
|
|
60066
60103
|
};
|
|
60067
60104
|
export declare type HelpCenterCreateInput = {
|
|
60105
|
+
helpCenterType?: InputMaybe<HelpCenterTypeInput>;
|
|
60068
60106
|
homePageLayout?: InputMaybe<HelpCenterHomePageLayoutInput>;
|
|
60069
60107
|
name: HelpCenterNameInput;
|
|
60070
60108
|
slug: Scalars['String']['input'];
|
|
@@ -60635,8 +60673,14 @@ export declare enum HelpCenterType {
|
|
|
60635
60673
|
Advanced = "ADVANCED",
|
|
60636
60674
|
Basic = "BASIC",
|
|
60637
60675
|
CustomerService = "CUSTOMER_SERVICE",
|
|
60676
|
+
HelpHub = "HELP_HUB",
|
|
60638
60677
|
Unified = "UNIFIED"
|
|
60639
60678
|
}
|
|
60679
|
+
export declare enum HelpCenterTypeInput {
|
|
60680
|
+
Basic = "BASIC",
|
|
60681
|
+
CustomerService = "CUSTOMER_SERVICE",
|
|
60682
|
+
HelpHub = "HELP_HUB"
|
|
60683
|
+
}
|
|
60640
60684
|
export declare type HelpCenterUpdateInput = {
|
|
60641
60685
|
helpCenterAri: Scalars['String']['input'];
|
|
60642
60686
|
helpCenterBranding?: InputMaybe<HelpCenterBrandingInput>;
|
|
@@ -64880,6 +64924,7 @@ export declare type JiraBulkCreateIssueLinksPayload = Payload & {
|
|
|
64880
64924
|
__typename?: 'JiraBulkCreateIssueLinksPayload';
|
|
64881
64925
|
errors?: Maybe<Array<MutationError>>;
|
|
64882
64926
|
issueLinkEdges?: Maybe<Array<JiraIssueLinkEdge>>;
|
|
64927
|
+
issueLinkField?: Maybe<JiraIssueLinkField>;
|
|
64883
64928
|
success: Scalars['Boolean']['output'];
|
|
64884
64929
|
};
|
|
64885
64930
|
export declare type JiraBulkDeleteInput = {
|
|
@@ -66927,6 +66972,8 @@ export declare type JiraCustomFieldType = {
|
|
|
66927
66972
|
isManaged?: Maybe<Scalars['Boolean']['output']>;
|
|
66928
66973
|
key?: Maybe<Scalars['String']['output']>;
|
|
66929
66974
|
name?: Maybe<Scalars['String']['output']>;
|
|
66975
|
+
providerConnectAppName?: Maybe<Scalars['String']['output']>;
|
|
66976
|
+
providerForgeApp?: Maybe<App>;
|
|
66930
66977
|
type?: Maybe<JiraConfigFieldType>;
|
|
66931
66978
|
};
|
|
66932
66979
|
export declare enum JiraCustomFieldTypeCategory {
|
|
@@ -67320,6 +67367,7 @@ export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
|
67320
67367
|
deletedIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
67321
67368
|
errors?: Maybe<Array<MutationError>>;
|
|
67322
67369
|
id?: Maybe<Scalars['ID']['output']>;
|
|
67370
|
+
issueLinkField?: Maybe<JiraIssueLinkField>;
|
|
67323
67371
|
issueLinkId?: Maybe<Scalars['ID']['output']>;
|
|
67324
67372
|
success: Scalars['Boolean']['output'];
|
|
67325
67373
|
};
|
|
@@ -67417,6 +67465,7 @@ export declare type JiraDetailedView = JiraIssueSearchViewMetadata & JiraView &
|
|
|
67417
67465
|
jql?: Maybe<Scalars['String']['output']>;
|
|
67418
67466
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
67419
67467
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
67468
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
67420
67469
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
67421
67470
|
};
|
|
67422
67471
|
export declare type JiraDetailedViewFieldSetsArgs = {
|
|
@@ -67446,6 +67495,9 @@ export declare type JiraDetailedViewIssuesArgs = {
|
|
|
67446
67495
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
67447
67496
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
67448
67497
|
};
|
|
67498
|
+
export declare type JiraDetailedViewValidateJqlArgs = {
|
|
67499
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
67500
|
+
};
|
|
67449
67501
|
export declare type JiraDevInfoConfigError = {
|
|
67450
67502
|
__typename?: 'JiraDevInfoConfigError';
|
|
67451
67503
|
dataProviderId?: Maybe<Scalars['String']['output']>;
|
|
@@ -69463,6 +69515,7 @@ export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpre
|
|
|
69463
69515
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
69464
69516
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
69465
69517
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
69518
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
69466
69519
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
69467
69520
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
69468
69521
|
};
|
|
@@ -69496,6 +69549,9 @@ export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
|
|
|
69496
69549
|
export declare type JiraGroupedListViewIsViewConfigModifiedArgs = {
|
|
69497
69550
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
69498
69551
|
};
|
|
69552
|
+
export declare type JiraGroupedListViewValidateJqlArgs = {
|
|
69553
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
69554
|
+
};
|
|
69499
69555
|
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
69500
69556
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
69501
69557
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -70618,6 +70674,8 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
70618
70674
|
lastUsedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
70619
70675
|
name: Scalars['String']['output'];
|
|
70620
70676
|
plannedDeletionTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
70677
|
+
providerConnectAppName?: Maybe<Scalars['String']['output']>;
|
|
70678
|
+
providerForgeApp?: Maybe<App>;
|
|
70621
70679
|
requiredOnWorkTypes?: Maybe<Array<Maybe<JiraIssueType>>>;
|
|
70622
70680
|
searcherTemplate?: Maybe<JiraFieldSearcherTemplate>;
|
|
70623
70681
|
searcherTemplateOptions?: Maybe<JiraFieldSearcherTemplateConnection>;
|
|
@@ -71588,6 +71646,7 @@ export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
|
71588
71646
|
jql?: Maybe<Scalars['String']['output']>;
|
|
71589
71647
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
71590
71648
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
71649
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
71591
71650
|
viewConfigSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
71592
71651
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
71593
71652
|
};
|
|
@@ -71605,6 +71664,9 @@ export declare type JiraIssueSearchViewHasDefaultFieldSetsArgs = {
|
|
|
71605
71664
|
export declare type JiraIssueSearchViewIsViewConfigModifiedArgs = {
|
|
71606
71665
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
71607
71666
|
};
|
|
71667
|
+
export declare type JiraIssueSearchViewValidateJqlArgs = {
|
|
71668
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
71669
|
+
};
|
|
71608
71670
|
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
|
|
71609
71671
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
71610
71672
|
};
|
|
@@ -71686,6 +71748,7 @@ export declare type JiraIssueSearchViewMetadata = {
|
|
|
71686
71748
|
jql?: Maybe<Scalars['String']['output']>;
|
|
71687
71749
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
71688
71750
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
71751
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
71689
71752
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
71690
71753
|
};
|
|
71691
71754
|
export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
|
|
@@ -71702,6 +71765,9 @@ export declare type JiraIssueSearchViewMetadataHasDefaultFieldSetsArgs = {
|
|
|
71702
71765
|
export declare type JiraIssueSearchViewMetadataIsViewConfigModifiedArgs = {
|
|
71703
71766
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
71704
71767
|
};
|
|
71768
|
+
export declare type JiraIssueSearchViewMetadataValidateJqlArgs = {
|
|
71769
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
71770
|
+
};
|
|
71705
71771
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
71706
71772
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
71707
71773
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -72820,6 +72886,14 @@ export declare enum JiraJqlSyntaxError {
|
|
|
72820
72886
|
UnfinishedString = "UNFINISHED_STRING",
|
|
72821
72887
|
Unknown = "UNKNOWN"
|
|
72822
72888
|
}
|
|
72889
|
+
export declare type JiraJqlTeamFieldValue = JiraJqlFieldValue & {
|
|
72890
|
+
__typename?: 'JiraJqlTeamFieldValue';
|
|
72891
|
+
displayName: Scalars['String']['output'];
|
|
72892
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
72893
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
72894
|
+
jqlTerm: Scalars['String']['output'];
|
|
72895
|
+
team: JiraAtlassianTeam;
|
|
72896
|
+
};
|
|
72823
72897
|
export declare type JiraJqlTownsquareProjectFieldValue = JiraJqlFieldValue & {
|
|
72824
72898
|
__typename?: 'JiraJqlTownsquareProjectFieldValue';
|
|
72825
72899
|
displayName: Scalars['String']['output'];
|
|
@@ -72847,6 +72921,11 @@ export declare type JiraJqlUserFieldValueEdge = {
|
|
|
72847
72921
|
cursor: Scalars['String']['output'];
|
|
72848
72922
|
node?: Maybe<JiraJqlUserFieldValue>;
|
|
72849
72923
|
};
|
|
72924
|
+
export declare type JiraJqlValidationResult = {
|
|
72925
|
+
__typename?: 'JiraJqlValidationResult';
|
|
72926
|
+
errors: Array<QueryError>;
|
|
72927
|
+
isValid: Scalars['Boolean']['output'];
|
|
72928
|
+
};
|
|
72850
72929
|
export declare type JiraJqlVersionFieldValue = JiraJqlFieldValue & {
|
|
72851
72930
|
__typename?: 'JiraJqlVersionFieldValue';
|
|
72852
72931
|
displayName: Scalars['String']['output'];
|
|
@@ -73077,6 +73156,7 @@ export declare type JiraListView = JiraIssueSearchViewMetadata & JiraSpreadsheet
|
|
|
73077
73156
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
73078
73157
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
73079
73158
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
73159
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
73080
73160
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
73081
73161
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
73082
73162
|
};
|
|
@@ -73112,6 +73192,9 @@ export declare type JiraListViewIssuesArgs = {
|
|
|
73112
73192
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
73113
73193
|
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
73114
73194
|
};
|
|
73195
|
+
export declare type JiraListViewValidateJqlArgs = {
|
|
73196
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
73197
|
+
};
|
|
73115
73198
|
export declare type JiraListViewViewSettingsArgs = {
|
|
73116
73199
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
73117
73200
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -81337,6 +81420,7 @@ export declare type JiraSpreadsheetView = {
|
|
|
81337
81420
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
81338
81421
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
81339
81422
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
81423
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
81340
81424
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
81341
81425
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
81342
81426
|
};
|
|
@@ -81358,6 +81442,9 @@ export declare type JiraSpreadsheetViewHasDefaultFieldSetsArgs = {
|
|
|
81358
81442
|
export declare type JiraSpreadsheetViewIsViewConfigModifiedArgs = {
|
|
81359
81443
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
81360
81444
|
};
|
|
81445
|
+
export declare type JiraSpreadsheetViewValidateJqlArgs = {
|
|
81446
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
81447
|
+
};
|
|
81361
81448
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
81362
81449
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
81363
81450
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -82190,6 +82277,7 @@ export declare type JiraTimelineView = JiraFieldSetsViewMetadata & JiraIssueSear
|
|
|
82190
82277
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
82191
82278
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
82192
82279
|
timelineSettings?: Maybe<JiraIssueSearchTimelineViewConfigSettings>;
|
|
82280
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
82193
82281
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
82194
82282
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
82195
82283
|
};
|
|
@@ -82227,6 +82315,9 @@ export declare type JiraTimelineViewIssuesArgs = {
|
|
|
82227
82315
|
export declare type JiraTimelineViewTimelineSettingsArgs = {
|
|
82228
82316
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
82229
82317
|
};
|
|
82318
|
+
export declare type JiraTimelineViewValidateJqlArgs = {
|
|
82319
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
82320
|
+
};
|
|
82230
82321
|
export declare type JiraTimelineViewViewSettingsArgs = {
|
|
82231
82322
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
82232
82323
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -84508,7 +84599,6 @@ export declare type JpdPlayEvent = {
|
|
|
84508
84599
|
__typename?: 'JpdPlayEvent';
|
|
84509
84600
|
parameters: JpdPlayParameters;
|
|
84510
84601
|
playAri: Scalars['ID']['output'];
|
|
84511
|
-
playId: Scalars['Int']['output'];
|
|
84512
84602
|
projectAri: Scalars['ID']['output'];
|
|
84513
84603
|
updatedByUserId: Scalars['ID']['output'];
|
|
84514
84604
|
updatedTime: Scalars['String']['output'];
|
|
@@ -89308,9 +89398,15 @@ export declare type MarketplaceStoreCollectionUsecases = {
|
|
|
89308
89398
|
heading: Scalars['String']['output'];
|
|
89309
89399
|
values: Array<MarketplaceStoreCollectionUsecasesValues>;
|
|
89310
89400
|
};
|
|
89401
|
+
export declare type MarketplaceStoreCollectionUsecasesImage = {
|
|
89402
|
+
__typename?: 'MarketplaceStoreCollectionUsecasesImage';
|
|
89403
|
+
altText: Scalars['String']['output'];
|
|
89404
|
+
url: Scalars['String']['output'];
|
|
89405
|
+
};
|
|
89311
89406
|
export declare type MarketplaceStoreCollectionUsecasesValues = {
|
|
89312
89407
|
__typename?: 'MarketplaceStoreCollectionUsecasesValues';
|
|
89313
89408
|
description: Scalars['String']['output'];
|
|
89409
|
+
image?: Maybe<MarketplaceStoreCollectionUsecasesImage>;
|
|
89314
89410
|
title: Scalars['String']['output'];
|
|
89315
89411
|
};
|
|
89316
89412
|
export declare type MarketplaceStoreCompatibleProducts = {
|
|
@@ -89510,6 +89606,7 @@ export declare type MarketplaceStoreHostStatusResponse = {
|
|
|
89510
89606
|
export declare type MarketplaceStoreInstallAppInput = {
|
|
89511
89607
|
appKey: Scalars['String']['input'];
|
|
89512
89608
|
chargeQuantity?: InputMaybe<Scalars['Int']['input']>;
|
|
89609
|
+
installationId?: InputMaybe<Scalars['String']['input']>;
|
|
89513
89610
|
offeringId?: InputMaybe<Scalars['String']['input']>;
|
|
89514
89611
|
target: MarketplaceStoreInstallAppTargetInput;
|
|
89515
89612
|
};
|
|
@@ -89838,6 +89935,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
89838
89935
|
orgId: MarketplaceStoreOrgIdResponse;
|
|
89839
89936
|
partner: MarketplaceStorePartnerResponse;
|
|
89840
89937
|
siteDetails: MarketplaceStoreSiteDetailsResponse;
|
|
89938
|
+
userProfile: MarketplaceStoreUserProfileResponse;
|
|
89841
89939
|
};
|
|
89842
89940
|
export declare type MarketplaceStoreQueryApiAppReviewByIdArgs = {
|
|
89843
89941
|
appKey: Scalars['String']['input'];
|
|
@@ -89922,6 +90020,9 @@ export declare type MarketplaceStoreQueryApiPartnerArgs = {
|
|
|
89922
90020
|
export declare type MarketplaceStoreQueryApiSiteDetailsArgs = {
|
|
89923
90021
|
input: MarketplaceStoreSiteDetailsInput;
|
|
89924
90022
|
};
|
|
90023
|
+
export declare type MarketplaceStoreQueryApiUserProfileArgs = {
|
|
90024
|
+
userId: Scalars['String']['input'];
|
|
90025
|
+
};
|
|
89925
90026
|
export declare type MarketplaceStoreReviewAuthor = {
|
|
89926
90027
|
__typename?: 'MarketplaceStoreReviewAuthor';
|
|
89927
90028
|
id: Scalars['ID']['output'];
|
|
@@ -90003,6 +90104,14 @@ export declare type MarketplaceStoreUpdateReviewVoteResponse = {
|
|
|
90003
90104
|
id: Scalars['ID']['output'];
|
|
90004
90105
|
status?: Maybe<Scalars['String']['output']>;
|
|
90005
90106
|
};
|
|
90107
|
+
export declare type MarketplaceStoreUserProfileResponse = {
|
|
90108
|
+
__typename?: 'MarketplaceStoreUserProfileResponse';
|
|
90109
|
+
developerSpaces?: Maybe<Array<MarketplaceStoreLoggedInUserDeveloperSpace>>;
|
|
90110
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
90111
|
+
id: Scalars['ID']['output'];
|
|
90112
|
+
name: Scalars['String']['output'];
|
|
90113
|
+
picture: Scalars['String']['output'];
|
|
90114
|
+
};
|
|
90006
90115
|
export declare type MarketplaceSupportedAtlassianProduct = {
|
|
90007
90116
|
__typename?: 'MarketplaceSupportedAtlassianProduct';
|
|
90008
90117
|
hostingOptions: Array<AtlassianProductHostingType>;
|
|
@@ -93623,6 +93732,7 @@ export declare type Mutation = {
|
|
|
93623
93732
|
avp_updateChart?: Maybe<AvpUpdateChartPayload>;
|
|
93624
93733
|
avp_updateDashboard?: Maybe<AvpUpdateDashboardPayload>;
|
|
93625
93734
|
avp_updateDashboardFilter?: Maybe<AvpUpdateDashboardFilterPayload>;
|
|
93735
|
+
avp_updateDashboardResourcePermission?: Maybe<AvpUpdateDashboardResourcePermissionPayload>;
|
|
93626
93736
|
avp_updateDashboardRowHeight?: Maybe<AvpUpdateDashboardRowHeightPayload>;
|
|
93627
93737
|
avp_updateDashboardRowNumElements?: Maybe<AvpUpdateDashboardRowNumElementsPayload>;
|
|
93628
93738
|
avp_updateDashboardStatus?: Maybe<AvpUpdateDashboardStatusPayload>;
|
|
@@ -93898,9 +94008,11 @@ export declare type Mutation = {
|
|
|
93898
94008
|
goals_editMetric?: Maybe<TownsquareGoalsEditMetricPayload>;
|
|
93899
94009
|
goals_editMetricTarget?: Maybe<TownsquareGoalsEditMetricTargetPayload>;
|
|
93900
94010
|
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
94011
|
+
goals_linkWorkItem?: Maybe<TownsquareGoalsLinkWorkItemPayload>;
|
|
93901
94012
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
93902
94013
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
93903
94014
|
goals_shareGoal?: Maybe<TownsquareGoalsShareGoalPayload>;
|
|
94015
|
+
goals_unlinkWorkItem?: Maybe<TownsquareGoalsUnlinkWorkItemPayload>;
|
|
93904
94016
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
93905
94017
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
93906
94018
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
@@ -94135,6 +94247,7 @@ export declare type Mutation = {
|
|
|
94135
94247
|
revertToLegacyEditor?: Maybe<RevertToLegacyEditorResult>;
|
|
94136
94248
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
94137
94249
|
runImport?: Maybe<RunImportPayload>;
|
|
94250
|
+
sendMessage: AquaMessage;
|
|
94138
94251
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
94139
94252
|
setAppLicenseId?: Maybe<SetAppLicenseIdResponse>;
|
|
94140
94253
|
setBatchedTaskStatus?: Maybe<GraphQlMutationResponse>;
|
|
@@ -94203,6 +94316,8 @@ export declare type Mutation = {
|
|
|
94203
94316
|
stakeholderComms_createPage?: Maybe<StakeholderCommsPageResponse>;
|
|
94204
94317
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
94205
94318
|
stakeholderComms_createStakeholderGroupAndMembers?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
|
|
94319
|
+
stakeholderComms_deleteDraftPage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
94320
|
+
stakeholderComms_deletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
94206
94321
|
stakeholderComms_deleteStakeholder?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
94207
94322
|
stakeholderComms_publishPage?: Maybe<StakeholderCommsPageResponse>;
|
|
94208
94323
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
@@ -94676,6 +94791,9 @@ export declare type MutationAvp_UpdateDashboardArgs = {
|
|
|
94676
94791
|
export declare type MutationAvp_UpdateDashboardFilterArgs = {
|
|
94677
94792
|
input: AvpUpdateDashboardFilterInput;
|
|
94678
94793
|
};
|
|
94794
|
+
export declare type MutationAvp_UpdateDashboardResourcePermissionArgs = {
|
|
94795
|
+
input: AvpUpdateDashboardResourcePermissionInput;
|
|
94796
|
+
};
|
|
94679
94797
|
export declare type MutationAvp_UpdateDashboardRowHeightArgs = {
|
|
94680
94798
|
input: AvpUpdateDashboardRowHeightInput;
|
|
94681
94799
|
};
|
|
@@ -95658,6 +95776,9 @@ export declare type MutationGoals_EditMetricTargetArgs = {
|
|
|
95658
95776
|
export declare type MutationGoals_EditUpdateArgs = {
|
|
95659
95777
|
input?: InputMaybe<TownsquareGoalsEditUpdateInput>;
|
|
95660
95778
|
};
|
|
95779
|
+
export declare type MutationGoals_LinkWorkItemArgs = {
|
|
95780
|
+
input: TownsquareGoalsLinkWorkItemInput;
|
|
95781
|
+
};
|
|
95661
95782
|
export declare type MutationGoals_RemoveGoalTeamLinkArgs = {
|
|
95662
95783
|
input?: InputMaybe<TownsquareGoalsRemoveGoalTeamLinkInput>;
|
|
95663
95784
|
};
|
|
@@ -95667,6 +95788,9 @@ export declare type MutationGoals_SetWatchingGoalArgs = {
|
|
|
95667
95788
|
export declare type MutationGoals_ShareGoalArgs = {
|
|
95668
95789
|
input: TownsquareGoalsShareGoalInput;
|
|
95669
95790
|
};
|
|
95791
|
+
export declare type MutationGoals_UnlinkWorkItemArgs = {
|
|
95792
|
+
input?: InputMaybe<TownsquareGoalsUnlinkWorkItemInput>;
|
|
95793
|
+
};
|
|
95670
95794
|
export declare type MutationGrantContentAccessArgs = {
|
|
95671
95795
|
grantContentAccessInput: GrantContentAccessInput;
|
|
95672
95796
|
};
|
|
@@ -96364,6 +96488,10 @@ export declare type MutationRevertToLegacyEditorArgs = {
|
|
|
96364
96488
|
export declare type MutationRunImportArgs = {
|
|
96365
96489
|
input: RunImportInput;
|
|
96366
96490
|
};
|
|
96491
|
+
export declare type MutationSendMessageArgs = {
|
|
96492
|
+
conversationId: Scalars['String']['input'];
|
|
96493
|
+
input: AquaSendMessageInput;
|
|
96494
|
+
};
|
|
96367
96495
|
export declare type MutationSetAppEnvironmentVariableArgs = {
|
|
96368
96496
|
input: SetAppEnvironmentVariableInput;
|
|
96369
96497
|
};
|
|
@@ -96581,6 +96709,12 @@ export declare type MutationStakeholderComms_CreateStakeholderGroupAndMembersArg
|
|
|
96581
96709
|
stakeholderGroupInput: StakeholderCommsCreateStakeholderGroupInput;
|
|
96582
96710
|
stakeholders?: InputMaybe<Array<InputMaybe<StakeholderCommsCreateStakeholderInput>>>;
|
|
96583
96711
|
};
|
|
96712
|
+
export declare type MutationStakeholderComms_DeleteDraftPageArgs = {
|
|
96713
|
+
pageId: Scalars['String']['input'];
|
|
96714
|
+
};
|
|
96715
|
+
export declare type MutationStakeholderComms_DeletePageArgs = {
|
|
96716
|
+
pageId: Scalars['String']['input'];
|
|
96717
|
+
};
|
|
96584
96718
|
export declare type MutationStakeholderComms_DeleteStakeholderArgs = {
|
|
96585
96719
|
id: Scalars['String']['input'];
|
|
96586
96720
|
};
|
|
@@ -100551,12 +100685,14 @@ export declare type Query = {
|
|
|
100551
100685
|
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
100552
100686
|
stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
100553
100687
|
stakeholderComms_getStakeholdersbyAri?: Maybe<Array<Maybe<StakeholderCommsSimplifiedStakeholder>>>;
|
|
100688
|
+
stakeholderComms_getUniqueSubdomainForPage?: Maybe<Scalars['String']['output']>;
|
|
100554
100689
|
stakeholderComms_getUploadMediaToken?: Maybe<StakeholderCommsMediaToken>;
|
|
100555
100690
|
stakeholderComms_getWorkspaceAriMappingByCustomDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
100556
100691
|
stakeholderComms_getWorkspaceAriMappingByPageId?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
100557
100692
|
stakeholderComms_getWorkspaceAriMappingByStatuspageDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
100558
100693
|
stakeholderComms_isPageNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
100559
100694
|
stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
100695
|
+
stakeholderComms_isUniqueSubdomainAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
100560
100696
|
stakeholderComms_listIncidents?: Maybe<StakeholderCommsListIncidentResponse>;
|
|
100561
100697
|
stakeholderComms_listIncidentsV2?: Maybe<StakeholderCommsIncidentWithUpdatesConnection>;
|
|
100562
100698
|
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
@@ -103917,6 +104053,9 @@ export declare type QueryStakeholderComms_GetStakeholdersByAssignmentV2Args = {
|
|
|
103917
104053
|
export declare type QueryStakeholderComms_GetStakeholdersbyAriArgs = {
|
|
103918
104054
|
stakeholderAris: Array<Scalars['String']['input']>;
|
|
103919
104055
|
};
|
|
104056
|
+
export declare type QueryStakeholderComms_GetUniqueSubdomainForPageArgs = {
|
|
104057
|
+
pageName: Scalars['String']['input'];
|
|
104058
|
+
};
|
|
103920
104059
|
export declare type QueryStakeholderComms_GetWorkspaceAriMappingByCustomDomainArgs = {
|
|
103921
104060
|
customDomain: Scalars['String']['input'];
|
|
103922
104061
|
};
|
|
@@ -103932,6 +104071,9 @@ export declare type QueryStakeholderComms_IsPageNameUniqueArgs = {
|
|
|
103932
104071
|
export declare type QueryStakeholderComms_IsStakeholderGroupNameUniqueArgs = {
|
|
103933
104072
|
name: Scalars['String']['input'];
|
|
103934
104073
|
};
|
|
104074
|
+
export declare type QueryStakeholderComms_IsUniqueSubdomainAvailableArgs = {
|
|
104075
|
+
subdomain: Scalars['String']['input'];
|
|
104076
|
+
};
|
|
103935
104077
|
export declare type QueryStakeholderComms_ListIncidentsArgs = {
|
|
103936
104078
|
listIncidentInput?: InputMaybe<StakeholderCommsListIncidentInput>;
|
|
103937
104079
|
};
|
|
@@ -104356,11 +104498,6 @@ export declare type RadarDateFieldValue = {
|
|
|
104356
104498
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
104357
104499
|
value?: Maybe<Scalars['DateTime']['output']>;
|
|
104358
104500
|
};
|
|
104359
|
-
export declare type RadarDateTimeFieldValue = {
|
|
104360
|
-
__typename?: 'RadarDateTimeFieldValue';
|
|
104361
|
-
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
104362
|
-
value?: Maybe<Scalars['DateTime']['output']>;
|
|
104363
|
-
};
|
|
104364
104501
|
export declare type RadarDeleteConnectorInput = {
|
|
104365
104502
|
connectorId: Scalars['ID']['input'];
|
|
104366
104503
|
};
|
|
@@ -104437,7 +104574,6 @@ export declare enum RadarFieldType {
|
|
|
104437
104574
|
Ari = "ARI",
|
|
104438
104575
|
Boolean = "BOOLEAN",
|
|
104439
104576
|
Date = "DATE",
|
|
104440
|
-
Datetime = "DATETIME",
|
|
104441
104577
|
Keyword = "KEYWORD",
|
|
104442
104578
|
Money = "MONEY",
|
|
104443
104579
|
Number = "NUMBER",
|
|
@@ -104445,7 +104581,7 @@ export declare enum RadarFieldType {
|
|
|
104445
104581
|
String = "STRING",
|
|
104446
104582
|
Url = "URL"
|
|
104447
104583
|
}
|
|
104448
|
-
export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue |
|
|
104584
|
+
export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarMoneyFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue;
|
|
104449
104585
|
export declare type RadarFieldValueIdPair = {
|
|
104450
104586
|
__typename?: 'RadarFieldValueIdPair';
|
|
104451
104587
|
fieldId: Scalars['ID']['output'];
|
|
@@ -128790,6 +128926,11 @@ export declare type StakeholderCommsPageComponentsWithUptimeResponse = {
|
|
|
128790
128926
|
pageComponentsUptime?: Maybe<Array<Maybe<StakeholderCommsNestedComponentWithUptime>>>;
|
|
128791
128927
|
pageUptime?: Maybe<StakeholderCommsPageUptime>;
|
|
128792
128928
|
};
|
|
128929
|
+
export declare type StakeholderCommsPageDeleteResponse = {
|
|
128930
|
+
__typename?: 'StakeholderCommsPageDeleteResponse';
|
|
128931
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
128932
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
128933
|
+
};
|
|
128793
128934
|
export declare type StakeholderCommsPageDraftComponentResponse = {
|
|
128794
128935
|
__typename?: 'StakeholderCommsPageDraftComponentResponse';
|
|
128795
128936
|
components?: Maybe<Array<Maybe<StakeholderCommsNestedComponent>>>;
|
|
@@ -131522,6 +131663,16 @@ export declare type TownsquareGoalsEditUpdatePayload = {
|
|
|
131522
131663
|
success: Scalars['Boolean']['output'];
|
|
131523
131664
|
update?: Maybe<TownsquareGoalUpdate>;
|
|
131524
131665
|
};
|
|
131666
|
+
export declare type TownsquareGoalsLinkWorkItemInput = {
|
|
131667
|
+
goalId: Scalars['ID']['input'];
|
|
131668
|
+
workItemId: Scalars['ID']['input'];
|
|
131669
|
+
};
|
|
131670
|
+
export declare type TownsquareGoalsLinkWorkItemPayload = {
|
|
131671
|
+
__typename?: 'TownsquareGoalsLinkWorkItemPayload';
|
|
131672
|
+
errors?: Maybe<Array<MutationError>>;
|
|
131673
|
+
goal?: Maybe<TownsquareGoal>;
|
|
131674
|
+
success: Scalars['Boolean']['output'];
|
|
131675
|
+
};
|
|
131525
131676
|
export declare type TownsquareGoalsRemoveGoalTeamLinkInput = {
|
|
131526
131677
|
goalId: Scalars['ID']['input'];
|
|
131527
131678
|
teamId: Scalars['ID']['input'];
|
|
@@ -131556,6 +131707,16 @@ export declare type TownsquareGoalsShareGoalPayload = {
|
|
|
131556
131707
|
success: Scalars['Boolean']['output'];
|
|
131557
131708
|
usersAdded?: Maybe<Array<User>>;
|
|
131558
131709
|
};
|
|
131710
|
+
export declare type TownsquareGoalsUnlinkWorkItemInput = {
|
|
131711
|
+
goalId: Scalars['ID']['input'];
|
|
131712
|
+
workItemId: Scalars['ID']['input'];
|
|
131713
|
+
};
|
|
131714
|
+
export declare type TownsquareGoalsUnlinkWorkItemPayload = {
|
|
131715
|
+
__typename?: 'TownsquareGoalsUnlinkWorkItemPayload';
|
|
131716
|
+
errors?: Maybe<Array<MutationError>>;
|
|
131717
|
+
goal?: Maybe<TownsquareGoal>;
|
|
131718
|
+
success: Scalars['Boolean']['output'];
|
|
131719
|
+
};
|
|
131559
131720
|
export declare type TownsquareHighlight = {
|
|
131560
131721
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
131561
131722
|
creator?: Maybe<User>;
|
|
@@ -135168,6 +135329,7 @@ export declare type TrelloMutationApi = {
|
|
|
135168
135329
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
135169
135330
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
135170
135331
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
135332
|
+
resetCardCover?: Maybe<TrelloResetCardCoverPayload>;
|
|
135171
135333
|
smartScheduleCards?: Maybe<TrelloProposedSmartSchedule>;
|
|
135172
135334
|
smartScheduleCardsWithSmartSelection?: Maybe<TrelloProposedSmartSchedule>;
|
|
135173
135335
|
sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
|
|
@@ -135270,6 +135432,9 @@ export declare type TrelloMutationApiRemoveMemberFromWorkspaceArgs = {
|
|
|
135270
135432
|
export declare type TrelloMutationApiRemoveWorkspaceTagFromBoardArgs = {
|
|
135271
135433
|
input: TrelloRemoveWorkspaceTagFromBoardInput;
|
|
135272
135434
|
};
|
|
135435
|
+
export declare type TrelloMutationApiResetCardCoverArgs = {
|
|
135436
|
+
input: TrelloResetCardCoverInput;
|
|
135437
|
+
};
|
|
135273
135438
|
export declare type TrelloMutationApiSmartScheduleCardsArgs = {
|
|
135274
135439
|
input: TrelloSmartScheduleCardsInput;
|
|
135275
135440
|
};
|
|
@@ -136125,6 +136290,15 @@ export declare type TrelloRemoveWorkspaceTagFromBoardPayload = Payload & {
|
|
|
136125
136290
|
errors?: Maybe<Array<MutationError>>;
|
|
136126
136291
|
success: Scalars['Boolean']['output'];
|
|
136127
136292
|
};
|
|
136293
|
+
export declare type TrelloResetCardCoverInput = {
|
|
136294
|
+
cardId: Scalars['ID']['input'];
|
|
136295
|
+
};
|
|
136296
|
+
export declare type TrelloResetCardCoverPayload = Payload & {
|
|
136297
|
+
__typename?: 'TrelloResetCardCoverPayload';
|
|
136298
|
+
cardId: Scalars['ID']['output'];
|
|
136299
|
+
errors?: Maybe<Array<MutationError>>;
|
|
136300
|
+
success: Scalars['Boolean']['output'];
|
|
136301
|
+
};
|
|
136128
136302
|
export declare type TrelloScaleProps = {
|
|
136129
136303
|
__typename?: 'TrelloScaleProps';
|
|
136130
136304
|
height?: Maybe<Scalars['Int']['output']>;
|
|
@@ -136308,6 +136482,7 @@ export declare type TrelloUpdateBoardBackgroundInput = {
|
|
|
136308
136482
|
};
|
|
136309
136483
|
export declare type TrelloUpdateBoardBackgroundPayload = Payload & {
|
|
136310
136484
|
__typename?: 'TrelloUpdateBoardBackgroundPayload';
|
|
136485
|
+
boardId?: Maybe<Scalars['ID']['output']>;
|
|
136311
136486
|
errors?: Maybe<Array<MutationError>>;
|
|
136312
136487
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
136313
136488
|
success: Scalars['Boolean']['output'];
|
|
@@ -136557,6 +136732,7 @@ export declare type TrelloUpdateInboxBackgroundInput = {
|
|
|
136557
136732
|
export declare type TrelloUpdateInboxBackgroundPayload = Payload & {
|
|
136558
136733
|
__typename?: 'TrelloUpdateInboxBackgroundPayload';
|
|
136559
136734
|
errors?: Maybe<Array<MutationError>>;
|
|
136735
|
+
memberId?: Maybe<Scalars['ID']['output']>;
|
|
136560
136736
|
prefs?: Maybe<TrelloInboxPrefs>;
|
|
136561
136737
|
success: Scalars['Boolean']['output'];
|
|
136562
136738
|
};
|