@forge/cli-shared 8.9.1-next.10 → 8.9.1-next.10-experimental-4bd2ca0
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 +22 -0
- package/out/graphql/graphql-types.d.ts +144 -125
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +34 -42
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.9.1-next.10-experimental-4bd2ca0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e1a1a98:
|
|
8
|
+
- f3d2047:
|
|
9
|
+
- 0592764:
|
|
10
|
+
- 949f9df: improve docker compose startup failure error message
|
|
11
|
+
- 128d1f8: Error handling logic for install upgrade code
|
|
12
|
+
- 0c4a82e:
|
|
13
|
+
- Updated dependencies [559c541]
|
|
14
|
+
- Updated dependencies [b5f0775]
|
|
15
|
+
- Updated dependencies [2f0c3c2]
|
|
16
|
+
- Updated dependencies [00eaa35]
|
|
17
|
+
- Updated dependencies [b9cefff]
|
|
18
|
+
- Updated dependencies [b5f0775]
|
|
19
|
+
- Updated dependencies [069288e]
|
|
20
|
+
- Updated dependencies [d317f2e]
|
|
21
|
+
- Updated dependencies [bf0e0f6]
|
|
22
|
+
- Updated dependencies [bb6e58a]
|
|
23
|
+
- @forge/manifest@11.1.0-next.6-experimental-4bd2ca0
|
|
24
|
+
|
|
3
25
|
## 8.9.1-next.10
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
|
@@ -10781,6 +10781,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
10781
10781
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
10782
10782
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
10783
10783
|
metricValuesTimeSeries?: Maybe<CompassMetricValuesTimeseriesResult>;
|
|
10784
|
+
myComponents?: Maybe<CompassComponentQueryResult>;
|
|
10784
10785
|
package?: Maybe<CompassPackage>;
|
|
10785
10786
|
scorecard?: Maybe<CompassScorecardResult>;
|
|
10786
10787
|
scorecards?: Maybe<CompassScorecardsQueryResult>;
|
|
@@ -10920,6 +10921,10 @@ export declare type CompassCatalogQueryApiMetricValuesTimeSeriesArgs = {
|
|
|
10920
10921
|
cloudId: Scalars['ID']['input'];
|
|
10921
10922
|
metricSourceId: Scalars['ID']['input'];
|
|
10922
10923
|
};
|
|
10924
|
+
export declare type CompassCatalogQueryApiMyComponentsArgs = {
|
|
10925
|
+
cloudId: Scalars['String']['input'];
|
|
10926
|
+
query?: InputMaybe<CompassSearchComponentQuery>;
|
|
10927
|
+
};
|
|
10923
10928
|
export declare type CompassCatalogQueryApiPackageArgs = {
|
|
10924
10929
|
id: Scalars['ID']['input'];
|
|
10925
10930
|
};
|
|
@@ -24745,6 +24750,20 @@ export declare type Customer360Customer = Node & {
|
|
|
24745
24750
|
startDate?: Maybe<Scalars['String']['output']>;
|
|
24746
24751
|
type?: Maybe<Scalars['String']['output']>;
|
|
24747
24752
|
};
|
|
24753
|
+
export declare type CustomerServiceAcceptEscalationInput = {
|
|
24754
|
+
escalationType: CustomerServiceEscalationType;
|
|
24755
|
+
linkedWorkItemId: Scalars['ID']['input'];
|
|
24756
|
+
linkedWorkItemType: CustomerServiceAcceptEscalationLinkedWorkItemType;
|
|
24757
|
+
};
|
|
24758
|
+
export declare enum CustomerServiceAcceptEscalationLinkedWorkItemType {
|
|
24759
|
+
ExistingWorkItem = "EXISTING_WORK_ITEM",
|
|
24760
|
+
NewWorkItem = "NEW_WORK_ITEM"
|
|
24761
|
+
}
|
|
24762
|
+
export declare type CustomerServiceAcceptEscalationPayload = Payload & {
|
|
24763
|
+
__typename?: 'CustomerServiceAcceptEscalationPayload';
|
|
24764
|
+
errors?: Maybe<Array<MutationError>>;
|
|
24765
|
+
success: Scalars['Boolean']['output'];
|
|
24766
|
+
};
|
|
24748
24767
|
export declare type CustomerServiceAttribute = Node & {
|
|
24749
24768
|
__typename?: 'CustomerServiceAttribute';
|
|
24750
24769
|
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
@@ -25228,6 +25247,7 @@ export declare type CustomerServiceIndividualUpdateAttributeValuePayload = Paylo
|
|
|
25228
25247
|
};
|
|
25229
25248
|
export declare type CustomerServiceMutationApi = {
|
|
25230
25249
|
__typename?: 'CustomerServiceMutationApi';
|
|
25250
|
+
acceptEscalation?: Maybe<CustomerServiceAcceptEscalationPayload>;
|
|
25231
25251
|
addEntitlement?: Maybe<CustomerServiceEntitlementAddPayload>;
|
|
25232
25252
|
createCustomDetail?: Maybe<CustomerServiceCustomDetailCreatePayload>;
|
|
25233
25253
|
createIndividualAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
|
|
@@ -25266,6 +25286,11 @@ export declare type CustomerServiceMutationApi = {
|
|
|
25266
25286
|
updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
|
|
25267
25287
|
upsertBranding?: Maybe<CustomerServiceBrandingUpsertPayload>;
|
|
25268
25288
|
};
|
|
25289
|
+
export declare type CustomerServiceMutationApiAcceptEscalationArgs = {
|
|
25290
|
+
input: CustomerServiceAcceptEscalationInput;
|
|
25291
|
+
projectId: Scalars['ID']['input'];
|
|
25292
|
+
workItemId: Scalars['ID']['input'];
|
|
25293
|
+
};
|
|
25269
25294
|
export declare type CustomerServiceMutationApiAddEntitlementArgs = {
|
|
25270
25295
|
input: CustomerServiceEntitlementAddInput;
|
|
25271
25296
|
};
|
|
@@ -65352,19 +65377,6 @@ export declare type JiraApplicationProperty = Node & {
|
|
|
65352
65377
|
type: Scalars['String']['output'];
|
|
65353
65378
|
value: Scalars['String']['output'];
|
|
65354
65379
|
};
|
|
65355
|
-
export declare type JiraApplySuggestionActionInput = {
|
|
65356
|
-
actionId: Scalars['String']['input'];
|
|
65357
|
-
cloudId: Scalars['ID']['input'];
|
|
65358
|
-
id: Scalars['ID']['input'];
|
|
65359
|
-
input?: InputMaybe<Scalars['JSON']['input']>;
|
|
65360
|
-
};
|
|
65361
|
-
export declare type JiraApplySuggestionActionsPayload = Payload & {
|
|
65362
|
-
__typename?: 'JiraApplySuggestionActionsPayload';
|
|
65363
|
-
errors?: Maybe<Array<MutationError>>;
|
|
65364
|
-
ids?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
65365
|
-
success: Scalars['Boolean']['output'];
|
|
65366
|
-
suggestions?: Maybe<Array<Maybe<JiraSuggestion>>>;
|
|
65367
|
-
};
|
|
65368
65380
|
export declare type JiraApprovalActivityFeedConnection = {
|
|
65369
65381
|
__typename?: 'JiraApprovalActivityFeedConnection';
|
|
65370
65382
|
nodes: Array<JiraApprovalActivityItem>;
|
|
@@ -66792,8 +66804,9 @@ export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
|
66792
66804
|
id: Scalars['ID']['output'];
|
|
66793
66805
|
};
|
|
66794
66806
|
export declare type JiraBoardViewInput = {
|
|
66795
|
-
jiraBoardViewQueryInput
|
|
66807
|
+
jiraBoardViewQueryInput?: InputMaybe<JiraBoardViewQueryInput>;
|
|
66796
66808
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
66809
|
+
viewQueryInput?: InputMaybe<JiraViewQueryInput>;
|
|
66797
66810
|
};
|
|
66798
66811
|
export declare type JiraBoardViewLayout = JiraBoardViewColumnLayout;
|
|
66799
66812
|
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & Node & {
|
|
@@ -69918,16 +69931,6 @@ export declare type JiraDismissInContextConfigPromptPayload = Payload & {
|
|
|
69918
69931
|
errors?: Maybe<Array<MutationError>>;
|
|
69919
69932
|
success: Scalars['Boolean']['output'];
|
|
69920
69933
|
};
|
|
69921
|
-
export declare type JiraDismissSuggestionActionsPayload = Payload & {
|
|
69922
|
-
__typename?: 'JiraDismissSuggestionActionsPayload';
|
|
69923
|
-
errors?: Maybe<Array<MutationError>>;
|
|
69924
|
-
ids?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
69925
|
-
success: Scalars['Boolean']['output'];
|
|
69926
|
-
};
|
|
69927
|
-
export declare type JiraDismissSuggestionsInput = {
|
|
69928
|
-
cloudId: Scalars['ID']['input'];
|
|
69929
|
-
ids: Array<Scalars['ID']['input']>;
|
|
69930
|
-
};
|
|
69931
69934
|
export declare type JiraDragAndDropBoardViewIssueInput = {
|
|
69932
69935
|
destinationCellId?: InputMaybe<Scalars['ID']['input']>;
|
|
69933
69936
|
id: Scalars['ID']['input'];
|
|
@@ -69944,19 +69947,6 @@ export declare type JiraDragAndDropBoardViewIssuePayload = {
|
|
|
69944
69947
|
export declare type JiraDuplicateJourneyConfigurationInput = {
|
|
69945
69948
|
id: Scalars['ID']['input'];
|
|
69946
69949
|
};
|
|
69947
|
-
export declare type JiraDuplicateWorkItemsSuggestion = JiraSuggestion & {
|
|
69948
|
-
__typename?: 'JiraDuplicateWorkItemsSuggestion';
|
|
69949
|
-
actions?: Maybe<Array<Maybe<JiraSuggestionAction>>>;
|
|
69950
|
-
appliedAction?: Maybe<JiraSuggestionAction>;
|
|
69951
|
-
entityId?: Maybe<Scalars['String']['output']>;
|
|
69952
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
69953
|
-
relatedEntityId?: Maybe<Scalars['String']['output']>;
|
|
69954
|
-
relatedWorkItem?: Maybe<JiraIssue>;
|
|
69955
|
-
score?: Maybe<Scalars['Float']['output']>;
|
|
69956
|
-
status?: Maybe<JiraSuggestionStatus>;
|
|
69957
|
-
type?: Maybe<JiraSuggestionType>;
|
|
69958
|
-
workItem?: Maybe<JiraIssue>;
|
|
69959
|
-
};
|
|
69960
69950
|
export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
69961
69951
|
__typename?: 'JiraDurationField';
|
|
69962
69952
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -71850,6 +71840,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
71850
71840
|
connectBackgroundScripts?: Maybe<JiraIssueConnectBackgroundScriptConnection>;
|
|
71851
71841
|
connectOperations?: Maybe<JiraIssueConnectOperationConnection>;
|
|
71852
71842
|
contentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
71843
|
+
contextPanels?: Maybe<JiraIssueContextPanelConnection>;
|
|
71853
71844
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
71854
71845
|
createdField?: Maybe<JiraDateTimePickerField>;
|
|
71855
71846
|
deletableAttachmentsCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -72053,6 +72044,12 @@ export declare type JiraIssueContentPanelsArgs = {
|
|
|
72053
72044
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
72054
72045
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
72055
72046
|
};
|
|
72047
|
+
export declare type JiraIssueContextPanelsArgs = {
|
|
72048
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
72049
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
72050
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
72051
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
72052
|
+
};
|
|
72056
72053
|
export declare type JiraIssueDesignsArgs = {
|
|
72057
72054
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
72058
72055
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -72516,6 +72513,16 @@ export declare type JiraIssueContentPanelEdge = {
|
|
|
72516
72513
|
cursor: Scalars['String']['output'];
|
|
72517
72514
|
node?: Maybe<JiraIssueContentPanel>;
|
|
72518
72515
|
};
|
|
72516
|
+
export declare type JiraIssueContextPanelConnection = {
|
|
72517
|
+
__typename?: 'JiraIssueContextPanelConnection';
|
|
72518
|
+
edges?: Maybe<Array<Maybe<JiraIssueContextPanelEdge>>>;
|
|
72519
|
+
pageInfo: PageInfo;
|
|
72520
|
+
};
|
|
72521
|
+
export declare type JiraIssueContextPanelEdge = {
|
|
72522
|
+
__typename?: 'JiraIssueContextPanelEdge';
|
|
72523
|
+
cursor: Scalars['String']['output'];
|
|
72524
|
+
node?: Maybe<JiraIssueViewContextPanel>;
|
|
72525
|
+
};
|
|
72519
72526
|
export declare type JiraIssueCreateFieldValidationRule = {
|
|
72520
72527
|
errorMessage?: InputMaybe<Scalars['String']['input']>;
|
|
72521
72528
|
fields: Array<Scalars['String']['input']>;
|
|
@@ -74150,6 +74157,18 @@ export declare type JiraIssueViewCollapsibleSections = {
|
|
|
74150
74157
|
__typename?: 'JiraIssueViewCollapsibleSections';
|
|
74151
74158
|
sections?: Maybe<Array<Maybe<JiraIssueViewCollapsibleSection>>>;
|
|
74152
74159
|
};
|
|
74160
|
+
export declare type JiraIssueViewContextPanel = {
|
|
74161
|
+
__typename?: 'JiraIssueViewContextPanel';
|
|
74162
|
+
addonKey?: Maybe<Scalars['String']['output']>;
|
|
74163
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
74164
|
+
dynamicContent?: Maybe<Scalars['JSON']['output']>;
|
|
74165
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
74166
|
+
moduleKey?: Maybe<Scalars['String']['output']>;
|
|
74167
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
74168
|
+
options?: Maybe<Scalars['JSON']['output']>;
|
|
74169
|
+
status?: Maybe<Scalars['JSON']['output']>;
|
|
74170
|
+
type?: Maybe<JiraIssueModuleType>;
|
|
74171
|
+
};
|
|
74153
74172
|
export declare type JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateType = {
|
|
74154
74173
|
__typename?: 'JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateType';
|
|
74155
74174
|
dismissUntilDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -79311,6 +79330,7 @@ export declare type JiraQuery = {
|
|
|
79311
79330
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
79312
79331
|
devOpsProviders?: Maybe<Array<Maybe<JiraDevOpsProvider>>>;
|
|
79313
79332
|
echo?: Maybe<Scalars['String']['output']>;
|
|
79333
|
+
ecosystemFirstSeenOnIssueView?: Maybe<Scalars['DateTime']['output']>;
|
|
79314
79334
|
epicLinkFieldKey?: Maybe<Scalars['String']['output']>;
|
|
79315
79335
|
exportIssueDetails?: Maybe<JiraExportIssueDetailsResponse>;
|
|
79316
79336
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
@@ -79672,6 +79692,9 @@ export declare type JiraQueryEchoArgs = {
|
|
|
79672
79692
|
cloudId: Scalars['ID']['input'];
|
|
79673
79693
|
where?: InputMaybe<JiraEchoWhereInput>;
|
|
79674
79694
|
};
|
|
79695
|
+
export declare type JiraQueryEcosystemFirstSeenOnIssueViewArgs = {
|
|
79696
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
79697
|
+
};
|
|
79675
79698
|
export declare type JiraQueryEpicLinkFieldKeyArgs = {
|
|
79676
79699
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
79677
79700
|
};
|
|
@@ -83855,16 +83878,6 @@ export declare type JiraSprintUpdateInput = {
|
|
|
83855
83878
|
sprintId: Scalars['ID']['input'];
|
|
83856
83879
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
83857
83880
|
};
|
|
83858
|
-
export declare type JiraStaleWorkItemsSuggestion = JiraSuggestion & {
|
|
83859
|
-
__typename?: 'JiraStaleWorkItemsSuggestion';
|
|
83860
|
-
actions?: Maybe<Array<Maybe<JiraSuggestionAction>>>;
|
|
83861
|
-
appliedAction?: Maybe<JiraSuggestionAction>;
|
|
83862
|
-
entityId?: Maybe<Scalars['String']['output']>;
|
|
83863
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
83864
|
-
status?: Maybe<JiraSuggestionStatus>;
|
|
83865
|
-
type?: Maybe<JiraSuggestionType>;
|
|
83866
|
-
workItem?: Maybe<JiraIssue>;
|
|
83867
|
-
};
|
|
83868
83881
|
export declare type JiraStatus = MercuryOriginalProjectStatus & Node & {
|
|
83869
83882
|
__typename?: 'JiraStatus';
|
|
83870
83883
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -84259,61 +84272,6 @@ export declare type JiraSuggestedIssueInput = {
|
|
|
84259
84272
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
84260
84273
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
84261
84274
|
};
|
|
84262
|
-
export declare type JiraSuggestion = {
|
|
84263
|
-
actions?: Maybe<Array<Maybe<JiraSuggestionAction>>>;
|
|
84264
|
-
appliedAction?: Maybe<JiraSuggestionAction>;
|
|
84265
|
-
entityId?: Maybe<Scalars['String']['output']>;
|
|
84266
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
84267
|
-
status?: Maybe<JiraSuggestionStatus>;
|
|
84268
|
-
type?: Maybe<JiraSuggestionType>;
|
|
84269
|
-
};
|
|
84270
|
-
export declare type JiraSuggestionAction = {
|
|
84271
|
-
__typename?: 'JiraSuggestionAction';
|
|
84272
|
-
default?: Maybe<Scalars['Boolean']['output']>;
|
|
84273
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
84274
|
-
id?: Maybe<Scalars['String']['output']>;
|
|
84275
|
-
inputSchema?: Maybe<JiraSuggestionActionInputSchema>;
|
|
84276
|
-
type?: Maybe<JiraSuggestionActionType>;
|
|
84277
|
-
};
|
|
84278
|
-
export declare type JiraSuggestionActionInputSchema = {
|
|
84279
|
-
__typename?: 'JiraSuggestionActionInputSchema';
|
|
84280
|
-
properties?: Maybe<Scalars['JSON']['output']>;
|
|
84281
|
-
required?: Maybe<Array<Scalars['String']['output']>>;
|
|
84282
|
-
};
|
|
84283
|
-
export declare enum JiraSuggestionActionType {
|
|
84284
|
-
ArchiveWorkItem = "ARCHIVE_WORK_ITEM",
|
|
84285
|
-
ChangeDuplicateWorkItemStatus = "CHANGE_DUPLICATE_WORK_ITEM_STATUS",
|
|
84286
|
-
ChangeStaleWorkItemStatus = "CHANGE_STALE_WORK_ITEM_STATUS",
|
|
84287
|
-
ChangeWorkItemStatus = "CHANGE_WORK_ITEM_STATUS",
|
|
84288
|
-
LinkDuplicateWorkItems = "LINK_DUPLICATE_WORK_ITEMS"
|
|
84289
|
-
}
|
|
84290
|
-
export declare type JiraSuggestionEdge = {
|
|
84291
|
-
__typename?: 'JiraSuggestionEdge';
|
|
84292
|
-
cursor: Scalars['String']['output'];
|
|
84293
|
-
node: JiraSuggestion;
|
|
84294
|
-
};
|
|
84295
|
-
export declare enum JiraSuggestionStatus {
|
|
84296
|
-
Dismissed = "DISMISSED",
|
|
84297
|
-
Done = "DONE",
|
|
84298
|
-
Pending = "PENDING"
|
|
84299
|
-
}
|
|
84300
|
-
export declare enum JiraSuggestionType {
|
|
84301
|
-
DuplicateWorkItems = "DUPLICATE_WORK_ITEMS",
|
|
84302
|
-
StaleWorkItems = "STALE_WORK_ITEMS"
|
|
84303
|
-
}
|
|
84304
|
-
export declare type JiraSuggestionsByContextInput = {
|
|
84305
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
84306
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84307
|
-
id: Scalars['ID']['input'];
|
|
84308
|
-
status?: InputMaybe<Array<JiraSuggestionStatus>>;
|
|
84309
|
-
types: Array<JiraSuggestionType>;
|
|
84310
|
-
};
|
|
84311
|
-
export declare type JiraSuggestionsConnection = HasPageInfo & {
|
|
84312
|
-
__typename?: 'JiraSuggestionsConnection';
|
|
84313
|
-
edges?: Maybe<Array<Maybe<JiraSuggestionEdge>>>;
|
|
84314
|
-
errors?: Maybe<Array<QueryError>>;
|
|
84315
|
-
pageInfo: PageInfo;
|
|
84316
|
-
};
|
|
84317
84275
|
export declare enum JiraSyntheticFieldCardOptionType {
|
|
84318
84276
|
CardCover = "CARD_COVER",
|
|
84319
84277
|
Pages = "PAGES"
|
|
@@ -87245,6 +87203,16 @@ export declare type JsmChannelsRequestTypesInput = {
|
|
|
87245
87203
|
id: Scalars['String']['input'];
|
|
87246
87204
|
mode: JsmChannelsRequestTypeExecutionMode;
|
|
87247
87205
|
};
|
|
87206
|
+
export declare enum JsmChannelsResolutionPlanAction {
|
|
87207
|
+
Approve = "APPROVE",
|
|
87208
|
+
Pause = "PAUSE",
|
|
87209
|
+
Reject = "REJECT"
|
|
87210
|
+
}
|
|
87211
|
+
export declare type JsmChannelsResolutionPlanActionPayload = Payload & {
|
|
87212
|
+
__typename?: 'JsmChannelsResolutionPlanActionPayload';
|
|
87213
|
+
errors?: Maybe<Array<MutationError>>;
|
|
87214
|
+
success: Scalars['Boolean']['output'];
|
|
87215
|
+
};
|
|
87248
87216
|
export declare type JsmChannelsResolutionPlanGraph = {
|
|
87249
87217
|
__typename?: 'JsmChannelsResolutionPlanGraph';
|
|
87250
87218
|
graph?: Maybe<Array<Array<Scalars['ID']['output']>>>;
|
|
@@ -92610,6 +92578,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
92610
92578
|
appReviewById?: Maybe<MarketplaceStoreReviewByIdResponse>;
|
|
92611
92579
|
appReviewsByAppId: MarketplaceStoreReviewsResponse;
|
|
92612
92580
|
appReviewsByAppKey: MarketplaceStoreReviewsResponse;
|
|
92581
|
+
appReviewsByUserId: MarketplaceStoreReviewsByUserResponse;
|
|
92613
92582
|
appSoftwareVersionListingByAppId?: Maybe<MarketplaceStoreAppSoftwareVersionListingResponse>;
|
|
92614
92583
|
appSoftwareVersionListingByAppKey?: Maybe<MarketplaceStoreAppSoftwareVersionListingResponse>;
|
|
92615
92584
|
billingSystem: MarketplaceStoreBillingSystemResponse;
|
|
@@ -92635,6 +92604,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
92635
92604
|
siteDetails: MarketplaceStoreSiteDetailsResponse;
|
|
92636
92605
|
userPreferences: MarketplaceStoreGetUserPreferencesResponse;
|
|
92637
92606
|
userProfile: MarketplaceStoreUserProfileResponse;
|
|
92607
|
+
watchedApps: MarketplaceStoreWatchedAppsResponse;
|
|
92638
92608
|
};
|
|
92639
92609
|
export declare type MarketplaceStoreQueryApiAppInstallationsByAppArgs = {
|
|
92640
92610
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -92656,6 +92626,9 @@ export declare type MarketplaceStoreQueryApiAppReviewsByAppKeyArgs = {
|
|
|
92656
92626
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
92657
92627
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
92658
92628
|
};
|
|
92629
|
+
export declare type MarketplaceStoreQueryApiAppReviewsByUserIdArgs = {
|
|
92630
|
+
userId: Scalars['ID']['input'];
|
|
92631
|
+
};
|
|
92659
92632
|
export declare type MarketplaceStoreQueryApiAppSoftwareVersionListingByAppIdArgs = {
|
|
92660
92633
|
appId: Scalars['ID']['input'];
|
|
92661
92634
|
buildNumber: Scalars['ID']['input'];
|
|
@@ -92729,6 +92702,10 @@ export declare type MarketplaceStoreQueryApiSiteDetailsArgs = {
|
|
|
92729
92702
|
export declare type MarketplaceStoreQueryApiUserProfileArgs = {
|
|
92730
92703
|
userId: Scalars['String']['input'];
|
|
92731
92704
|
};
|
|
92705
|
+
export declare type MarketplaceStoreQueryApiWatchedAppsArgs = {
|
|
92706
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
92707
|
+
nextCursor?: InputMaybe<Scalars['String']['input']>;
|
|
92708
|
+
};
|
|
92732
92709
|
export declare type MarketplaceStoreReviewAuthor = {
|
|
92733
92710
|
__typename?: 'MarketplaceStoreReviewAuthor';
|
|
92734
92711
|
id: Scalars['ID']['output'];
|
|
@@ -92763,6 +92740,11 @@ export declare type MarketplaceStoreReviewNode = {
|
|
|
92763
92740
|
stars?: Maybe<Scalars['Int']['output']>;
|
|
92764
92741
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
92765
92742
|
};
|
|
92743
|
+
export declare type MarketplaceStoreReviewsByUserResponse = {
|
|
92744
|
+
__typename?: 'MarketplaceStoreReviewsByUserResponse';
|
|
92745
|
+
id: Scalars['ID']['output'];
|
|
92746
|
+
reviews: Array<Maybe<MarketplaceStoreReviewNode>>;
|
|
92747
|
+
};
|
|
92766
92748
|
export declare type MarketplaceStoreReviewsResponse = {
|
|
92767
92749
|
__typename?: 'MarketplaceStoreReviewsResponse';
|
|
92768
92750
|
averageStars: Scalars['Float']['output'];
|
|
@@ -92838,6 +92820,18 @@ export declare type MarketplaceStoreUserProfileResponse = {
|
|
|
92838
92820
|
name: Scalars['String']['output'];
|
|
92839
92821
|
picture: Scalars['String']['output'];
|
|
92840
92822
|
};
|
|
92823
|
+
export declare type MarketplaceStoreWatchedApp = {
|
|
92824
|
+
__typename?: 'MarketplaceStoreWatchedApp';
|
|
92825
|
+
appKey: Scalars['String']['output'];
|
|
92826
|
+
appName: Scalars['String']['output'];
|
|
92827
|
+
productId: Scalars['ID']['output'];
|
|
92828
|
+
};
|
|
92829
|
+
export declare type MarketplaceStoreWatchedAppsResponse = {
|
|
92830
|
+
__typename?: 'MarketplaceStoreWatchedAppsResponse';
|
|
92831
|
+
limit?: Maybe<Scalars['Int']['output']>;
|
|
92832
|
+
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
92833
|
+
productWatchers?: Maybe<Array<MarketplaceStoreWatchedApp>>;
|
|
92834
|
+
};
|
|
92841
92835
|
export declare type MarketplaceSupportedAtlassianProduct = {
|
|
92842
92836
|
__typename?: 'MarketplaceSupportedAtlassianProduct';
|
|
92843
92837
|
hostingOptions: Array<AtlassianProductHostingType>;
|
|
@@ -93005,10 +92999,6 @@ export declare type MercuryBudgetAggregation = {
|
|
|
93005
92999
|
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
93006
93000
|
totalAssignedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
93007
93001
|
};
|
|
93008
|
-
export declare type MercuryBulkCustomFieldValueInput = {
|
|
93009
|
-
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
93010
|
-
customFieldDefinitionId: Scalars['ID']['input'];
|
|
93011
|
-
};
|
|
93012
93002
|
export declare type MercuryChange = MercuryArchiveFocusAreaChange | MercuryChangeParentFocusAreaChange | MercuryCreateFocusAreaChange | MercuryMoveFundsChange | MercuryMovePositionsChange | MercuryPositionAllocationChange | MercuryRenameFocusAreaChange | MercuryRequestFundsChange | MercuryRequestPositionsChange;
|
|
93013
93003
|
export declare type MercuryChangeConnection = {
|
|
93014
93004
|
__typename?: 'MercuryChangeConnection';
|
|
@@ -94402,6 +94392,7 @@ export declare type MercuryGoalAggregatedStatusCount = {
|
|
|
94402
94392
|
export declare type MercuryGoalInsight = MercuryInsight & {
|
|
94403
94393
|
__typename?: 'MercuryGoalInsight';
|
|
94404
94394
|
ari: Scalars['ID']['output'];
|
|
94395
|
+
focusArea?: Maybe<MercuryFocusArea>;
|
|
94405
94396
|
id: Scalars['ID']['output'];
|
|
94406
94397
|
insightData?: Maybe<TownsquareGoal>;
|
|
94407
94398
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -94508,6 +94499,7 @@ export declare enum MercuryInvestmentCategorySetSortField {
|
|
|
94508
94499
|
export declare type MercuryJiraAlignProjectInsight = MercuryInsight & {
|
|
94509
94500
|
__typename?: 'MercuryJiraAlignProjectInsight';
|
|
94510
94501
|
ari: Scalars['ID']['output'];
|
|
94502
|
+
focusArea?: Maybe<MercuryFocusArea>;
|
|
94511
94503
|
id: Scalars['ID']['output'];
|
|
94512
94504
|
insightData?: Maybe<JiraAlignAggProject>;
|
|
94513
94505
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -94537,6 +94529,7 @@ export declare type MercuryJiraAlignProviderQueryApiUserAccessibleJiraAlignProje
|
|
|
94537
94529
|
export declare type MercuryJiraIssueInsight = MercuryInsight & {
|
|
94538
94530
|
__typename?: 'MercuryJiraIssueInsight';
|
|
94539
94531
|
ari: Scalars['ID']['output'];
|
|
94532
|
+
focusArea?: Maybe<MercuryFocusArea>;
|
|
94540
94533
|
id: Scalars['ID']['output'];
|
|
94541
94534
|
insightData?: Maybe<JiraIssue>;
|
|
94542
94535
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -94742,6 +94735,7 @@ export declare type MercuryMutationApi = {
|
|
|
94742
94735
|
removeUserAccessToFocusArea?: Maybe<MercuryRemoveUserAccessToFocusAreaPayload>;
|
|
94743
94736
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
94744
94737
|
setFocusAreaCustomFieldValue?: Maybe<MercurySetFocusAreaCustomFieldPayload>;
|
|
94738
|
+
setFocusAreaCustomFieldValues?: Maybe<MercurySetFocusAreaCustomFieldsPayload>;
|
|
94745
94739
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
94746
94740
|
transitionFocusAreaStatus?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
94747
94741
|
unarchiveFocusArea?: Maybe<MercuryUnarchiveFocusAreaPayload>;
|
|
@@ -94838,6 +94832,9 @@ export declare type MercuryMutationApiRemoveWatcherFromFocusAreaArgs = {
|
|
|
94838
94832
|
export declare type MercuryMutationApiSetFocusAreaCustomFieldValueArgs = {
|
|
94839
94833
|
input: MercurySetFocusAreaCustomFieldInput;
|
|
94840
94834
|
};
|
|
94835
|
+
export declare type MercuryMutationApiSetFocusAreaCustomFieldValuesArgs = {
|
|
94836
|
+
input: MercurySetFocusAreaCustomFieldsInput;
|
|
94837
|
+
};
|
|
94841
94838
|
export declare type MercuryMutationApiSetPreferenceArgs = {
|
|
94842
94839
|
input: MercurySetPreferenceInput;
|
|
94843
94840
|
};
|
|
@@ -95586,12 +95583,12 @@ export declare type MercurySetFocusAreaCustomFieldPayload = Payload & {
|
|
|
95586
95583
|
errors?: Maybe<Array<MutationError>>;
|
|
95587
95584
|
success: Scalars['Boolean']['output'];
|
|
95588
95585
|
};
|
|
95589
|
-
export declare type
|
|
95590
|
-
|
|
95591
|
-
|
|
95586
|
+
export declare type MercurySetFocusAreaCustomFieldsInput = {
|
|
95587
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
95588
|
+
customFields: Array<MercurySetFocusAreaCustomFieldInput>;
|
|
95592
95589
|
};
|
|
95593
|
-
export declare type
|
|
95594
|
-
__typename?: '
|
|
95590
|
+
export declare type MercurySetFocusAreaCustomFieldsPayload = Payload & {
|
|
95591
|
+
__typename?: 'MercurySetFocusAreaCustomFieldsPayload';
|
|
95595
95592
|
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
95596
95593
|
errors?: Maybe<Array<MutationError>>;
|
|
95597
95594
|
success: Scalars['Boolean']['output'];
|
|
@@ -96085,6 +96082,7 @@ export declare type MercuryTextCustomFieldInput = {
|
|
|
96085
96082
|
export declare type MercuryTownsquareProjectInsight = MercuryInsight & {
|
|
96086
96083
|
__typename?: 'MercuryTownsquareProjectInsight';
|
|
96087
96084
|
ari: Scalars['ID']['output'];
|
|
96085
|
+
focusArea?: Maybe<MercuryFocusArea>;
|
|
96088
96086
|
id: Scalars['ID']['output'];
|
|
96089
96087
|
insightData?: Maybe<TownsquareProject>;
|
|
96090
96088
|
summary?: Maybe<Scalars['String']['output']>;
|
|
@@ -97166,7 +97164,6 @@ export declare type Mutation = {
|
|
|
97166
97164
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
97167
97165
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
97168
97166
|
jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
97169
|
-
jira_applySuggestionActions?: Maybe<JiraApplySuggestionActionsPayload>;
|
|
97170
97167
|
jira_archiveIssue?: Maybe<JiraIssueArchivePayload>;
|
|
97171
97168
|
jira_archiveIssueAsync?: Maybe<JiraIssueArchiveAsyncPayload>;
|
|
97172
97169
|
jira_associateProjectToFieldScheme?: Maybe<JiraAssociateProjectToFieldSchemePayload>;
|
|
@@ -97190,7 +97187,6 @@ export declare type Mutation = {
|
|
|
97190
97187
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
97191
97188
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
97192
97189
|
jira_dismissAiAgentSession?: Maybe<JiraDismissAiAgentSessionPayload>;
|
|
97193
|
-
jira_dismissSuggestions?: Maybe<JiraDismissSuggestionActionsPayload>;
|
|
97194
97190
|
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
97195
97191
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
97196
97192
|
jira_listSettingMigrationMutation?: Maybe<JiraListSettingMigrationPayload>;
|
|
@@ -97260,6 +97256,7 @@ export declare type Mutation = {
|
|
|
97260
97256
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
97261
97257
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
97262
97258
|
jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
|
|
97259
|
+
jsmChannels_executeResolutionPlanAction: JsmChannelsResolutionPlanActionPayload;
|
|
97263
97260
|
jsmChannels_updateExperienceConfiguration: JsmChannelsExperienceConfigurationPayload;
|
|
97264
97261
|
jsmChannels_updateTaskAgentConfiguration: JsmChannelsTaskAgentConfigurationPayload;
|
|
97265
97262
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
@@ -97318,6 +97315,7 @@ export declare type Mutation = {
|
|
|
97318
97315
|
projects_addTeamContributors?: Maybe<TownsquareProjectsAddTeamContributorsPayload>;
|
|
97319
97316
|
projects_clone?: Maybe<TownsquareProjectsClonePayload>;
|
|
97320
97317
|
projects_create?: Maybe<TownsquareProjectsCreatePayload>;
|
|
97318
|
+
projects_createComment?: Maybe<TownsquareProjectsCreateCommentPayload>;
|
|
97321
97319
|
projects_createDecision?: Maybe<TownsquareProjectsCreateDecisionPayload>;
|
|
97322
97320
|
projects_createLearning?: Maybe<TownsquareProjectsCreateLearningPayload>;
|
|
97323
97321
|
projects_createLink?: Maybe<TownsquareProjectsCreateLinkPayload>;
|
|
@@ -99144,9 +99142,6 @@ export declare type MutationJira_AddTimelineIssueLinkArgs = {
|
|
|
99144
99142
|
cloudId: Scalars['ID']['input'];
|
|
99145
99143
|
input: JiraAddTimelineIssueLinkInput;
|
|
99146
99144
|
};
|
|
99147
|
-
export declare type MutationJira_ApplySuggestionActionsArgs = {
|
|
99148
|
-
input: Array<JiraApplySuggestionActionInput>;
|
|
99149
|
-
};
|
|
99150
99145
|
export declare type MutationJira_ArchiveIssueArgs = {
|
|
99151
99146
|
input: JiraIssueArchiveInput;
|
|
99152
99147
|
};
|
|
@@ -99222,9 +99217,6 @@ export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
|
99222
99217
|
export declare type MutationJira_DismissAiAgentSessionArgs = {
|
|
99223
99218
|
input?: InputMaybe<JiraDismissAiAgentSessionInput>;
|
|
99224
99219
|
};
|
|
99225
|
-
export declare type MutationJira_DismissSuggestionsArgs = {
|
|
99226
|
-
input: JiraDismissSuggestionsInput;
|
|
99227
|
-
};
|
|
99228
99220
|
export declare type MutationJira_DragAndDropBoardViewIssueArgs = {
|
|
99229
99221
|
input: JiraDragAndDropBoardViewIssueInput;
|
|
99230
99222
|
};
|
|
@@ -99449,6 +99441,12 @@ export declare type MutationJsmChannels_EstablishConnectionArgs = {
|
|
|
99449
99441
|
input: JsmChannelsEstablishConnectionInput;
|
|
99450
99442
|
jiraProjectAri: Scalars['ID']['input'];
|
|
99451
99443
|
};
|
|
99444
|
+
export declare type MutationJsmChannels_ExecuteResolutionPlanActionArgs = {
|
|
99445
|
+
action: JsmChannelsResolutionPlanAction;
|
|
99446
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
99447
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
99448
|
+
planId: Scalars['ID']['input'];
|
|
99449
|
+
};
|
|
99452
99450
|
export declare type MutationJsmChannels_UpdateExperienceConfigurationArgs = {
|
|
99453
99451
|
experience: JsmChannelsExperience;
|
|
99454
99452
|
input: JsmChannelsExperienceConfigurationInput;
|
|
@@ -99602,6 +99600,9 @@ export declare type MutationProjects_CloneArgs = {
|
|
|
99602
99600
|
export declare type MutationProjects_CreateArgs = {
|
|
99603
99601
|
input: TownsquareProjectsCreateInput;
|
|
99604
99602
|
};
|
|
99603
|
+
export declare type MutationProjects_CreateCommentArgs = {
|
|
99604
|
+
input: TownsquareProjectsCreateCommentInput;
|
|
99605
|
+
};
|
|
99605
99606
|
export declare type MutationProjects_CreateDecisionArgs = {
|
|
99606
99607
|
input: TownsquareProjectsCreateDecisionInput;
|
|
99607
99608
|
};
|
|
@@ -103814,7 +103815,6 @@ export declare type Query = {
|
|
|
103814
103815
|
jira_projectLevelSidebarMenuCustomization?: Maybe<JiraProjectLevelSidebarMenuCustomizationResult>;
|
|
103815
103816
|
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
103816
103817
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
103817
|
-
jira_suggestionsByContext?: Maybe<JiraSuggestionsConnection>;
|
|
103818
103818
|
jira_userSegRedirectAdvice?: Maybe<JiraUserSegRedirectAdvice>;
|
|
103819
103819
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
103820
103820
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
@@ -104061,6 +104061,7 @@ export declare type Query = {
|
|
|
104061
104061
|
stakeholderComms_getIncidentTemplate?: Maybe<StakeholderCommsIncidentTemplateResponse>;
|
|
104062
104062
|
stakeholderComms_getLicenseUsageLimit?: Maybe<StakeholderCommsLicenseUsage>;
|
|
104063
104063
|
stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
|
|
104064
|
+
stakeholderComms_getOpsgenieRiskAssessment?: Maybe<StakeholderCommsOpsgenieRiskAssessmentResult>;
|
|
104064
104065
|
stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
104065
104066
|
stakeholderComms_getPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
104066
104067
|
stakeholderComms_getPageSummaryDetails?: Maybe<StakeholderCommsPageSummaryDetailsResponse>;
|
|
@@ -104103,6 +104104,7 @@ export declare type Query = {
|
|
|
104103
104104
|
teamworkGraph_customerSupportMessages?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
104104
104105
|
teamworkGraph_getProjectContext?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
104105
104106
|
teamworkGraph_projectUpdates?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
104107
|
+
teamworkGraph_teamActiveProjects?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
104106
104108
|
teamworkGraph_teamProjects?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
104107
104109
|
teamworkGraph_teamUsers?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
104108
104110
|
teamworkGraph_userCommented?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -106658,9 +106660,6 @@ export declare type QueryJira_ProjectsSidebarMenuArgs = {
|
|
|
106658
106660
|
cloudId: Scalars['ID']['input'];
|
|
106659
106661
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
106660
106662
|
};
|
|
106661
|
-
export declare type QueryJira_SuggestionsByContextArgs = {
|
|
106662
|
-
input: JiraSuggestionsByContextInput;
|
|
106663
|
-
};
|
|
106664
106663
|
export declare type QueryJira_UserSegRedirectAdviceArgs = {
|
|
106665
106664
|
accountId: Scalars['ID']['input'];
|
|
106666
106665
|
cloudId: Scalars['ID']['input'];
|
|
@@ -107543,6 +107542,9 @@ export declare type QueryStakeholderComms_GetLicenseUsageLimitArgs = {
|
|
|
107543
107542
|
export declare type QueryStakeholderComms_GetMembershipsArgs = {
|
|
107544
107543
|
groupId: Scalars['String']['input'];
|
|
107545
107544
|
};
|
|
107545
|
+
export declare type QueryStakeholderComms_GetOpsgenieRiskAssessmentArgs = {
|
|
107546
|
+
changeRequestId: Scalars['ID']['input'];
|
|
107547
|
+
};
|
|
107546
107548
|
export declare type QueryStakeholderComms_GetPageByIdArgs = {
|
|
107547
107549
|
pageId: Scalars['String']['input'];
|
|
107548
107550
|
};
|
|
@@ -107682,6 +107684,11 @@ export declare type QueryTeamworkGraph_ProjectUpdatesArgs = {
|
|
|
107682
107684
|
projectId: Scalars['String']['input'];
|
|
107683
107685
|
startDate: Scalars['DateTime']['input'];
|
|
107684
107686
|
};
|
|
107687
|
+
export declare type QueryTeamworkGraph_TeamActiveProjectsArgs = {
|
|
107688
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
107689
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107690
|
+
teamId: Scalars['ID']['input'];
|
|
107691
|
+
};
|
|
107685
107692
|
export declare type QueryTeamworkGraph_TeamProjectsArgs = {
|
|
107686
107693
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107687
107694
|
endDate: Scalars['DateTime']['input'];
|
|
@@ -111302,6 +111309,7 @@ export declare type SearchThirdPartyMetadata = {
|
|
|
111302
111309
|
workspaceUrl?: Maybe<Scalars['String']['output']>;
|
|
111303
111310
|
};
|
|
111304
111311
|
export declare type SearchThirdPartyProduct = {
|
|
111312
|
+
connectionIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
111305
111313
|
connectorSources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
111306
111314
|
containerTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
111307
111315
|
datasourceId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -132560,6 +132568,7 @@ export declare type StakeholderCommsOpsgenieRiskAssessmentDetails = {
|
|
|
132560
132568
|
};
|
|
132561
132569
|
export declare type StakeholderCommsOpsgenieRiskAssessmentResult = {
|
|
132562
132570
|
__typename?: 'StakeholderCommsOpsgenieRiskAssessmentResult';
|
|
132571
|
+
id: Scalars['ID']['output'];
|
|
132563
132572
|
loadingStates?: Maybe<Array<StakeholderCommsOpsgenieLoadingState>>;
|
|
132564
132573
|
result?: Maybe<StakeholderCommsOpsgenieRiskAssessmentDetails>;
|
|
132565
132574
|
};
|
|
@@ -133276,7 +133285,7 @@ export declare type Subscription = {
|
|
|
133276
133285
|
migrationPlanningService: MigrationPlanningServiceSubscription;
|
|
133277
133286
|
sandbox: SandboxSubscription;
|
|
133278
133287
|
signup: SignupSubscriptionApi;
|
|
133279
|
-
|
|
133288
|
+
stakeholderComms_opsgenieRiskAssesmentOnUpdate?: Maybe<StakeholderCommsOpsgenieRiskAssessmentResult>;
|
|
133280
133289
|
testing?: Maybe<TestingSubscription>;
|
|
133281
133290
|
trello: TrelloSubscriptionApi;
|
|
133282
133291
|
};
|
|
@@ -133330,7 +133339,7 @@ export declare type SubscriptionJsmChannels_OnServiceAgentResolutionStateByTicke
|
|
|
133330
133339
|
jiraProjectAri: Scalars['ID']['input'];
|
|
133331
133340
|
workItemId: Scalars['ID']['input'];
|
|
133332
133341
|
};
|
|
133333
|
-
export declare type
|
|
133342
|
+
export declare type SubscriptionStakeholderComms_OpsgenieRiskAssesmentOnUpdateArgs = {
|
|
133334
133343
|
changeRequestId: Scalars['ID']['input'];
|
|
133335
133344
|
};
|
|
133336
133345
|
export declare enum SummaryType {
|
|
@@ -136453,6 +136462,16 @@ export declare type TownsquareProjectsClonePayload = {
|
|
|
136453
136462
|
project?: Maybe<TownsquareProject>;
|
|
136454
136463
|
success: Scalars['Boolean']['output'];
|
|
136455
136464
|
};
|
|
136465
|
+
export declare type TownsquareProjectsCreateCommentInput = {
|
|
136466
|
+
commentText: Scalars['String']['input'];
|
|
136467
|
+
entityId: Scalars['ID']['input'];
|
|
136468
|
+
};
|
|
136469
|
+
export declare type TownsquareProjectsCreateCommentPayload = {
|
|
136470
|
+
__typename?: 'TownsquareProjectsCreateCommentPayload';
|
|
136471
|
+
comment?: Maybe<TownsquareComment>;
|
|
136472
|
+
errors?: Maybe<Array<MutationError>>;
|
|
136473
|
+
success: Scalars['Boolean']['output'];
|
|
136474
|
+
};
|
|
136456
136475
|
export declare type TownsquareProjectsCreateDecisionInput = {
|
|
136457
136476
|
description: Scalars['String']['input'];
|
|
136458
136477
|
projectId: Scalars['ID']['input'];
|