@forge/cli-shared 8.14.1-next.0 → 8.15.0-next.1-experimental-919607a
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 +23 -0
- package/out/graphql/graphql-types.d.ts +197 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +22 -12
- package/out/shared/error-handling.d.ts +1 -0
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +7 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.15.0-next.1-experimental-919607a
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- e8cce7f: add transformErrorMessage for preserving error attributes
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [e21f32f]
|
|
12
|
+
- Updated dependencies [545ecc1]
|
|
13
|
+
- @forge/manifest@11.4.0-next.1-experimental-919607a
|
|
14
|
+
|
|
15
|
+
## 8.15.0-next.1
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- e8cce7f: add transformErrorMessage for preserving error attributes
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [e21f32f]
|
|
24
|
+
- @forge/manifest@11.4.0-next.1
|
|
25
|
+
|
|
3
26
|
## 8.14.1-next.0
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
@@ -1997,6 +1997,7 @@ export declare type AdminEntitlement = {
|
|
|
1997
1997
|
bundleName?: Maybe<Scalars['String']['output']>;
|
|
1998
1998
|
entitlement?: Maybe<AdminEntitlementDetails>;
|
|
1999
1999
|
id: Scalars['ID']['output'];
|
|
2000
|
+
licenseLocks?: Maybe<Array<Scalars['String']['output']>>;
|
|
2000
2001
|
plan?: Maybe<AdminWorkspacePlan>;
|
|
2001
2002
|
seats?: Maybe<AdminSeats>;
|
|
2002
2003
|
sourceSystem: Scalars['String']['output'];
|
|
@@ -4636,6 +4637,7 @@ export declare type AppInstallation = {
|
|
|
4636
4637
|
app?: Maybe<App>;
|
|
4637
4638
|
appEnvironment?: Maybe<AppEnvironment>;
|
|
4638
4639
|
appEnvironmentVersion?: Maybe<AppEnvironmentVersion>;
|
|
4640
|
+
computeDefinitionId?: Maybe<Scalars['ID']['output']>;
|
|
4639
4641
|
config?: Maybe<Array<Maybe<AppInstallationConfig>>>;
|
|
4640
4642
|
createdAt: Scalars['DateTime']['output'];
|
|
4641
4643
|
createdBy?: Maybe<User>;
|
|
@@ -22948,6 +22950,7 @@ export declare type Content = {
|
|
|
22948
22950
|
macroRenderedOutput?: Maybe<Array<Maybe<MapOfStringToFormattedBody>>>;
|
|
22949
22951
|
mediaSession: ContentMediaSession;
|
|
22950
22952
|
metadata: ContentMetadata;
|
|
22953
|
+
migratedFromConnect?: Maybe<Scalars['Boolean']['output']>;
|
|
22951
22954
|
mobileContentBody?: Maybe<Scalars['String']['output']>;
|
|
22952
22955
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
22953
22956
|
outgoingLinks?: Maybe<OutgoingLinks>;
|
|
@@ -23004,6 +23007,7 @@ export declare type ContentContentStateArgs = {
|
|
|
23004
23007
|
};
|
|
23005
23008
|
export declare type ContentContentStateLastUpdatedArgs = {
|
|
23006
23009
|
format?: InputMaybe<GraphQlDateFormat>;
|
|
23010
|
+
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
23007
23011
|
};
|
|
23008
23012
|
export declare type ContentDynamicMobileBodyArgs = {
|
|
23009
23013
|
imageLazyLoading?: Scalars['Boolean']['input'];
|
|
@@ -26461,7 +26465,7 @@ export declare type CsmAiActionVariableInput = {
|
|
|
26461
26465
|
name: Scalars['String']['input'];
|
|
26462
26466
|
};
|
|
26463
26467
|
export declare type CsmAiAddKnowledgeSourceInput = {
|
|
26464
|
-
csmAiKnowledgeFilter
|
|
26468
|
+
csmAiKnowledgeFilter?: InputMaybe<CsmAiKnowledgeFilterInput>;
|
|
26465
26469
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26466
26470
|
type: Scalars['String']['input'];
|
|
26467
26471
|
};
|
|
@@ -26764,7 +26768,7 @@ export declare type CsmAiKnowledgeFilterInput = {
|
|
|
26764
26768
|
export declare type CsmAiKnowledgeSource = {
|
|
26765
26769
|
__typename?: 'CsmAiKnowledgeSource';
|
|
26766
26770
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
26767
|
-
filters
|
|
26771
|
+
filters?: Maybe<CsmAiKnowledgeFilter>;
|
|
26768
26772
|
id: Scalars['ID']['output'];
|
|
26769
26773
|
type?: Maybe<Scalars['String']['output']>;
|
|
26770
26774
|
};
|
|
@@ -26882,7 +26886,7 @@ export declare type CsmAiUpdateHandoffConfigPayload = Payload & {
|
|
|
26882
26886
|
success: Scalars['Boolean']['output'];
|
|
26883
26887
|
};
|
|
26884
26888
|
export declare type CsmAiUpdateKnowledgeSourceInput = {
|
|
26885
|
-
csmAiKnowledgeFilter
|
|
26889
|
+
csmAiKnowledgeFilter?: InputMaybe<CsmAiKnowledgeFilterInput>;
|
|
26886
26890
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26887
26891
|
type: Scalars['String']['input'];
|
|
26888
26892
|
};
|
|
@@ -36660,6 +36664,7 @@ export declare type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNo
|
|
|
36660
36664
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
36661
36665
|
isInstalled: Scalars['Boolean']['output'];
|
|
36662
36666
|
serverUrl: Scalars['String']['output'];
|
|
36667
|
+
templateId: Scalars['String']['output'];
|
|
36663
36668
|
};
|
|
36664
36669
|
export declare type GraphIntegrationMcpAdminManagementMcpServerConnection = {
|
|
36665
36670
|
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerConnection';
|
|
@@ -36742,6 +36747,7 @@ export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
|
|
|
36742
36747
|
icon?: InputMaybe<Scalars['String']['input']>;
|
|
36743
36748
|
serverType?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerType>;
|
|
36744
36749
|
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
36750
|
+
templateId?: InputMaybe<Scalars['String']['input']>;
|
|
36745
36751
|
url: Scalars['URL']['input'];
|
|
36746
36752
|
};
|
|
36747
36753
|
export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerPayload = Payload & {
|
|
@@ -88499,6 +88505,10 @@ export declare type JiraAffectedServicesFieldPayload = Payload & {
|
|
|
88499
88505
|
export declare type JiraAffectedServicesInput = {
|
|
88500
88506
|
serviceId: Scalars['ID']['input'];
|
|
88501
88507
|
};
|
|
88508
|
+
export declare type JiraAgentAssignableInput = {
|
|
88509
|
+
agentAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
88510
|
+
agentId?: InputMaybe<Scalars['ID']['input']>;
|
|
88511
|
+
};
|
|
88502
88512
|
export declare type JiraAggregatedDate = JiraDatePickerField | JiraDateTimePickerField;
|
|
88503
88513
|
export declare type JiraAggregatedStatusField = JiraIssueField & Node & {
|
|
88504
88514
|
__typename?: 'JiraAggregatedStatusField';
|
|
@@ -90282,7 +90292,11 @@ export declare type JiraBoardViewFieldSwimlaneCellsArgs = {
|
|
|
90282
90292
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90283
90293
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
90284
90294
|
};
|
|
90285
|
-
export declare type
|
|
90295
|
+
export declare type JiraBoardViewFieldSwimlaneUser = {
|
|
90296
|
+
__typename?: 'JiraBoardViewFieldSwimlaneUser';
|
|
90297
|
+
user?: Maybe<User>;
|
|
90298
|
+
};
|
|
90299
|
+
export declare type JiraBoardViewFieldSwimlaneValue = JiraBoardViewFieldSwimlaneUser | JiraOption | JiraPriority;
|
|
90286
90300
|
export declare type JiraBoardViewInput = {
|
|
90287
90301
|
jiraBoardViewQueryInput?: InputMaybe<JiraBoardViewQueryInput>;
|
|
90288
90302
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
@@ -107097,6 +107111,12 @@ export declare type JiraSetFormulaFieldExpressionConfigPayload = Payload & {
|
|
|
107097
107111
|
jobId?: Maybe<Scalars['String']['output']>;
|
|
107098
107112
|
success: Scalars['Boolean']['output'];
|
|
107099
107113
|
};
|
|
107114
|
+
export declare type JiraSetIsAgentAssignableResponsePayload = Payload & {
|
|
107115
|
+
__typename?: 'JiraSetIsAgentAssignableResponsePayload';
|
|
107116
|
+
errors?: Maybe<Array<MutationError>>;
|
|
107117
|
+
isAssignable?: Maybe<Scalars['Boolean']['output']>;
|
|
107118
|
+
success: Scalars['Boolean']['output'];
|
|
107119
|
+
};
|
|
107100
107120
|
export declare type JiraSetIsFavouriteInput = {
|
|
107101
107121
|
beforeEntityId?: InputMaybe<Scalars['ID']['input']>;
|
|
107102
107122
|
entityId: Scalars['ID']['input'];
|
|
@@ -107202,6 +107222,15 @@ export declare type JiraSetProjectSelectedDeploymentAppsPropertyPayload = Payloa
|
|
|
107202
107222
|
errors?: Maybe<Array<MutationError>>;
|
|
107203
107223
|
success: Scalars['Boolean']['output'];
|
|
107204
107224
|
};
|
|
107225
|
+
export declare type JiraSetTimelineViewRangeModeInput = {
|
|
107226
|
+
rangeMode: JiraTimelineViewRangeMode;
|
|
107227
|
+
viewId: Scalars['ID']['input'];
|
|
107228
|
+
};
|
|
107229
|
+
export declare type JiraSetTimelineViewRangeModePayload = Payload & {
|
|
107230
|
+
__typename?: 'JiraSetTimelineViewRangeModePayload';
|
|
107231
|
+
errors?: Maybe<Array<MutationError>>;
|
|
107232
|
+
success: Scalars['Boolean']['output'];
|
|
107233
|
+
};
|
|
107205
107234
|
export declare type JiraSetViewFilterInput = {
|
|
107206
107235
|
jql: Scalars['String']['input'];
|
|
107207
107236
|
viewId: Scalars['ID']['input'];
|
|
@@ -108691,6 +108720,11 @@ export declare type JiraTimelineViewViewSettingsArgs = {
|
|
|
108691
108720
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
108692
108721
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
108693
108722
|
};
|
|
108723
|
+
export declare enum JiraTimelineViewRangeMode {
|
|
108724
|
+
Months = "MONTHS",
|
|
108725
|
+
Quarters = "QUARTERS",
|
|
108726
|
+
Weeks = "WEEKS"
|
|
108727
|
+
}
|
|
108694
108728
|
export declare type JiraTimelineVirtualField = {
|
|
108695
108729
|
issue?: Maybe<JiraIssue>;
|
|
108696
108730
|
};
|
|
@@ -108902,6 +108936,10 @@ export declare type JiraUpdateAffectedServicesFieldInput = {
|
|
|
108902
108936
|
id: Scalars['ID']['input'];
|
|
108903
108937
|
operation: JiraAffectedServicesFieldOperationInput;
|
|
108904
108938
|
};
|
|
108939
|
+
export declare type JiraUpdateAgentAssignmentInput = {
|
|
108940
|
+
agentInput: JiraAgentAssignableInput;
|
|
108941
|
+
isAssignable: Scalars['Boolean']['input'];
|
|
108942
|
+
};
|
|
108905
108943
|
export declare type JiraUpdateAttachmentFieldInput = {
|
|
108906
108944
|
id: Scalars['ID']['input'];
|
|
108907
108945
|
operation: JiraAttachmentFieldOperationInput;
|
|
@@ -118271,6 +118309,7 @@ export declare type MercuryCreateCommentPayload = Payload & {
|
|
|
118271
118309
|
};
|
|
118272
118310
|
export declare type MercuryCreateCoreCustomFieldDefinitionInput = {
|
|
118273
118311
|
dateField?: InputMaybe<MercuryCreateDateCustomFieldDefinitionInput>;
|
|
118312
|
+
multiSelectField?: InputMaybe<MercuryCreateMultiSelectCustomFieldDefinitionInput>;
|
|
118274
118313
|
numberField?: InputMaybe<MercuryCreateNumberCustomFieldDefinitionInput>;
|
|
118275
118314
|
singleSelectField?: InputMaybe<MercuryCreateSingleSelectCustomFieldDefinitionInput>;
|
|
118276
118315
|
textField?: InputMaybe<MercuryCreateTextCustomFieldDefinitionInput>;
|
|
@@ -118379,6 +118418,9 @@ export declare type MercuryCreateInvestmentCategorySetPayload = Payload & {
|
|
|
118379
118418
|
errors?: Maybe<Array<MutationError>>;
|
|
118380
118419
|
success: Scalars['Boolean']['output'];
|
|
118381
118420
|
};
|
|
118421
|
+
export declare type MercuryCreateMultiSelectCustomFieldDefinitionInput = {
|
|
118422
|
+
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
118423
|
+
};
|
|
118382
118424
|
export declare type MercuryCreateNumberCustomFieldDefinitionInput = {
|
|
118383
118425
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
118384
118426
|
};
|
|
@@ -118395,7 +118437,7 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
|
118395
118437
|
success: Scalars['Boolean']['output'];
|
|
118396
118438
|
};
|
|
118397
118439
|
export declare type MercuryCreateSingleSelectCustomFieldDefinitionInput = {
|
|
118398
|
-
options: Array<
|
|
118440
|
+
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
118399
118441
|
};
|
|
118400
118442
|
export declare type MercuryCreateStrategicEventCommentInput = {
|
|
118401
118443
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -118465,15 +118507,33 @@ export declare enum MercuryCustomFieldDefinitionSortField {
|
|
|
118465
118507
|
}
|
|
118466
118508
|
export declare type MercuryCustomFieldInput = {
|
|
118467
118509
|
dateField?: InputMaybe<MercuryDateCustomFieldInput>;
|
|
118510
|
+
multiSelectField?: InputMaybe<MercuryMultiSelectCustomFieldInput>;
|
|
118468
118511
|
numberField?: InputMaybe<MercuryNumberCustomFieldInput>;
|
|
118469
118512
|
singleSelectField?: InputMaybe<MercurySingleSelectCustomFieldInput>;
|
|
118470
118513
|
textField?: InputMaybe<MercuryTextCustomFieldInput>;
|
|
118471
118514
|
};
|
|
118515
|
+
export declare type MercuryCustomFieldSelectionOptionSetting = {
|
|
118516
|
+
__typename?: 'MercuryCustomFieldSelectionOptionSetting';
|
|
118517
|
+
key: MercuryCustomFieldSelectionOptionSettingKey;
|
|
118518
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
118519
|
+
};
|
|
118520
|
+
export declare type MercuryCustomFieldSelectionOptionSettingInput = {
|
|
118521
|
+
key: MercuryCustomFieldSelectionOptionSettingKey;
|
|
118522
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
118523
|
+
};
|
|
118524
|
+
export declare enum MercuryCustomFieldSelectionOptionSettingKey {
|
|
118525
|
+
Color = "COLOR"
|
|
118526
|
+
}
|
|
118472
118527
|
export declare type MercuryCustomSelectFieldOption = {
|
|
118473
118528
|
__typename?: 'MercuryCustomSelectFieldOption';
|
|
118474
118529
|
id: Scalars['ID']['output'];
|
|
118530
|
+
settings?: Maybe<Array<MercuryCustomFieldSelectionOptionSetting>>;
|
|
118475
118531
|
value: Scalars['String']['output'];
|
|
118476
118532
|
};
|
|
118533
|
+
export declare type MercuryCustomSelectFieldOptionInput = {
|
|
118534
|
+
settings?: InputMaybe<Array<MercuryCustomFieldSelectionOptionSettingInput>>;
|
|
118535
|
+
value: Scalars['String']['input'];
|
|
118536
|
+
};
|
|
118477
118537
|
export declare type MercuryDateCustomField = MercuryCustomField & {
|
|
118478
118538
|
__typename?: 'MercuryDateCustomField';
|
|
118479
118539
|
createdBy?: Maybe<User>;
|
|
@@ -118566,6 +118626,16 @@ export declare type MercuryDeleteCostSubtypePayload = Payload & {
|
|
|
118566
118626
|
export declare type MercuryDeleteCustomFieldDefinitionInput = {
|
|
118567
118627
|
id: Scalars['ID']['input'];
|
|
118568
118628
|
};
|
|
118629
|
+
export declare type MercuryDeleteCustomFieldDefinitionOptionsInput = {
|
|
118630
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
118631
|
+
optionIds: Array<Scalars['ID']['input']>;
|
|
118632
|
+
};
|
|
118633
|
+
export declare type MercuryDeleteCustomFieldDefinitionOptionsPayload = Payload & {
|
|
118634
|
+
__typename?: 'MercuryDeleteCustomFieldDefinitionOptionsPayload';
|
|
118635
|
+
customFieldDefinition?: Maybe<MercuryCustomFieldDefinition>;
|
|
118636
|
+
errors?: Maybe<Array<MutationError>>;
|
|
118637
|
+
success: Scalars['Boolean']['output'];
|
|
118638
|
+
};
|
|
118569
118639
|
export declare type MercuryDeleteCustomFieldDefinitionPayload = {
|
|
118570
118640
|
__typename?: 'MercuryDeleteCustomFieldDefinitionPayload';
|
|
118571
118641
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -119662,6 +119732,31 @@ export declare type MercuryMovedPositionSummaryByChangeProposalStatus = {
|
|
|
119662
119732
|
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
119663
119733
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
119664
119734
|
};
|
|
119735
|
+
export declare type MercuryMultiSelectCustomField = MercuryCustomField & {
|
|
119736
|
+
__typename?: 'MercuryMultiSelectCustomField';
|
|
119737
|
+
createdBy?: Maybe<User>;
|
|
119738
|
+
createdDate: Scalars['DateTime']['output'];
|
|
119739
|
+
definition?: Maybe<MercuryMultiSelectCustomFieldDefinition>;
|
|
119740
|
+
selectedOptions?: Maybe<Array<MercuryCustomSelectFieldOption>>;
|
|
119741
|
+
updatedBy?: Maybe<User>;
|
|
119742
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
119743
|
+
};
|
|
119744
|
+
export declare type MercuryMultiSelectCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
119745
|
+
__typename?: 'MercuryMultiSelectCustomFieldDefinition';
|
|
119746
|
+
createdBy?: Maybe<User>;
|
|
119747
|
+
createdDate: Scalars['DateTime']['output'];
|
|
119748
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
119749
|
+
id: Scalars['ID']['output'];
|
|
119750
|
+
name: Scalars['String']['output'];
|
|
119751
|
+
options?: Maybe<Array<MercuryCustomSelectFieldOption>>;
|
|
119752
|
+
scope: MercuryCustomFieldDefinitionScope;
|
|
119753
|
+
searchKey?: Maybe<Scalars['String']['output']>;
|
|
119754
|
+
updatedBy?: Maybe<User>;
|
|
119755
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
119756
|
+
};
|
|
119757
|
+
export declare type MercuryMultiSelectCustomFieldInput = {
|
|
119758
|
+
options?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
119759
|
+
};
|
|
119665
119760
|
export declare type MercuryMutationApi = {
|
|
119666
119761
|
__typename?: 'MercuryMutationApi';
|
|
119667
119762
|
addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
|
|
@@ -119676,6 +119771,7 @@ export declare type MercuryMutationApi = {
|
|
|
119676
119771
|
deleteComment?: Maybe<MercuryDeleteCommentPayload>;
|
|
119677
119772
|
deleteFocusArea?: Maybe<MercuryDeleteFocusAreaPayload>;
|
|
119678
119773
|
deleteFocusAreaCustomFieldDefinition?: Maybe<MercuryDeleteCustomFieldDefinitionPayload>;
|
|
119774
|
+
deleteFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryDeleteCustomFieldDefinitionOptionsPayload>;
|
|
119679
119775
|
deleteFocusAreaGoalLink?: Maybe<MercuryDeleteFocusAreaGoalLinkPayload>;
|
|
119680
119776
|
deleteFocusAreaGoalLinks?: Maybe<MercuryDeleteFocusAreaGoalLinksPayload>;
|
|
119681
119777
|
deleteFocusAreaLink?: Maybe<MercuryDeleteFocusAreaLinkPayload>;
|
|
@@ -119691,6 +119787,8 @@ export declare type MercuryMutationApi = {
|
|
|
119691
119787
|
recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
119692
119788
|
removeUserAccessToFocusArea?: Maybe<MercuryRemoveUserAccessToFocusAreaPayload>;
|
|
119693
119789
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
119790
|
+
reorderFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
|
|
119791
|
+
setFocusAreaCustomFieldDefinitionOptions?: Maybe<MercurySetCustomFieldDefinitionOptionsPayload>;
|
|
119694
119792
|
setFocusAreaCustomFieldValue?: Maybe<MercurySetFocusAreaCustomFieldPayload>;
|
|
119695
119793
|
setFocusAreaCustomFieldValues?: Maybe<MercurySetFocusAreaCustomFieldsPayload>;
|
|
119696
119794
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
@@ -119700,6 +119798,7 @@ export declare type MercuryMutationApi = {
|
|
|
119700
119798
|
updateFocusAreaAboutContent?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
119701
119799
|
updateFocusAreaCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
|
|
119702
119800
|
updateFocusAreaCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
119801
|
+
updateFocusAreaCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
|
|
119703
119802
|
updateFocusAreaName?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
119704
119803
|
updateFocusAreaOwner?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
119705
119804
|
updateFocusAreaStatusUpdate?: Maybe<MercuryUpdateFocusAreaStatusUpdatePayload>;
|
|
@@ -119744,6 +119843,9 @@ export declare type MercuryMutationApiDeleteFocusAreaArgs = {
|
|
|
119744
119843
|
export declare type MercuryMutationApiDeleteFocusAreaCustomFieldDefinitionArgs = {
|
|
119745
119844
|
input: MercuryDeleteCustomFieldDefinitionInput;
|
|
119746
119845
|
};
|
|
119846
|
+
export declare type MercuryMutationApiDeleteFocusAreaCustomFieldDefinitionOptionsArgs = {
|
|
119847
|
+
input: MercuryDeleteCustomFieldDefinitionOptionsInput;
|
|
119848
|
+
};
|
|
119747
119849
|
export declare type MercuryMutationApiDeleteFocusAreaGoalLinkArgs = {
|
|
119748
119850
|
input: MercuryDeleteFocusAreaGoalLinkInput;
|
|
119749
119851
|
};
|
|
@@ -119789,6 +119891,12 @@ export declare type MercuryMutationApiRemoveUserAccessToFocusAreaArgs = {
|
|
|
119789
119891
|
export declare type MercuryMutationApiRemoveWatcherFromFocusAreaArgs = {
|
|
119790
119892
|
input: MercuryRemoveWatcherFromFocusAreaInput;
|
|
119791
119893
|
};
|
|
119894
|
+
export declare type MercuryMutationApiReorderFocusAreaCustomFieldDefinitionOptionsArgs = {
|
|
119895
|
+
input: MercuryReorderCustomFieldDefinitionOptionsInput;
|
|
119896
|
+
};
|
|
119897
|
+
export declare type MercuryMutationApiSetFocusAreaCustomFieldDefinitionOptionsArgs = {
|
|
119898
|
+
input: MercurySetCustomFieldDefinitionOptionsInput;
|
|
119899
|
+
};
|
|
119792
119900
|
export declare type MercuryMutationApiSetFocusAreaCustomFieldValueArgs = {
|
|
119793
119901
|
input: MercurySetFocusAreaCustomFieldInput;
|
|
119794
119902
|
};
|
|
@@ -119816,6 +119924,9 @@ export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionDescri
|
|
|
119816
119924
|
export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionNameArgs = {
|
|
119817
119925
|
input: MercuryUpdateCustomFieldDefinitionNameInput;
|
|
119818
119926
|
};
|
|
119927
|
+
export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionOptionArgs = {
|
|
119928
|
+
input: MercuryUpdateCustomFieldDefinitionOptionInput;
|
|
119929
|
+
};
|
|
119819
119930
|
export declare type MercuryMutationApiUpdateFocusAreaNameArgs = {
|
|
119820
119931
|
input: MercuryUpdateFocusAreaNameInput;
|
|
119821
119932
|
};
|
|
@@ -120460,6 +120571,16 @@ export declare type MercuryRenameFocusAreaChangeInput = {
|
|
|
120460
120571
|
newFocusAreaName: Scalars['String']['input'];
|
|
120461
120572
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
120462
120573
|
};
|
|
120574
|
+
export declare type MercuryReorderCustomFieldDefinitionOptionsInput = {
|
|
120575
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
120576
|
+
optionIds: Array<Scalars['ID']['input']>;
|
|
120577
|
+
};
|
|
120578
|
+
export declare type MercuryReorderCustomFieldDefinitionOptionsPayload = Payload & {
|
|
120579
|
+
__typename?: 'MercuryReorderCustomFieldDefinitionOptionsPayload';
|
|
120580
|
+
customFieldDefinition?: Maybe<MercuryCustomFieldDefinition>;
|
|
120581
|
+
errors?: Maybe<Array<MutationError>>;
|
|
120582
|
+
success: Scalars['Boolean']['output'];
|
|
120583
|
+
};
|
|
120463
120584
|
export declare type MercuryRequestFundsChange = MercuryChangeInterface & Node & {
|
|
120464
120585
|
__typename?: 'MercuryRequestFundsChange';
|
|
120465
120586
|
amount: Scalars['BigDecimal']['output'];
|
|
@@ -120537,6 +120658,16 @@ export declare type MercurySetChangeProposalCustomFieldPayload = Payload & {
|
|
|
120537
120658
|
errors?: Maybe<Array<MutationError>>;
|
|
120538
120659
|
success: Scalars['Boolean']['output'];
|
|
120539
120660
|
};
|
|
120661
|
+
export declare type MercurySetCustomFieldDefinitionOptionsInput = {
|
|
120662
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
120663
|
+
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
120664
|
+
};
|
|
120665
|
+
export declare type MercurySetCustomFieldDefinitionOptionsPayload = Payload & {
|
|
120666
|
+
__typename?: 'MercurySetCustomFieldDefinitionOptionsPayload';
|
|
120667
|
+
customFieldDefinition?: Maybe<MercuryCustomFieldDefinition>;
|
|
120668
|
+
errors?: Maybe<Array<MutationError>>;
|
|
120669
|
+
success: Scalars['Boolean']['output'];
|
|
120670
|
+
};
|
|
120540
120671
|
export declare type MercurySetFocusAreaCustomFieldInput = {
|
|
120541
120672
|
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
120542
120673
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
@@ -120695,6 +120826,7 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
120695
120826
|
deleteChangeProposal?: Maybe<MercuryDeleteChangeProposalPayload>;
|
|
120696
120827
|
deleteChangeProposalComment?: Maybe<MercuryDeleteChangeProposalCommentPayload>;
|
|
120697
120828
|
deleteChangeProposalCustomFieldDefinition?: Maybe<MercuryDeleteCustomFieldDefinitionPayload>;
|
|
120829
|
+
deleteChangeProposalCustomFieldDefinitionOptions?: Maybe<MercuryDeleteCustomFieldDefinitionOptionsPayload>;
|
|
120698
120830
|
deleteChangeProposalsView?: Maybe<MercuryDeleteChangeProposalsViewPayload>;
|
|
120699
120831
|
deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
|
|
120700
120832
|
deleteStrategicEvent?: Maybe<MercuryDeleteStrategicEventPayload>;
|
|
@@ -120703,6 +120835,8 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
120703
120835
|
moveChanges?: Maybe<MercuryMoveChangesPayload>;
|
|
120704
120836
|
proposeChanges?: Maybe<MercuryProposeChangesPayload>;
|
|
120705
120837
|
removeTagsFromChangeProposal?: Maybe<MercuryRemoveTagsFromProposalPayload>;
|
|
120838
|
+
reorderChangeProposalCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
|
|
120839
|
+
setChangeProposalCustomFieldDefinitionOptions?: Maybe<MercurySetCustomFieldDefinitionOptionsPayload>;
|
|
120706
120840
|
setChangeProposalCustomFieldValue?: Maybe<MercurySetChangeProposalCustomFieldPayload>;
|
|
120707
120841
|
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
120708
120842
|
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
@@ -120711,6 +120845,7 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
120711
120845
|
updateChangeProposalComment?: Maybe<MercuryUpdateChangeProposalCommentPayload>;
|
|
120712
120846
|
updateChangeProposalCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
|
|
120713
120847
|
updateChangeProposalCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
120848
|
+
updateChangeProposalCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
|
|
120714
120849
|
updateChangeProposalDescription?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
120715
120850
|
updateChangeProposalFocusArea?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
120716
120851
|
updateChangeProposalImpact?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
@@ -120760,6 +120895,9 @@ export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalComment
|
|
|
120760
120895
|
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalCustomFieldDefinitionArgs = {
|
|
120761
120896
|
input: MercuryDeleteCustomFieldDefinitionInput;
|
|
120762
120897
|
};
|
|
120898
|
+
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalCustomFieldDefinitionOptionsArgs = {
|
|
120899
|
+
input: MercuryDeleteCustomFieldDefinitionOptionsInput;
|
|
120900
|
+
};
|
|
120763
120901
|
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalsViewArgs = {
|
|
120764
120902
|
input: MercuryDeleteChangeProposalsViewInput;
|
|
120765
120903
|
};
|
|
@@ -120784,6 +120922,12 @@ export declare type MercuryStrategicEventsMutationApiProposeChangesArgs = {
|
|
|
120784
120922
|
export declare type MercuryStrategicEventsMutationApiRemoveTagsFromChangeProposalArgs = {
|
|
120785
120923
|
input: MercuryRemoveTagsFromProposalInput;
|
|
120786
120924
|
};
|
|
120925
|
+
export declare type MercuryStrategicEventsMutationApiReorderChangeProposalCustomFieldDefinitionOptionsArgs = {
|
|
120926
|
+
input: MercuryReorderCustomFieldDefinitionOptionsInput;
|
|
120927
|
+
};
|
|
120928
|
+
export declare type MercuryStrategicEventsMutationApiSetChangeProposalCustomFieldDefinitionOptionsArgs = {
|
|
120929
|
+
input: MercurySetCustomFieldDefinitionOptionsInput;
|
|
120930
|
+
};
|
|
120787
120931
|
export declare type MercuryStrategicEventsMutationApiSetChangeProposalCustomFieldValueArgs = {
|
|
120788
120932
|
input: MercurySetChangeProposalCustomFieldInput;
|
|
120789
120933
|
};
|
|
@@ -120808,6 +120952,9 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalCustomF
|
|
|
120808
120952
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalCustomFieldDefinitionNameArgs = {
|
|
120809
120953
|
input: MercuryUpdateCustomFieldDefinitionNameInput;
|
|
120810
120954
|
};
|
|
120955
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalCustomFieldDefinitionOptionArgs = {
|
|
120956
|
+
input: MercuryUpdateCustomFieldDefinitionOptionInput;
|
|
120957
|
+
};
|
|
120811
120958
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalDescriptionArgs = {
|
|
120812
120959
|
input: MercuryUpdateChangeProposalDescriptionInput;
|
|
120813
120960
|
};
|
|
@@ -121245,6 +121392,18 @@ export declare type MercuryUpdateCustomFieldDefinitionNamePayload = {
|
|
|
121245
121392
|
errors?: Maybe<Array<MutationError>>;
|
|
121246
121393
|
success: Scalars['Boolean']['output'];
|
|
121247
121394
|
};
|
|
121395
|
+
export declare type MercuryUpdateCustomFieldDefinitionOptionInput = {
|
|
121396
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
121397
|
+
optionId: Scalars['ID']['input'];
|
|
121398
|
+
settings?: InputMaybe<Array<MercuryCustomFieldSelectionOptionSettingInput>>;
|
|
121399
|
+
value: Scalars['String']['input'];
|
|
121400
|
+
};
|
|
121401
|
+
export declare type MercuryUpdateCustomFieldDefinitionOptionPayload = Payload & {
|
|
121402
|
+
__typename?: 'MercuryUpdateCustomFieldDefinitionOptionPayload';
|
|
121403
|
+
customFieldDefinition?: Maybe<MercuryCustomFieldDefinition>;
|
|
121404
|
+
errors?: Maybe<Array<MutationError>>;
|
|
121405
|
+
success: Scalars['Boolean']['output'];
|
|
121406
|
+
};
|
|
121248
121407
|
export declare type MercuryUpdateFocusAreaAboutContentInput = {
|
|
121249
121408
|
aboutContent: Scalars['String']['input'];
|
|
121250
121409
|
cloudId: Scalars['ID']['input'];
|
|
@@ -122168,6 +122327,7 @@ export declare type Mutation = {
|
|
|
122168
122327
|
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
122169
122328
|
goals_editUserCustomField?: Maybe<TownsquareGoalsEditUserCustomFieldPayload>;
|
|
122170
122329
|
goals_grantAccess?: Maybe<TownsquareGoalGrantAccessPayload>;
|
|
122330
|
+
goals_linkJiraAlignProject?: Maybe<TownsquareGoalsLinkJiraAlignProjectPayload>;
|
|
122171
122331
|
goals_linkWorkItem?: Maybe<TownsquareGoalsLinkWorkItemPayload>;
|
|
122172
122332
|
goals_removeDropdownCustomFieldValue?: Maybe<TownsquareGoalsRemoveDropdownCustomFieldValuePayload>;
|
|
122173
122333
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
@@ -122292,6 +122452,7 @@ export declare type Mutation = {
|
|
|
122292
122452
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
122293
122453
|
jira_setFieldSetsPreferences?: Maybe<JiraSetFieldSetsPreferencesPayload>;
|
|
122294
122454
|
jira_setGlobalPermissionUserGroups?: Maybe<JiraGlobalPermissionSetUserGroupsPayload>;
|
|
122455
|
+
jira_setIsAgentAssignable?: Maybe<JiraSetIsAgentAssignableResponsePayload>;
|
|
122295
122456
|
jira_setIssueSearchAggregationConfig?: Maybe<JiraSetIssueSearchAggregationConfigPayload>;
|
|
122296
122457
|
jira_setIssueSearchFieldSets?: Maybe<JiraSetIssueSearchFieldSetsPayload>;
|
|
122297
122458
|
jira_setIssueSearchGroupBy?: Maybe<JiraSetIssueSearchGroupByPayload>;
|
|
@@ -122301,6 +122462,7 @@ export declare type Mutation = {
|
|
|
122301
122462
|
jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
|
|
122302
122463
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
122303
122464
|
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
122465
|
+
jira_setTimelineViewRangeMode?: Maybe<JiraSetTimelineViewRangeModePayload>;
|
|
122304
122466
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
122305
122467
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
122306
122468
|
jira_trashCustomFields?: Maybe<JiraTrashCustomFieldsPayload>;
|
|
@@ -124449,6 +124611,9 @@ export declare type MutationGoals_EditUserCustomFieldArgs = {
|
|
|
124449
124611
|
export declare type MutationGoals_GrantAccessArgs = {
|
|
124450
124612
|
input: TownsquareGoalGrantAccessInput;
|
|
124451
124613
|
};
|
|
124614
|
+
export declare type MutationGoals_LinkJiraAlignProjectArgs = {
|
|
124615
|
+
input: TownsquareGoalsLinkJiraAlignProjectInput;
|
|
124616
|
+
};
|
|
124452
124617
|
export declare type MutationGoals_LinkWorkItemArgs = {
|
|
124453
124618
|
input: TownsquareGoalsLinkWorkItemInput;
|
|
124454
124619
|
};
|
|
@@ -124818,6 +124983,10 @@ export declare type MutationJira_SetGlobalPermissionUserGroupsArgs = {
|
|
|
124818
124983
|
cloudId: Scalars['ID']['input'];
|
|
124819
124984
|
input: JiraGlobalPermissionSetUserGroupsInput;
|
|
124820
124985
|
};
|
|
124986
|
+
export declare type MutationJira_SetIsAgentAssignableArgs = {
|
|
124987
|
+
cloudId: Scalars['ID']['input'];
|
|
124988
|
+
input: JiraUpdateAgentAssignmentInput;
|
|
124989
|
+
};
|
|
124821
124990
|
export declare type MutationJira_SetIssueSearchAggregationConfigArgs = {
|
|
124822
124991
|
input: JiraSetIssueSearchAggregationConfigInput;
|
|
124823
124992
|
};
|
|
@@ -124846,6 +125015,9 @@ export declare type MutationJira_SetShowUnscheduledIssuesCalendarPanelArgs = {
|
|
|
124846
125015
|
cloudId: Scalars['ID']['input'];
|
|
124847
125016
|
show: Scalars['Boolean']['input'];
|
|
124848
125017
|
};
|
|
125018
|
+
export declare type MutationJira_SetTimelineViewRangeModeArgs = {
|
|
125019
|
+
input: JiraSetTimelineViewRangeModeInput;
|
|
125020
|
+
};
|
|
124849
125021
|
export declare type MutationJira_SetViewFilterArgs = {
|
|
124850
125022
|
input: JiraSetViewFilterInput;
|
|
124851
125023
|
};
|
|
@@ -129157,6 +129329,7 @@ export declare type Query = {
|
|
|
129157
129329
|
confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
|
|
129158
129330
|
confluence_getLatestPendingRequests?: Maybe<ConfluenceLatestPendingRequests>;
|
|
129159
129331
|
confluence_getPlaylist?: Maybe<ConfluencePlaylist>;
|
|
129332
|
+
confluence_getSmartContentFeatures?: Maybe<Array<Maybe<SmartPageFeatures>>>;
|
|
129160
129333
|
confluence_getTotalPendingContentAccessRequestsCount?: Maybe<Scalars['Int']['output']>;
|
|
129161
129334
|
confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
|
|
129162
129335
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -129504,6 +129677,7 @@ export declare type Query = {
|
|
|
129504
129677
|
jira_fieldSchemes?: Maybe<JiraFieldSchemesConnection>;
|
|
129505
129678
|
jira_fieldSchemesByARIs?: Maybe<Array<Maybe<JiraFieldScheme>>>;
|
|
129506
129679
|
jira_fieldsPerSchemeLimit?: Maybe<Scalars['Int']['output']>;
|
|
129680
|
+
jira_isAgentAssignable?: Maybe<Scalars['Boolean']['output']>;
|
|
129507
129681
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
129508
129682
|
jira_issueSearchTopLevelIssueFieldsAggregation?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
129509
129683
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
@@ -131312,6 +131486,9 @@ export declare type QueryConfluence_GetPlaylistArgs = {
|
|
|
131312
131486
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131313
131487
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131314
131488
|
};
|
|
131489
|
+
export declare type QueryConfluence_GetSmartContentFeaturesArgs = {
|
|
131490
|
+
contentAris: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
131491
|
+
};
|
|
131315
131492
|
export declare type QueryConfluence_GetTotalPendingContentAccessRequestsCountArgs = {
|
|
131316
131493
|
cloudId: Scalars['ID']['input'];
|
|
131317
131494
|
};
|
|
@@ -132805,6 +132982,10 @@ export declare type QueryJira_FieldSchemesByArIsArgs = {
|
|
|
132805
132982
|
export declare type QueryJira_FieldsPerSchemeLimitArgs = {
|
|
132806
132983
|
cloudId: Scalars['ID']['input'];
|
|
132807
132984
|
};
|
|
132985
|
+
export declare type QueryJira_IsAgentAssignableArgs = {
|
|
132986
|
+
agentInput: JiraAgentAssignableInput;
|
|
132987
|
+
cloudId: Scalars['ID']['input'];
|
|
132988
|
+
};
|
|
132808
132989
|
export declare type QueryJira_IsRovoLlmEnabledArgs = {
|
|
132809
132990
|
cloudId: Scalars['ID']['input'];
|
|
132810
132991
|
};
|
|
@@ -163021,6 +163202,17 @@ export declare type TownsquareGoalsEditUserCustomFieldPayload = {
|
|
|
163021
163202
|
success: Scalars['Boolean']['output'];
|
|
163022
163203
|
user?: Maybe<User>;
|
|
163023
163204
|
};
|
|
163205
|
+
export declare type TownsquareGoalsLinkJiraAlignProjectInput = {
|
|
163206
|
+
goalId: Scalars['ID']['input'];
|
|
163207
|
+
jiraAlignProjectId: Scalars['ID']['input'];
|
|
163208
|
+
};
|
|
163209
|
+
export declare type TownsquareGoalsLinkJiraAlignProjectPayload = {
|
|
163210
|
+
__typename?: 'TownsquareGoalsLinkJiraAlignProjectPayload';
|
|
163211
|
+
errors?: Maybe<Array<MutationError>>;
|
|
163212
|
+
goal?: Maybe<TownsquareGoal>;
|
|
163213
|
+
jiraAlignProject?: Maybe<JiraAlignAggProject>;
|
|
163214
|
+
success: Scalars['Boolean']['output'];
|
|
163215
|
+
};
|
|
163024
163216
|
export declare type TownsquareGoalsLinkWorkItemInput = {
|
|
163025
163217
|
goalId: Scalars['ID']['input'];
|
|
163026
163218
|
workItemId: Scalars['ID']['input'];
|