@forge/cli-shared 8.8.2-next.4 → 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 +6 -0
- package/out/graphql/graphql-types.d.ts +189 -14
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +54 -36
- 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 +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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>;
|
|
@@ -64126,11 +64170,6 @@ export declare type JiraBacklogData = {
|
|
|
64126
64170
|
supportsPages?: Maybe<Scalars['Boolean']['output']>;
|
|
64127
64171
|
versionData?: Maybe<JiraBacklogVersionData>;
|
|
64128
64172
|
};
|
|
64129
|
-
export declare enum JiraBacklogDestination {
|
|
64130
|
-
Backlog = "BACKLOG",
|
|
64131
|
-
Board = "BOARD",
|
|
64132
|
-
Sprint = "SPRINT"
|
|
64133
|
-
}
|
|
64134
64173
|
export declare type JiraBacklogEpicConfig = {
|
|
64135
64174
|
__typename?: 'JiraBacklogEpicConfig';
|
|
64136
64175
|
colorFieldId?: Maybe<Scalars['String']['output']>;
|
|
@@ -64885,6 +64924,7 @@ export declare type JiraBulkCreateIssueLinksPayload = Payload & {
|
|
|
64885
64924
|
__typename?: 'JiraBulkCreateIssueLinksPayload';
|
|
64886
64925
|
errors?: Maybe<Array<MutationError>>;
|
|
64887
64926
|
issueLinkEdges?: Maybe<Array<JiraIssueLinkEdge>>;
|
|
64927
|
+
issueLinkField?: Maybe<JiraIssueLinkField>;
|
|
64888
64928
|
success: Scalars['Boolean']['output'];
|
|
64889
64929
|
};
|
|
64890
64930
|
export declare type JiraBulkDeleteInput = {
|
|
@@ -66932,6 +66972,8 @@ export declare type JiraCustomFieldType = {
|
|
|
66932
66972
|
isManaged?: Maybe<Scalars['Boolean']['output']>;
|
|
66933
66973
|
key?: Maybe<Scalars['String']['output']>;
|
|
66934
66974
|
name?: Maybe<Scalars['String']['output']>;
|
|
66975
|
+
providerConnectAppName?: Maybe<Scalars['String']['output']>;
|
|
66976
|
+
providerForgeApp?: Maybe<App>;
|
|
66935
66977
|
type?: Maybe<JiraConfigFieldType>;
|
|
66936
66978
|
};
|
|
66937
66979
|
export declare enum JiraCustomFieldTypeCategory {
|
|
@@ -67325,6 +67367,7 @@ export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
|
67325
67367
|
deletedIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
67326
67368
|
errors?: Maybe<Array<MutationError>>;
|
|
67327
67369
|
id?: Maybe<Scalars['ID']['output']>;
|
|
67370
|
+
issueLinkField?: Maybe<JiraIssueLinkField>;
|
|
67328
67371
|
issueLinkId?: Maybe<Scalars['ID']['output']>;
|
|
67329
67372
|
success: Scalars['Boolean']['output'];
|
|
67330
67373
|
};
|
|
@@ -67422,6 +67465,7 @@ export declare type JiraDetailedView = JiraIssueSearchViewMetadata & JiraView &
|
|
|
67422
67465
|
jql?: Maybe<Scalars['String']['output']>;
|
|
67423
67466
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
67424
67467
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
67468
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
67425
67469
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
67426
67470
|
};
|
|
67427
67471
|
export declare type JiraDetailedViewFieldSetsArgs = {
|
|
@@ -67451,6 +67495,9 @@ export declare type JiraDetailedViewIssuesArgs = {
|
|
|
67451
67495
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
67452
67496
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
67453
67497
|
};
|
|
67498
|
+
export declare type JiraDetailedViewValidateJqlArgs = {
|
|
67499
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
67500
|
+
};
|
|
67454
67501
|
export declare type JiraDevInfoConfigError = {
|
|
67455
67502
|
__typename?: 'JiraDevInfoConfigError';
|
|
67456
67503
|
dataProviderId?: Maybe<Scalars['String']['output']>;
|
|
@@ -69468,6 +69515,7 @@ export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpre
|
|
|
69468
69515
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
69469
69516
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
69470
69517
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
69518
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
69471
69519
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
69472
69520
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
69473
69521
|
};
|
|
@@ -69501,6 +69549,9 @@ export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
|
|
|
69501
69549
|
export declare type JiraGroupedListViewIsViewConfigModifiedArgs = {
|
|
69502
69550
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
69503
69551
|
};
|
|
69552
|
+
export declare type JiraGroupedListViewValidateJqlArgs = {
|
|
69553
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
69554
|
+
};
|
|
69504
69555
|
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
69505
69556
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
69506
69557
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -69663,9 +69714,9 @@ export declare type JiraInlineIssueCreateFieldError = {
|
|
|
69663
69714
|
};
|
|
69664
69715
|
export declare type JiraInlineIssueCreateInput = {
|
|
69665
69716
|
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
69666
|
-
destination?: InputMaybe<JiraBacklogDestination>;
|
|
69667
69717
|
fields: JiraIssueFieldsInput;
|
|
69668
69718
|
issueTypeId: Scalars['ID']['input'];
|
|
69719
|
+
kanbanDestination?: InputMaybe<JiraKanbanDestination>;
|
|
69669
69720
|
projectId: Scalars['ID']['input'];
|
|
69670
69721
|
rank?: InputMaybe<JiraIssueCreateRankInput>;
|
|
69671
69722
|
};
|
|
@@ -70623,6 +70674,8 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
70623
70674
|
lastUsedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
70624
70675
|
name: Scalars['String']['output'];
|
|
70625
70676
|
plannedDeletionTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
70677
|
+
providerConnectAppName?: Maybe<Scalars['String']['output']>;
|
|
70678
|
+
providerForgeApp?: Maybe<App>;
|
|
70626
70679
|
requiredOnWorkTypes?: Maybe<Array<Maybe<JiraIssueType>>>;
|
|
70627
70680
|
searcherTemplate?: Maybe<JiraFieldSearcherTemplate>;
|
|
70628
70681
|
searcherTemplateOptions?: Maybe<JiraFieldSearcherTemplateConnection>;
|
|
@@ -71593,6 +71646,7 @@ export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
|
71593
71646
|
jql?: Maybe<Scalars['String']['output']>;
|
|
71594
71647
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
71595
71648
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
71649
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
71596
71650
|
viewConfigSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
71597
71651
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
71598
71652
|
};
|
|
@@ -71610,6 +71664,9 @@ export declare type JiraIssueSearchViewHasDefaultFieldSetsArgs = {
|
|
|
71610
71664
|
export declare type JiraIssueSearchViewIsViewConfigModifiedArgs = {
|
|
71611
71665
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
71612
71666
|
};
|
|
71667
|
+
export declare type JiraIssueSearchViewValidateJqlArgs = {
|
|
71668
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
71669
|
+
};
|
|
71613
71670
|
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
|
|
71614
71671
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
71615
71672
|
};
|
|
@@ -71691,6 +71748,7 @@ export declare type JiraIssueSearchViewMetadata = {
|
|
|
71691
71748
|
jql?: Maybe<Scalars['String']['output']>;
|
|
71692
71749
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
71693
71750
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
71751
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
71694
71752
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
71695
71753
|
};
|
|
71696
71754
|
export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
|
|
@@ -71707,6 +71765,9 @@ export declare type JiraIssueSearchViewMetadataHasDefaultFieldSetsArgs = {
|
|
|
71707
71765
|
export declare type JiraIssueSearchViewMetadataIsViewConfigModifiedArgs = {
|
|
71708
71766
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
71709
71767
|
};
|
|
71768
|
+
export declare type JiraIssueSearchViewMetadataValidateJqlArgs = {
|
|
71769
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
71770
|
+
};
|
|
71710
71771
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
71711
71772
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
71712
71773
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -72825,6 +72886,14 @@ export declare enum JiraJqlSyntaxError {
|
|
|
72825
72886
|
UnfinishedString = "UNFINISHED_STRING",
|
|
72826
72887
|
Unknown = "UNKNOWN"
|
|
72827
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
|
+
};
|
|
72828
72897
|
export declare type JiraJqlTownsquareProjectFieldValue = JiraJqlFieldValue & {
|
|
72829
72898
|
__typename?: 'JiraJqlTownsquareProjectFieldValue';
|
|
72830
72899
|
displayName: Scalars['String']['output'];
|
|
@@ -72852,6 +72921,11 @@ export declare type JiraJqlUserFieldValueEdge = {
|
|
|
72852
72921
|
cursor: Scalars['String']['output'];
|
|
72853
72922
|
node?: Maybe<JiraJqlUserFieldValue>;
|
|
72854
72923
|
};
|
|
72924
|
+
export declare type JiraJqlValidationResult = {
|
|
72925
|
+
__typename?: 'JiraJqlValidationResult';
|
|
72926
|
+
errors: Array<QueryError>;
|
|
72927
|
+
isValid: Scalars['Boolean']['output'];
|
|
72928
|
+
};
|
|
72855
72929
|
export declare type JiraJqlVersionFieldValue = JiraJqlFieldValue & {
|
|
72856
72930
|
__typename?: 'JiraJqlVersionFieldValue';
|
|
72857
72931
|
displayName: Scalars['String']['output'];
|
|
@@ -72910,6 +72984,10 @@ export declare type JiraJwmField = {
|
|
|
72910
72984
|
__typename?: 'JiraJwmField';
|
|
72911
72985
|
encryptedData?: Maybe<Scalars['String']['output']>;
|
|
72912
72986
|
};
|
|
72987
|
+
export declare enum JiraKanbanDestination {
|
|
72988
|
+
Backlog = "BACKLOG",
|
|
72989
|
+
Board = "BOARD"
|
|
72990
|
+
}
|
|
72913
72991
|
export declare type JiraLabel = {
|
|
72914
72992
|
__typename?: 'JiraLabel';
|
|
72915
72993
|
color?: Maybe<JiraColor>;
|
|
@@ -73078,6 +73156,7 @@ export declare type JiraListView = JiraIssueSearchViewMetadata & JiraSpreadsheet
|
|
|
73078
73156
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
73079
73157
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
73080
73158
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
73159
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
73081
73160
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
73082
73161
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
73083
73162
|
};
|
|
@@ -73113,6 +73192,9 @@ export declare type JiraListViewIssuesArgs = {
|
|
|
73113
73192
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
73114
73193
|
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
73115
73194
|
};
|
|
73195
|
+
export declare type JiraListViewValidateJqlArgs = {
|
|
73196
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
73197
|
+
};
|
|
73116
73198
|
export declare type JiraListViewViewSettingsArgs = {
|
|
73117
73199
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
73118
73200
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -81338,6 +81420,7 @@ export declare type JiraSpreadsheetView = {
|
|
|
81338
81420
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
81339
81421
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
81340
81422
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
81423
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
81341
81424
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
81342
81425
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
81343
81426
|
};
|
|
@@ -81359,6 +81442,9 @@ export declare type JiraSpreadsheetViewHasDefaultFieldSetsArgs = {
|
|
|
81359
81442
|
export declare type JiraSpreadsheetViewIsViewConfigModifiedArgs = {
|
|
81360
81443
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
81361
81444
|
};
|
|
81445
|
+
export declare type JiraSpreadsheetViewValidateJqlArgs = {
|
|
81446
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
81447
|
+
};
|
|
81362
81448
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
81363
81449
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
81364
81450
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -82191,6 +82277,7 @@ export declare type JiraTimelineView = JiraFieldSetsViewMetadata & JiraIssueSear
|
|
|
82191
82277
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
82192
82278
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
82193
82279
|
timelineSettings?: Maybe<JiraIssueSearchTimelineViewConfigSettings>;
|
|
82280
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
82194
82281
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
82195
82282
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
82196
82283
|
};
|
|
@@ -82228,6 +82315,9 @@ export declare type JiraTimelineViewIssuesArgs = {
|
|
|
82228
82315
|
export declare type JiraTimelineViewTimelineSettingsArgs = {
|
|
82229
82316
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
82230
82317
|
};
|
|
82318
|
+
export declare type JiraTimelineViewValidateJqlArgs = {
|
|
82319
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
82320
|
+
};
|
|
82231
82321
|
export declare type JiraTimelineViewViewSettingsArgs = {
|
|
82232
82322
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
82233
82323
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -84509,7 +84599,6 @@ export declare type JpdPlayEvent = {
|
|
|
84509
84599
|
__typename?: 'JpdPlayEvent';
|
|
84510
84600
|
parameters: JpdPlayParameters;
|
|
84511
84601
|
playAri: Scalars['ID']['output'];
|
|
84512
|
-
playId: Scalars['Int']['output'];
|
|
84513
84602
|
projectAri: Scalars['ID']['output'];
|
|
84514
84603
|
updatedByUserId: Scalars['ID']['output'];
|
|
84515
84604
|
updatedTime: Scalars['String']['output'];
|
|
@@ -89309,9 +89398,15 @@ export declare type MarketplaceStoreCollectionUsecases = {
|
|
|
89309
89398
|
heading: Scalars['String']['output'];
|
|
89310
89399
|
values: Array<MarketplaceStoreCollectionUsecasesValues>;
|
|
89311
89400
|
};
|
|
89401
|
+
export declare type MarketplaceStoreCollectionUsecasesImage = {
|
|
89402
|
+
__typename?: 'MarketplaceStoreCollectionUsecasesImage';
|
|
89403
|
+
altText: Scalars['String']['output'];
|
|
89404
|
+
url: Scalars['String']['output'];
|
|
89405
|
+
};
|
|
89312
89406
|
export declare type MarketplaceStoreCollectionUsecasesValues = {
|
|
89313
89407
|
__typename?: 'MarketplaceStoreCollectionUsecasesValues';
|
|
89314
89408
|
description: Scalars['String']['output'];
|
|
89409
|
+
image?: Maybe<MarketplaceStoreCollectionUsecasesImage>;
|
|
89315
89410
|
title: Scalars['String']['output'];
|
|
89316
89411
|
};
|
|
89317
89412
|
export declare type MarketplaceStoreCompatibleProducts = {
|
|
@@ -89511,6 +89606,7 @@ export declare type MarketplaceStoreHostStatusResponse = {
|
|
|
89511
89606
|
export declare type MarketplaceStoreInstallAppInput = {
|
|
89512
89607
|
appKey: Scalars['String']['input'];
|
|
89513
89608
|
chargeQuantity?: InputMaybe<Scalars['Int']['input']>;
|
|
89609
|
+
installationId?: InputMaybe<Scalars['String']['input']>;
|
|
89514
89610
|
offeringId?: InputMaybe<Scalars['String']['input']>;
|
|
89515
89611
|
target: MarketplaceStoreInstallAppTargetInput;
|
|
89516
89612
|
};
|
|
@@ -89839,6 +89935,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
89839
89935
|
orgId: MarketplaceStoreOrgIdResponse;
|
|
89840
89936
|
partner: MarketplaceStorePartnerResponse;
|
|
89841
89937
|
siteDetails: MarketplaceStoreSiteDetailsResponse;
|
|
89938
|
+
userProfile: MarketplaceStoreUserProfileResponse;
|
|
89842
89939
|
};
|
|
89843
89940
|
export declare type MarketplaceStoreQueryApiAppReviewByIdArgs = {
|
|
89844
89941
|
appKey: Scalars['String']['input'];
|
|
@@ -89923,6 +90020,9 @@ export declare type MarketplaceStoreQueryApiPartnerArgs = {
|
|
|
89923
90020
|
export declare type MarketplaceStoreQueryApiSiteDetailsArgs = {
|
|
89924
90021
|
input: MarketplaceStoreSiteDetailsInput;
|
|
89925
90022
|
};
|
|
90023
|
+
export declare type MarketplaceStoreQueryApiUserProfileArgs = {
|
|
90024
|
+
userId: Scalars['String']['input'];
|
|
90025
|
+
};
|
|
89926
90026
|
export declare type MarketplaceStoreReviewAuthor = {
|
|
89927
90027
|
__typename?: 'MarketplaceStoreReviewAuthor';
|
|
89928
90028
|
id: Scalars['ID']['output'];
|
|
@@ -90004,6 +90104,14 @@ export declare type MarketplaceStoreUpdateReviewVoteResponse = {
|
|
|
90004
90104
|
id: Scalars['ID']['output'];
|
|
90005
90105
|
status?: Maybe<Scalars['String']['output']>;
|
|
90006
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
|
+
};
|
|
90007
90115
|
export declare type MarketplaceSupportedAtlassianProduct = {
|
|
90008
90116
|
__typename?: 'MarketplaceSupportedAtlassianProduct';
|
|
90009
90117
|
hostingOptions: Array<AtlassianProductHostingType>;
|
|
@@ -93624,6 +93732,7 @@ export declare type Mutation = {
|
|
|
93624
93732
|
avp_updateChart?: Maybe<AvpUpdateChartPayload>;
|
|
93625
93733
|
avp_updateDashboard?: Maybe<AvpUpdateDashboardPayload>;
|
|
93626
93734
|
avp_updateDashboardFilter?: Maybe<AvpUpdateDashboardFilterPayload>;
|
|
93735
|
+
avp_updateDashboardResourcePermission?: Maybe<AvpUpdateDashboardResourcePermissionPayload>;
|
|
93627
93736
|
avp_updateDashboardRowHeight?: Maybe<AvpUpdateDashboardRowHeightPayload>;
|
|
93628
93737
|
avp_updateDashboardRowNumElements?: Maybe<AvpUpdateDashboardRowNumElementsPayload>;
|
|
93629
93738
|
avp_updateDashboardStatus?: Maybe<AvpUpdateDashboardStatusPayload>;
|
|
@@ -93899,9 +94008,11 @@ export declare type Mutation = {
|
|
|
93899
94008
|
goals_editMetric?: Maybe<TownsquareGoalsEditMetricPayload>;
|
|
93900
94009
|
goals_editMetricTarget?: Maybe<TownsquareGoalsEditMetricTargetPayload>;
|
|
93901
94010
|
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
94011
|
+
goals_linkWorkItem?: Maybe<TownsquareGoalsLinkWorkItemPayload>;
|
|
93902
94012
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
93903
94013
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
93904
94014
|
goals_shareGoal?: Maybe<TownsquareGoalsShareGoalPayload>;
|
|
94015
|
+
goals_unlinkWorkItem?: Maybe<TownsquareGoalsUnlinkWorkItemPayload>;
|
|
93905
94016
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
93906
94017
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
93907
94018
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
@@ -94136,6 +94247,7 @@ export declare type Mutation = {
|
|
|
94136
94247
|
revertToLegacyEditor?: Maybe<RevertToLegacyEditorResult>;
|
|
94137
94248
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
94138
94249
|
runImport?: Maybe<RunImportPayload>;
|
|
94250
|
+
sendMessage: AquaMessage;
|
|
94139
94251
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
94140
94252
|
setAppLicenseId?: Maybe<SetAppLicenseIdResponse>;
|
|
94141
94253
|
setBatchedTaskStatus?: Maybe<GraphQlMutationResponse>;
|
|
@@ -94204,6 +94316,8 @@ export declare type Mutation = {
|
|
|
94204
94316
|
stakeholderComms_createPage?: Maybe<StakeholderCommsPageResponse>;
|
|
94205
94317
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
94206
94318
|
stakeholderComms_createStakeholderGroupAndMembers?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
|
|
94319
|
+
stakeholderComms_deleteDraftPage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
94320
|
+
stakeholderComms_deletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
94207
94321
|
stakeholderComms_deleteStakeholder?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
94208
94322
|
stakeholderComms_publishPage?: Maybe<StakeholderCommsPageResponse>;
|
|
94209
94323
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
@@ -94677,6 +94791,9 @@ export declare type MutationAvp_UpdateDashboardArgs = {
|
|
|
94677
94791
|
export declare type MutationAvp_UpdateDashboardFilterArgs = {
|
|
94678
94792
|
input: AvpUpdateDashboardFilterInput;
|
|
94679
94793
|
};
|
|
94794
|
+
export declare type MutationAvp_UpdateDashboardResourcePermissionArgs = {
|
|
94795
|
+
input: AvpUpdateDashboardResourcePermissionInput;
|
|
94796
|
+
};
|
|
94680
94797
|
export declare type MutationAvp_UpdateDashboardRowHeightArgs = {
|
|
94681
94798
|
input: AvpUpdateDashboardRowHeightInput;
|
|
94682
94799
|
};
|
|
@@ -95659,6 +95776,9 @@ export declare type MutationGoals_EditMetricTargetArgs = {
|
|
|
95659
95776
|
export declare type MutationGoals_EditUpdateArgs = {
|
|
95660
95777
|
input?: InputMaybe<TownsquareGoalsEditUpdateInput>;
|
|
95661
95778
|
};
|
|
95779
|
+
export declare type MutationGoals_LinkWorkItemArgs = {
|
|
95780
|
+
input: TownsquareGoalsLinkWorkItemInput;
|
|
95781
|
+
};
|
|
95662
95782
|
export declare type MutationGoals_RemoveGoalTeamLinkArgs = {
|
|
95663
95783
|
input?: InputMaybe<TownsquareGoalsRemoveGoalTeamLinkInput>;
|
|
95664
95784
|
};
|
|
@@ -95668,6 +95788,9 @@ export declare type MutationGoals_SetWatchingGoalArgs = {
|
|
|
95668
95788
|
export declare type MutationGoals_ShareGoalArgs = {
|
|
95669
95789
|
input: TownsquareGoalsShareGoalInput;
|
|
95670
95790
|
};
|
|
95791
|
+
export declare type MutationGoals_UnlinkWorkItemArgs = {
|
|
95792
|
+
input?: InputMaybe<TownsquareGoalsUnlinkWorkItemInput>;
|
|
95793
|
+
};
|
|
95671
95794
|
export declare type MutationGrantContentAccessArgs = {
|
|
95672
95795
|
grantContentAccessInput: GrantContentAccessInput;
|
|
95673
95796
|
};
|
|
@@ -96365,6 +96488,10 @@ export declare type MutationRevertToLegacyEditorArgs = {
|
|
|
96365
96488
|
export declare type MutationRunImportArgs = {
|
|
96366
96489
|
input: RunImportInput;
|
|
96367
96490
|
};
|
|
96491
|
+
export declare type MutationSendMessageArgs = {
|
|
96492
|
+
conversationId: Scalars['String']['input'];
|
|
96493
|
+
input: AquaSendMessageInput;
|
|
96494
|
+
};
|
|
96368
96495
|
export declare type MutationSetAppEnvironmentVariableArgs = {
|
|
96369
96496
|
input: SetAppEnvironmentVariableInput;
|
|
96370
96497
|
};
|
|
@@ -96582,6 +96709,12 @@ export declare type MutationStakeholderComms_CreateStakeholderGroupAndMembersArg
|
|
|
96582
96709
|
stakeholderGroupInput: StakeholderCommsCreateStakeholderGroupInput;
|
|
96583
96710
|
stakeholders?: InputMaybe<Array<InputMaybe<StakeholderCommsCreateStakeholderInput>>>;
|
|
96584
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
|
+
};
|
|
96585
96718
|
export declare type MutationStakeholderComms_DeleteStakeholderArgs = {
|
|
96586
96719
|
id: Scalars['String']['input'];
|
|
96587
96720
|
};
|
|
@@ -100552,12 +100685,14 @@ export declare type Query = {
|
|
|
100552
100685
|
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
100553
100686
|
stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
100554
100687
|
stakeholderComms_getStakeholdersbyAri?: Maybe<Array<Maybe<StakeholderCommsSimplifiedStakeholder>>>;
|
|
100688
|
+
stakeholderComms_getUniqueSubdomainForPage?: Maybe<Scalars['String']['output']>;
|
|
100555
100689
|
stakeholderComms_getUploadMediaToken?: Maybe<StakeholderCommsMediaToken>;
|
|
100556
100690
|
stakeholderComms_getWorkspaceAriMappingByCustomDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
100557
100691
|
stakeholderComms_getWorkspaceAriMappingByPageId?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
100558
100692
|
stakeholderComms_getWorkspaceAriMappingByStatuspageDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
100559
100693
|
stakeholderComms_isPageNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
100560
100694
|
stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
100695
|
+
stakeholderComms_isUniqueSubdomainAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
100561
100696
|
stakeholderComms_listIncidents?: Maybe<StakeholderCommsListIncidentResponse>;
|
|
100562
100697
|
stakeholderComms_listIncidentsV2?: Maybe<StakeholderCommsIncidentWithUpdatesConnection>;
|
|
100563
100698
|
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
@@ -103918,6 +104053,9 @@ export declare type QueryStakeholderComms_GetStakeholdersByAssignmentV2Args = {
|
|
|
103918
104053
|
export declare type QueryStakeholderComms_GetStakeholdersbyAriArgs = {
|
|
103919
104054
|
stakeholderAris: Array<Scalars['String']['input']>;
|
|
103920
104055
|
};
|
|
104056
|
+
export declare type QueryStakeholderComms_GetUniqueSubdomainForPageArgs = {
|
|
104057
|
+
pageName: Scalars['String']['input'];
|
|
104058
|
+
};
|
|
103921
104059
|
export declare type QueryStakeholderComms_GetWorkspaceAriMappingByCustomDomainArgs = {
|
|
103922
104060
|
customDomain: Scalars['String']['input'];
|
|
103923
104061
|
};
|
|
@@ -103933,6 +104071,9 @@ export declare type QueryStakeholderComms_IsPageNameUniqueArgs = {
|
|
|
103933
104071
|
export declare type QueryStakeholderComms_IsStakeholderGroupNameUniqueArgs = {
|
|
103934
104072
|
name: Scalars['String']['input'];
|
|
103935
104073
|
};
|
|
104074
|
+
export declare type QueryStakeholderComms_IsUniqueSubdomainAvailableArgs = {
|
|
104075
|
+
subdomain: Scalars['String']['input'];
|
|
104076
|
+
};
|
|
103936
104077
|
export declare type QueryStakeholderComms_ListIncidentsArgs = {
|
|
103937
104078
|
listIncidentInput?: InputMaybe<StakeholderCommsListIncidentInput>;
|
|
103938
104079
|
};
|
|
@@ -104357,11 +104498,6 @@ export declare type RadarDateFieldValue = {
|
|
|
104357
104498
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
104358
104499
|
value?: Maybe<Scalars['DateTime']['output']>;
|
|
104359
104500
|
};
|
|
104360
|
-
export declare type RadarDateTimeFieldValue = {
|
|
104361
|
-
__typename?: 'RadarDateTimeFieldValue';
|
|
104362
|
-
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
104363
|
-
value?: Maybe<Scalars['DateTime']['output']>;
|
|
104364
|
-
};
|
|
104365
104501
|
export declare type RadarDeleteConnectorInput = {
|
|
104366
104502
|
connectorId: Scalars['ID']['input'];
|
|
104367
104503
|
};
|
|
@@ -104438,7 +104574,6 @@ export declare enum RadarFieldType {
|
|
|
104438
104574
|
Ari = "ARI",
|
|
104439
104575
|
Boolean = "BOOLEAN",
|
|
104440
104576
|
Date = "DATE",
|
|
104441
|
-
Datetime = "DATETIME",
|
|
104442
104577
|
Keyword = "KEYWORD",
|
|
104443
104578
|
Money = "MONEY",
|
|
104444
104579
|
Number = "NUMBER",
|
|
@@ -104446,7 +104581,7 @@ export declare enum RadarFieldType {
|
|
|
104446
104581
|
String = "STRING",
|
|
104447
104582
|
Url = "URL"
|
|
104448
104583
|
}
|
|
104449
|
-
export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue |
|
|
104584
|
+
export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarMoneyFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue;
|
|
104450
104585
|
export declare type RadarFieldValueIdPair = {
|
|
104451
104586
|
__typename?: 'RadarFieldValueIdPair';
|
|
104452
104587
|
fieldId: Scalars['ID']['output'];
|
|
@@ -128791,6 +128926,11 @@ export declare type StakeholderCommsPageComponentsWithUptimeResponse = {
|
|
|
128791
128926
|
pageComponentsUptime?: Maybe<Array<Maybe<StakeholderCommsNestedComponentWithUptime>>>;
|
|
128792
128927
|
pageUptime?: Maybe<StakeholderCommsPageUptime>;
|
|
128793
128928
|
};
|
|
128929
|
+
export declare type StakeholderCommsPageDeleteResponse = {
|
|
128930
|
+
__typename?: 'StakeholderCommsPageDeleteResponse';
|
|
128931
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
128932
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
128933
|
+
};
|
|
128794
128934
|
export declare type StakeholderCommsPageDraftComponentResponse = {
|
|
128795
128935
|
__typename?: 'StakeholderCommsPageDraftComponentResponse';
|
|
128796
128936
|
components?: Maybe<Array<Maybe<StakeholderCommsNestedComponent>>>;
|
|
@@ -131523,6 +131663,16 @@ export declare type TownsquareGoalsEditUpdatePayload = {
|
|
|
131523
131663
|
success: Scalars['Boolean']['output'];
|
|
131524
131664
|
update?: Maybe<TownsquareGoalUpdate>;
|
|
131525
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
|
+
};
|
|
131526
131676
|
export declare type TownsquareGoalsRemoveGoalTeamLinkInput = {
|
|
131527
131677
|
goalId: Scalars['ID']['input'];
|
|
131528
131678
|
teamId: Scalars['ID']['input'];
|
|
@@ -131557,6 +131707,16 @@ export declare type TownsquareGoalsShareGoalPayload = {
|
|
|
131557
131707
|
success: Scalars['Boolean']['output'];
|
|
131558
131708
|
usersAdded?: Maybe<Array<User>>;
|
|
131559
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
|
+
};
|
|
131560
131720
|
export declare type TownsquareHighlight = {
|
|
131561
131721
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
131562
131722
|
creator?: Maybe<User>;
|
|
@@ -135169,6 +135329,7 @@ export declare type TrelloMutationApi = {
|
|
|
135169
135329
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
135170
135330
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
135171
135331
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
135332
|
+
resetCardCover?: Maybe<TrelloResetCardCoverPayload>;
|
|
135172
135333
|
smartScheduleCards?: Maybe<TrelloProposedSmartSchedule>;
|
|
135173
135334
|
smartScheduleCardsWithSmartSelection?: Maybe<TrelloProposedSmartSchedule>;
|
|
135174
135335
|
sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
|
|
@@ -135271,6 +135432,9 @@ export declare type TrelloMutationApiRemoveMemberFromWorkspaceArgs = {
|
|
|
135271
135432
|
export declare type TrelloMutationApiRemoveWorkspaceTagFromBoardArgs = {
|
|
135272
135433
|
input: TrelloRemoveWorkspaceTagFromBoardInput;
|
|
135273
135434
|
};
|
|
135435
|
+
export declare type TrelloMutationApiResetCardCoverArgs = {
|
|
135436
|
+
input: TrelloResetCardCoverInput;
|
|
135437
|
+
};
|
|
135274
135438
|
export declare type TrelloMutationApiSmartScheduleCardsArgs = {
|
|
135275
135439
|
input: TrelloSmartScheduleCardsInput;
|
|
135276
135440
|
};
|
|
@@ -136126,6 +136290,15 @@ export declare type TrelloRemoveWorkspaceTagFromBoardPayload = Payload & {
|
|
|
136126
136290
|
errors?: Maybe<Array<MutationError>>;
|
|
136127
136291
|
success: Scalars['Boolean']['output'];
|
|
136128
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
|
+
};
|
|
136129
136302
|
export declare type TrelloScaleProps = {
|
|
136130
136303
|
__typename?: 'TrelloScaleProps';
|
|
136131
136304
|
height?: Maybe<Scalars['Int']['output']>;
|
|
@@ -136309,6 +136482,7 @@ export declare type TrelloUpdateBoardBackgroundInput = {
|
|
|
136309
136482
|
};
|
|
136310
136483
|
export declare type TrelloUpdateBoardBackgroundPayload = Payload & {
|
|
136311
136484
|
__typename?: 'TrelloUpdateBoardBackgroundPayload';
|
|
136485
|
+
boardId?: Maybe<Scalars['ID']['output']>;
|
|
136312
136486
|
errors?: Maybe<Array<MutationError>>;
|
|
136313
136487
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
136314
136488
|
success: Scalars['Boolean']['output'];
|
|
@@ -136558,6 +136732,7 @@ export declare type TrelloUpdateInboxBackgroundInput = {
|
|
|
136558
136732
|
export declare type TrelloUpdateInboxBackgroundPayload = Payload & {
|
|
136559
136733
|
__typename?: 'TrelloUpdateInboxBackgroundPayload';
|
|
136560
136734
|
errors?: Maybe<Array<MutationError>>;
|
|
136735
|
+
memberId?: Maybe<Scalars['ID']['output']>;
|
|
136561
136736
|
prefs?: Maybe<TrelloInboxPrefs>;
|
|
136562
136737
|
success: Scalars['Boolean']['output'];
|
|
136563
136738
|
};
|