@forge/cli-shared 3.23.3-next.9-experimental-cf84ac7 → 3.23.3
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 +11 -3
- package/out/graphql/graphql-types.d.ts +251 -15
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +30 -6
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 3.23.3
|
|
3
|
+
## 3.23.3
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -42,10 +42,18 @@
|
|
|
42
42
|
- Updated dependencies [5b82e7f]
|
|
43
43
|
- Updated dependencies [882be11]
|
|
44
44
|
- Updated dependencies [8163348]
|
|
45
|
+
- Updated dependencies [fd0306f]
|
|
45
46
|
- Updated dependencies [96feb0c]
|
|
46
47
|
- Updated dependencies [32fa518]
|
|
47
|
-
- @forge/util@1.4.1
|
|
48
|
-
- @forge/manifest@5.5.3
|
|
48
|
+
- @forge/util@1.4.1
|
|
49
|
+
- @forge/manifest@5.5.3
|
|
50
|
+
|
|
51
|
+
## 3.23.3-next.10
|
|
52
|
+
|
|
53
|
+
### Patch Changes
|
|
54
|
+
|
|
55
|
+
- Updated dependencies [fd0306f]
|
|
56
|
+
- @forge/manifest@5.5.3-next.5
|
|
49
57
|
|
|
50
58
|
## 3.23.3-next.9
|
|
51
59
|
|
|
@@ -7135,6 +7135,7 @@ export declare type CreateCompassComponentFromTemplateArgumentInput = {
|
|
|
7135
7135
|
};
|
|
7136
7136
|
export declare type CreateCompassComponentFromTemplateInput = {
|
|
7137
7137
|
createComponentDetails: CreateCompassComponentInput;
|
|
7138
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7138
7139
|
templateArguments?: InputMaybe<Array<CreateCompassComponentFromTemplateArgumentInput>>;
|
|
7139
7140
|
templateComponentId: Scalars['ID']['input'];
|
|
7140
7141
|
};
|
|
@@ -8923,6 +8924,7 @@ export declare type DevOpsDeploymentProviderConfigStateArgs = {
|
|
|
8923
8924
|
};
|
|
8924
8925
|
export declare type DevOpsDesign = Node & {
|
|
8925
8926
|
__typename?: 'DevOpsDesign';
|
|
8927
|
+
associatedIssues?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignInverseConnection>;
|
|
8926
8928
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
8927
8929
|
id: Scalars['ID']['output'];
|
|
8928
8930
|
inspectUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -8934,6 +8936,10 @@ export declare type DevOpsDesign = Node & {
|
|
|
8934
8936
|
type?: Maybe<DevOpsDesignType>;
|
|
8935
8937
|
url?: Maybe<Scalars['URL']['output']>;
|
|
8936
8938
|
};
|
|
8939
|
+
export declare type DevOpsDesignAssociatedIssuesArgs = {
|
|
8940
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
8941
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8942
|
+
};
|
|
8937
8943
|
export declare type DevOpsDesignProviderArgs = {
|
|
8938
8944
|
id: Scalars['ID']['input'];
|
|
8939
8945
|
providerTypes?: InputMaybe<Array<DevOpsProviderType>>;
|
|
@@ -11241,7 +11247,7 @@ export declare type ForgeMetricsQueryLatencyBucketsArgs = {
|
|
|
11241
11247
|
query: ForgeMetricsLatencyBucketsQueryInput;
|
|
11242
11248
|
};
|
|
11243
11249
|
export declare type ForgeMetricsQueryRequestUrlsArgs = {
|
|
11244
|
-
query:
|
|
11250
|
+
query: ForgeMetricsApiRequestQueryInput;
|
|
11245
11251
|
};
|
|
11246
11252
|
export declare type ForgeMetricsQuerySitesArgs = {
|
|
11247
11253
|
query: ForgeMetricsQueryInput;
|
|
@@ -23676,16 +23682,18 @@ export declare type HelpCenterBannerInput = {
|
|
|
23676
23682
|
};
|
|
23677
23683
|
export declare type HelpCenterBranding = {
|
|
23678
23684
|
__typename?: 'HelpCenterBranding';
|
|
23685
|
+
banner?: Maybe<HelpCenterBanner>;
|
|
23679
23686
|
colors?: Maybe<HelpCenterBrandingColors>;
|
|
23680
|
-
helpCenterBanner?: Maybe<HelpCenterBanner>;
|
|
23681
23687
|
homePageTitle?: Maybe<HelpCenterHomePageTitle>;
|
|
23682
23688
|
logo?: Maybe<HelpCenterLogo>;
|
|
23683
23689
|
};
|
|
23684
23690
|
export declare type HelpCenterBrandingColors = {
|
|
23685
23691
|
__typename?: 'HelpCenterBrandingColors';
|
|
23692
|
+
bannerTextColor?: Maybe<Scalars['String']['output']>;
|
|
23686
23693
|
primary?: Maybe<Scalars['String']['output']>;
|
|
23687
23694
|
};
|
|
23688
23695
|
export declare type HelpCenterBrandingColorsInput = {
|
|
23696
|
+
bannerTextColor?: InputMaybe<Scalars['String']['input']>;
|
|
23689
23697
|
primary?: InputMaybe<Scalars['String']['input']>;
|
|
23690
23698
|
};
|
|
23691
23699
|
export declare type HelpCenterBrandingInput = {
|
|
@@ -23849,6 +23857,10 @@ export declare type HelpCenterMediaConfig = {
|
|
|
23849
23857
|
mediaToken?: Maybe<Scalars['String']['output']>;
|
|
23850
23858
|
mediaUrl?: Maybe<Scalars['String']['output']>;
|
|
23851
23859
|
};
|
|
23860
|
+
export declare enum HelpCenterMediaConfigOperationType {
|
|
23861
|
+
BannerUpload = "BANNER_UPLOAD",
|
|
23862
|
+
LogoUpload = "LOGO_UPLOAD"
|
|
23863
|
+
}
|
|
23852
23864
|
export declare type HelpCenterMutationApi = {
|
|
23853
23865
|
__typename?: 'HelpCenterMutationApi';
|
|
23854
23866
|
createHelpDesk?: Maybe<HelpCenterHelpDeskPayload>;
|
|
@@ -23939,10 +23951,8 @@ export declare type HelpCenterQueryApi = {
|
|
|
23939
23951
|
__typename?: 'HelpCenterQueryApi';
|
|
23940
23952
|
getHelpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
23941
23953
|
helpCenterById?: Maybe<HelpCenterQueryResult>;
|
|
23942
|
-
helpCenterFromProductName?: Maybe<HelpCenterQueryResult>;
|
|
23943
23954
|
helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
|
|
23944
23955
|
helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
|
|
23945
|
-
helpCenterTopicFromProductName?: Maybe<HelpCenterTopicResult>;
|
|
23946
23956
|
helpCenters?: Maybe<Array<Maybe<HelpCenterQueryResult>>>;
|
|
23947
23957
|
helpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
23948
23958
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
@@ -23954,9 +23964,6 @@ export declare type HelpCenterQueryApiGetHelpDeskByIdArgs = {
|
|
|
23954
23964
|
export declare type HelpCenterQueryApiHelpCenterByIdArgs = {
|
|
23955
23965
|
helpCenterAri: Scalars['ID']['input'];
|
|
23956
23966
|
};
|
|
23957
|
-
export declare type HelpCenterQueryApiHelpCenterFromProductNameArgs = {
|
|
23958
|
-
productName: Scalars['String']['input'];
|
|
23959
|
-
};
|
|
23960
23967
|
export declare type HelpCenterQueryApiHelpCenterReportingByIdArgs = {
|
|
23961
23968
|
helpCenterAri: Scalars['ID']['input'];
|
|
23962
23969
|
};
|
|
@@ -23964,23 +23971,20 @@ export declare type HelpCenterQueryApiHelpCenterTopicByIdArgs = {
|
|
|
23964
23971
|
helpCenterAri: Scalars['ID']['input'];
|
|
23965
23972
|
topicId: Scalars['ID']['input'];
|
|
23966
23973
|
};
|
|
23967
|
-
export declare type HelpCenterQueryApiHelpCenterTopicFromProductNameArgs = {
|
|
23968
|
-
productName: Scalars['String']['input'];
|
|
23969
|
-
topicId: Scalars['ID']['input'];
|
|
23970
|
-
};
|
|
23971
23974
|
export declare type HelpCenterQueryApiHelpDeskByIdArgs = {
|
|
23972
23975
|
helpCenterAri: Scalars['ID']['input'];
|
|
23973
23976
|
helpDeskAri: Scalars['ID']['input'];
|
|
23974
23977
|
};
|
|
23975
23978
|
export declare type HelpCenterQueryApiMediaConfigArgs = {
|
|
23976
23979
|
helpCenterAri: Scalars['ID']['input'];
|
|
23980
|
+
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
23977
23981
|
};
|
|
23978
23982
|
export declare type HelpCenterQueryResult = HelpCenter | QueryError;
|
|
23979
23983
|
export declare type HelpCenterReporting = {
|
|
23980
23984
|
__typename?: 'HelpCenterReporting';
|
|
23981
23985
|
helpCenterId: Scalars['ID']['output'];
|
|
23982
23986
|
performanceIndicators?: Maybe<Array<HelpCenterReportingPerformanceIndicator>>;
|
|
23983
|
-
|
|
23987
|
+
refreshedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
23984
23988
|
};
|
|
23985
23989
|
export declare type HelpCenterReportingPerformanceIndicator = {
|
|
23986
23990
|
__typename?: 'HelpCenterReportingPerformanceIndicator';
|
|
@@ -24184,6 +24188,17 @@ export declare type HelpLayoutAlignmentSettingsInput = {
|
|
|
24184
24188
|
horizontalAlignment?: InputMaybe<HelpLayoutHorizontalAlignment>;
|
|
24185
24189
|
verticalAlignment?: InputMaybe<HelpLayoutVerticalAlignment>;
|
|
24186
24190
|
};
|
|
24191
|
+
export declare type HelpLayoutAnnouncementElement = HelpLayoutVisualEntity & Node & {
|
|
24192
|
+
__typename?: 'HelpLayoutAnnouncementElement';
|
|
24193
|
+
data?: Maybe<HelpLayoutAnnouncementElementData>;
|
|
24194
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
24195
|
+
id: Scalars['ID']['output'];
|
|
24196
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
24197
|
+
};
|
|
24198
|
+
export declare type HelpLayoutAnnouncementElementData = {
|
|
24199
|
+
__typename?: 'HelpLayoutAnnouncementElementData';
|
|
24200
|
+
announcementContent?: Maybe<Scalars['String']['output']>;
|
|
24201
|
+
};
|
|
24187
24202
|
export declare type HelpLayoutAtomicElement = HelpLayoutHeadingAtomicElement | HelpLayoutImageAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement;
|
|
24188
24203
|
export declare type HelpLayoutAtomicElementInput = {
|
|
24189
24204
|
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
@@ -24295,6 +24310,13 @@ export declare enum HelpLayoutHeadingType {
|
|
|
24295
24310
|
H5 = "h5",
|
|
24296
24311
|
H6 = "h6"
|
|
24297
24312
|
}
|
|
24313
|
+
export declare type HelpLayoutHeroElement = HelpLayoutCompositeElement & HelpLayoutVisualEntity & Node & {
|
|
24314
|
+
__typename?: 'HelpLayoutHeroElement';
|
|
24315
|
+
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
24316
|
+
elementType?: Maybe<HelpLayoutCompositeElementType>;
|
|
24317
|
+
id: Scalars['ID']['output'];
|
|
24318
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
24319
|
+
};
|
|
24298
24320
|
export declare enum HelpLayoutHorizontalAlignment {
|
|
24299
24321
|
Center = "CENTER",
|
|
24300
24322
|
Left = "LEFT",
|
|
@@ -24387,6 +24409,13 @@ export declare type HelpLayoutParagraphConfigInput = {
|
|
|
24387
24409
|
adf: Scalars['String']['input'];
|
|
24388
24410
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
24389
24411
|
};
|
|
24412
|
+
export declare type HelpLayoutPortalsListElement = HelpLayoutVisualEntity & Node & {
|
|
24413
|
+
__typename?: 'HelpLayoutPortalsListElement';
|
|
24414
|
+
config?: Maybe<Scalars['String']['output']>;
|
|
24415
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
24416
|
+
id: Scalars['ID']['output'];
|
|
24417
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
24418
|
+
};
|
|
24390
24419
|
export declare type HelpLayoutQueryApi = {
|
|
24391
24420
|
__typename?: 'HelpLayoutQueryApi';
|
|
24392
24421
|
elementTypes?: Maybe<Array<HelpLayoutElementType>>;
|
|
@@ -24459,6 +24488,20 @@ export declare type HelpLayoutSubsectionInput = {
|
|
|
24459
24488
|
elements: Array<HelpLayoutElementInput>;
|
|
24460
24489
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
24461
24490
|
};
|
|
24491
|
+
export declare type HelpLayoutSuggestedRequestFormsListElement = HelpLayoutVisualEntity & Node & {
|
|
24492
|
+
__typename?: 'HelpLayoutSuggestedRequestFormsListElement';
|
|
24493
|
+
config?: Maybe<Scalars['String']['output']>;
|
|
24494
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
24495
|
+
id: Scalars['ID']['output'];
|
|
24496
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
24497
|
+
};
|
|
24498
|
+
export declare type HelpLayoutTopicsListElement = HelpLayoutVisualEntity & Node & {
|
|
24499
|
+
__typename?: 'HelpLayoutTopicsListElement';
|
|
24500
|
+
config?: Maybe<Scalars['String']['output']>;
|
|
24501
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
24502
|
+
id: Scalars['ID']['output'];
|
|
24503
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
24504
|
+
};
|
|
24462
24505
|
export declare type HelpLayoutUpdateInput = {
|
|
24463
24506
|
layoutId: Scalars['ID']['input'];
|
|
24464
24507
|
sections: Array<HelpLayoutSectionInput>;
|
|
@@ -24478,11 +24521,13 @@ export declare type HelpLayoutVisualConfig = {
|
|
|
24478
24521
|
__typename?: 'HelpLayoutVisualConfig';
|
|
24479
24522
|
alignment?: Maybe<HelpLayoutAlignmentSettings>;
|
|
24480
24523
|
backgroundImage?: Maybe<HelpLayoutBackgroundImage>;
|
|
24524
|
+
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
24481
24525
|
themeTemplateId?: Maybe<Scalars['String']['output']>;
|
|
24482
24526
|
};
|
|
24483
24527
|
export declare type HelpLayoutVisualConfigInput = {
|
|
24484
24528
|
alignment?: InputMaybe<HelpLayoutAlignmentSettingsInput>;
|
|
24485
24529
|
backgroundImage?: InputMaybe<HelpLayoutBackgroundImageInput>;
|
|
24530
|
+
hidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
24486
24531
|
themeTemplateId?: InputMaybe<Scalars['String']['input']>;
|
|
24487
24532
|
};
|
|
24488
24533
|
export declare type HelpLayoutVisualEntity = {
|
|
@@ -28078,6 +28123,7 @@ export declare type JiraIssue = Node & {
|
|
|
28078
28123
|
fields?: Maybe<JiraIssueFieldConnection>;
|
|
28079
28124
|
fieldsById?: Maybe<JiraIssueFieldConnection>;
|
|
28080
28125
|
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
28126
|
+
hasRelationshipToVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
28081
28127
|
hierarchyLevelAbove?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
28082
28128
|
hierarchyLevelBelow?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
28083
28129
|
id: Scalars['ID']['output'];
|
|
@@ -28132,6 +28178,7 @@ export declare type JiraIssueFieldSetsByIdArgs = {
|
|
|
28132
28178
|
export declare type JiraIssueFieldSetsForIssueSearchViewArgs = {
|
|
28133
28179
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28134
28180
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
28181
|
+
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
28135
28182
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28136
28183
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
28137
28184
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -28154,6 +28201,9 @@ export declare type JiraIssueFieldsByIdOrAliasArgs = {
|
|
|
28154
28201
|
idsOrAliases: Array<InputMaybe<Scalars['String']['input']>>;
|
|
28155
28202
|
ignoreMissingFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28156
28203
|
};
|
|
28204
|
+
export declare type JiraIssueHasRelationshipToVersionArgs = {
|
|
28205
|
+
versionId: Scalars['ID']['input'];
|
|
28206
|
+
};
|
|
28157
28207
|
export declare type JiraIssueIssueLinksArgs = {
|
|
28158
28208
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28159
28209
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -28922,6 +28972,7 @@ export declare type JiraIssueSearchStatus = {
|
|
|
28922
28972
|
export declare type JiraIssueSearchView = Node & {
|
|
28923
28973
|
__typename?: 'JiraIssueSearchView';
|
|
28924
28974
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
28975
|
+
filterId?: Maybe<Scalars['String']['output']>;
|
|
28925
28976
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
28926
28977
|
id: Scalars['ID']['output'];
|
|
28927
28978
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
@@ -28946,6 +28997,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
28946
28997
|
JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
|
|
28947
28998
|
JiraDateField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
28948
28999
|
JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
29000
|
+
JiraIssueTypeField?: InputMaybe<Array<JiraUpdateIssueTypeFieldInput>>;
|
|
28949
29001
|
JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
28950
29002
|
JiraMultipleSelectField?: InputMaybe<Array<JiraUpdateMultipleSelectFieldInput>>;
|
|
28951
29003
|
JiraMultipleVersionPickerField?: InputMaybe<Array<JiraUpdateMultipleVersionPickerFieldInput>>;
|
|
@@ -29031,6 +29083,16 @@ export declare type JiraIssueTypeFieldIssueTypesArgs = {
|
|
|
29031
29083
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
29032
29084
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29033
29085
|
};
|
|
29086
|
+
export declare type JiraIssueTypeFieldOperationInput = {
|
|
29087
|
+
id: Scalars['ID']['input'];
|
|
29088
|
+
operation: JiraSingleValueFieldOperations;
|
|
29089
|
+
};
|
|
29090
|
+
export declare type JiraIssueTypeFieldPayload = Payload & {
|
|
29091
|
+
__typename?: 'JiraIssueTypeFieldPayload';
|
|
29092
|
+
errors?: Maybe<Array<MutationError>>;
|
|
29093
|
+
field?: Maybe<JiraIssueTypeField>;
|
|
29094
|
+
success: Scalars['Boolean']['output'];
|
|
29095
|
+
};
|
|
29034
29096
|
export declare type JiraIssueTypeHierarchyLevel = {
|
|
29035
29097
|
__typename?: 'JiraIssueTypeHierarchyLevel';
|
|
29036
29098
|
level?: Maybe<Scalars['Int']['output']>;
|
|
@@ -29976,6 +30038,7 @@ export declare type JiraMutation = {
|
|
|
29976
30038
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
29977
30039
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
29978
30040
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
30041
|
+
updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
|
|
29979
30042
|
updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
29980
30043
|
updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
|
|
29981
30044
|
updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
|
|
@@ -30209,6 +30272,9 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
|
30209
30272
|
cloudId: Scalars['ID']['input'];
|
|
30210
30273
|
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
30211
30274
|
};
|
|
30275
|
+
export declare type JiraMutationUpdateIssueTypeFieldArgs = {
|
|
30276
|
+
input: JiraUpdateIssueTypeFieldInput;
|
|
30277
|
+
};
|
|
30212
30278
|
export declare type JiraMutationUpdateJiraVersionArgs = {
|
|
30213
30279
|
input: JiraVersionUpdateMutationInput;
|
|
30214
30280
|
};
|
|
@@ -31726,6 +31792,7 @@ export declare type JiraQuery = {
|
|
|
31726
31792
|
issueByKey?: Maybe<JiraIssue>;
|
|
31727
31793
|
issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
|
|
31728
31794
|
issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
|
|
31795
|
+
issueFieldsByIds?: Maybe<JiraIssueFieldConnection>;
|
|
31729
31796
|
issueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationQuery>;
|
|
31730
31797
|
issueHierarchyConfigUpdateTask?: Maybe<JiraHierarchyConfigTask>;
|
|
31731
31798
|
issueHierarchyLimits?: Maybe<JiraIssueHierarchyLimits>;
|
|
@@ -31744,10 +31811,13 @@ export declare type JiraQuery = {
|
|
|
31744
31811
|
jiraProject?: Maybe<JiraProject>;
|
|
31745
31812
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
31746
31813
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
31814
|
+
jiraProjectsByJql?: Maybe<JiraProjectConnection>;
|
|
31815
|
+
jiraSoftwareNavigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
31747
31816
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
31748
31817
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
31749
31818
|
jsmWorkflowTemplates?: Maybe<JiraServiceManagementWorkflowTemplatesMetadataConnection>;
|
|
31750
31819
|
jsonUserProperty?: Maybe<JiraEntityPropertyJson>;
|
|
31820
|
+
jwmAddableViewTypes?: Maybe<JiraWorkManagementSavedViewTypeConnection>;
|
|
31751
31821
|
jwmCustomBackgrounds?: Maybe<JiraWorkManagementCustomBackgroundConnection>;
|
|
31752
31822
|
jwmFilters?: Maybe<JiraWorkManagementFilterConnectionResult>;
|
|
31753
31823
|
jwmForm?: Maybe<JiraWorkManagementFormConfiguration>;
|
|
@@ -32008,6 +32078,13 @@ export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
|
32008
32078
|
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
32009
32079
|
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
32010
32080
|
};
|
|
32081
|
+
export declare type JiraQueryIssueFieldsByIdsArgs = {
|
|
32082
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32083
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
32084
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32085
|
+
ids: Array<Scalars['ID']['input']>;
|
|
32086
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
32087
|
+
};
|
|
32011
32088
|
export declare type JiraQueryIssueHierarchyConfigArgs = {
|
|
32012
32089
|
cloudId: Scalars['ID']['input'];
|
|
32013
32090
|
};
|
|
@@ -32064,6 +32141,7 @@ export declare type JiraQueryIssueSearchViewArgs = {
|
|
|
32064
32141
|
};
|
|
32065
32142
|
export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
32066
32143
|
cloudId: Scalars['ID']['input'];
|
|
32144
|
+
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
32067
32145
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
32068
32146
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
32069
32147
|
};
|
|
@@ -32085,6 +32163,16 @@ export declare type JiraQueryJiraProjectByKeyArgs = {
|
|
|
32085
32163
|
export declare type JiraQueryJiraProjectsArgs = {
|
|
32086
32164
|
ids: Array<Scalars['ID']['input']>;
|
|
32087
32165
|
};
|
|
32166
|
+
export declare type JiraQueryJiraProjectsByJqlArgs = {
|
|
32167
|
+
cloudId: Scalars['ID']['input'];
|
|
32168
|
+
query: Scalars['String']['input'];
|
|
32169
|
+
};
|
|
32170
|
+
export declare type JiraQueryJiraSoftwareNavigationItemsArgs = {
|
|
32171
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32172
|
+
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
32173
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32174
|
+
projectIdOrKey?: InputMaybe<Scalars['String']['input']>;
|
|
32175
|
+
};
|
|
32088
32176
|
export declare type JiraQueryJqlBuilderArgs = {
|
|
32089
32177
|
cloudId: Scalars['ID']['input'];
|
|
32090
32178
|
};
|
|
@@ -32104,6 +32192,11 @@ export declare type JiraQueryJsonUserPropertyArgs = {
|
|
|
32104
32192
|
cloudId: Scalars['ID']['input'];
|
|
32105
32193
|
propertyKey: Scalars['String']['input'];
|
|
32106
32194
|
};
|
|
32195
|
+
export declare type JiraQueryJwmAddableViewTypesArgs = {
|
|
32196
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32197
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32198
|
+
projectId: Scalars['ID']['input'];
|
|
32199
|
+
};
|
|
32107
32200
|
export declare type JiraQueryJwmCustomBackgroundsArgs = {
|
|
32108
32201
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32109
32202
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -34002,6 +34095,13 @@ export declare type JiraSingleVersionPickerFieldInput = {
|
|
|
34002
34095
|
fieldId: Scalars['ID']['input'];
|
|
34003
34096
|
version: JiraVersionInput;
|
|
34004
34097
|
};
|
|
34098
|
+
export declare type JiraSoftwareBuiltInNavigationItem = JiraNavigationItem & Node & {
|
|
34099
|
+
__typename?: 'JiraSoftwareBuiltInNavigationItem';
|
|
34100
|
+
id: Scalars['ID']['output'];
|
|
34101
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
34102
|
+
itemType?: Maybe<JiraSoftwareSimpleNavigationItemEnum>;
|
|
34103
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
34104
|
+
};
|
|
34005
34105
|
export declare type JiraSoftwareIssueSearchCustomInput = {
|
|
34006
34106
|
additionalJql?: InputMaybe<Scalars['String']['input']>;
|
|
34007
34107
|
context?: InputMaybe<JiraSoftwareIssueSearchCustomInputContext>;
|
|
@@ -34020,6 +34120,23 @@ export declare type JiraSoftwareProjectNavigationMetadata = {
|
|
|
34020
34120
|
isSimpleBoard: Scalars['Boolean']['output'];
|
|
34021
34121
|
totalBoardsInProject: Scalars['Long']['output'];
|
|
34022
34122
|
};
|
|
34123
|
+
export declare enum JiraSoftwareSimpleNavigationItemEnum {
|
|
34124
|
+
JswBacklog = "JSW_BACKLOG",
|
|
34125
|
+
JswBoard = "JSW_BOARD",
|
|
34126
|
+
JswCode = "JSW_CODE",
|
|
34127
|
+
JswComponents = "JSW_COMPONENTS",
|
|
34128
|
+
JswDeployments = "JSW_DEPLOYMENTS",
|
|
34129
|
+
JswGoals = "JSW_GOALS",
|
|
34130
|
+
JswIncidents = "JSW_INCIDENTS",
|
|
34131
|
+
JswIssues = "JSW_ISSUES",
|
|
34132
|
+
JswOnCall = "JSW_ON_CALL",
|
|
34133
|
+
JswPages = "JSW_PAGES",
|
|
34134
|
+
JswReleases = "JSW_RELEASES",
|
|
34135
|
+
JswReports = "JSW_REPORTS",
|
|
34136
|
+
JswRequests = "JSW_REQUESTS",
|
|
34137
|
+
JswSecurity = "JSW_SECURITY",
|
|
34138
|
+
JswTimeline = "JSW_TIMELINE"
|
|
34139
|
+
}
|
|
34023
34140
|
export declare type JiraSprint = Node & {
|
|
34024
34141
|
__typename?: 'JiraSprint';
|
|
34025
34142
|
boardName?: Maybe<Scalars['String']['output']>;
|
|
@@ -34566,6 +34683,10 @@ export declare type JiraUpdateIssueTransitionInput = {
|
|
|
34566
34683
|
issueId: Scalars['ID']['input'];
|
|
34567
34684
|
transitionId: Scalars['Int']['input'];
|
|
34568
34685
|
};
|
|
34686
|
+
export declare type JiraUpdateIssueTypeFieldInput = {
|
|
34687
|
+
id: Scalars['ID']['input'];
|
|
34688
|
+
operation: JiraIssueTypeFieldOperationInput;
|
|
34689
|
+
};
|
|
34569
34690
|
export declare type JiraUpdateLabelsFieldInput = {
|
|
34570
34691
|
id: Scalars['ID']['input'];
|
|
34571
34692
|
operations: Array<JiraLabelsFieldOperationInput>;
|
|
@@ -34933,6 +35054,7 @@ export declare type JiraVersion = Node & {
|
|
|
34933
35054
|
hasReleaseNote?: Maybe<Scalars['Boolean']['output']>;
|
|
34934
35055
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
34935
35056
|
id: Scalars['ID']['output'];
|
|
35057
|
+
issueAssociatedDesigns?: Maybe<GraphStoreSimplifiedVersionAssociatedDesignConnection>;
|
|
34936
35058
|
issues?: Maybe<JiraIssueConnection>;
|
|
34937
35059
|
name?: Maybe<Scalars['String']['output']>;
|
|
34938
35060
|
nativeReleaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
|
|
@@ -34977,6 +35099,11 @@ export declare type JiraVersionContributorsArgs = {
|
|
|
34977
35099
|
export declare type JiraVersionEpicsForFilterArgs = {
|
|
34978
35100
|
searchStr?: InputMaybe<Scalars['String']['input']>;
|
|
34979
35101
|
};
|
|
35102
|
+
export declare type JiraVersionIssueAssociatedDesignsArgs = {
|
|
35103
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35104
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35105
|
+
sort?: InputMaybe<GraphStoreVersionAssociatedDesignSortInput>;
|
|
35106
|
+
};
|
|
34980
35107
|
export declare type JiraVersionIssuesArgs = {
|
|
34981
35108
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34982
35109
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -35821,7 +35948,24 @@ export declare type JiraWorkManagementSavedView = JiraNavigationItem & Node & {
|
|
|
35821
35948
|
id: Scalars['ID']['output'];
|
|
35822
35949
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
35823
35950
|
label?: Maybe<Scalars['String']['output']>;
|
|
35824
|
-
type
|
|
35951
|
+
type?: Maybe<JiraWorkManagementSavedViewType>;
|
|
35952
|
+
};
|
|
35953
|
+
export declare type JiraWorkManagementSavedViewType = Node & {
|
|
35954
|
+
__typename?: 'JiraWorkManagementSavedViewType';
|
|
35955
|
+
id: Scalars['ID']['output'];
|
|
35956
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
35957
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
35958
|
+
};
|
|
35959
|
+
export declare type JiraWorkManagementSavedViewTypeConnection = HasPageInfo & {
|
|
35960
|
+
__typename?: 'JiraWorkManagementSavedViewTypeConnection';
|
|
35961
|
+
edges?: Maybe<Array<Maybe<JiraWorkManagementSavedViewTypeEdge>>>;
|
|
35962
|
+
errors?: Maybe<Array<QueryError>>;
|
|
35963
|
+
pageInfo: PageInfo;
|
|
35964
|
+
};
|
|
35965
|
+
export declare type JiraWorkManagementSavedViewTypeEdge = {
|
|
35966
|
+
__typename?: 'JiraWorkManagementSavedViewTypeEdge';
|
|
35967
|
+
cursor: Scalars['String']['output'];
|
|
35968
|
+
node?: Maybe<JiraWorkManagementSavedViewType>;
|
|
35825
35969
|
};
|
|
35826
35970
|
export declare type JiraWorkManagementUpdateActiveBackgroundPayload = Payload & {
|
|
35827
35971
|
__typename?: 'JiraWorkManagementUpdateActiveBackgroundPayload';
|
|
@@ -38144,7 +38288,8 @@ export declare enum PolarisFieldType {
|
|
|
38144
38288
|
PolarisIdeaReactionsField = "PolarisIdeaReactionsField",
|
|
38145
38289
|
PolarisIdeaStringField = "PolarisIdeaStringField",
|
|
38146
38290
|
PolarisIdeaUserField = "PolarisIdeaUserField",
|
|
38147
|
-
PolarisIdeaUsersField = "PolarisIdeaUsersField"
|
|
38291
|
+
PolarisIdeaUsersField = "PolarisIdeaUsersField",
|
|
38292
|
+
PolarisJiraField = "PolarisJiraField"
|
|
38148
38293
|
}
|
|
38149
38294
|
export declare type PolarisFilterInput = {
|
|
38150
38295
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -38742,6 +38887,26 @@ export declare type PolarisIssueLinkType = {
|
|
|
38742
38887
|
delivery: Scalars['Int']['output'];
|
|
38743
38888
|
merge: Scalars['Int']['output'];
|
|
38744
38889
|
};
|
|
38890
|
+
export declare type PolarisJiraField = PolarisIdeaField & {
|
|
38891
|
+
__typename?: 'PolarisJiraField';
|
|
38892
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
38893
|
+
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
38894
|
+
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
38895
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
38896
|
+
editable: Scalars['Boolean']['output'];
|
|
38897
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
38898
|
+
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
38899
|
+
fieldName?: Maybe<Scalars['String']['output']>;
|
|
38900
|
+
formula?: Maybe<Scalars['JSON']['output']>;
|
|
38901
|
+
groupable: Scalars['Boolean']['output'];
|
|
38902
|
+
id: Scalars['ID']['output'];
|
|
38903
|
+
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
38904
|
+
label: Scalars['String']['output'];
|
|
38905
|
+
linearizable: Scalars['Boolean']['output'];
|
|
38906
|
+
presentation?: Maybe<PolarisPresentation>;
|
|
38907
|
+
sortable: Scalars['Boolean']['output'];
|
|
38908
|
+
specialType?: Maybe<Scalars['String']['output']>;
|
|
38909
|
+
};
|
|
38745
38910
|
export declare type PolarisMatrixAxis = {
|
|
38746
38911
|
__typename?: 'PolarisMatrixAxis';
|
|
38747
38912
|
dimension: Scalars['String']['output'];
|
|
@@ -42046,6 +42211,27 @@ export declare type ShepherdDetectionBooleanSetting = {
|
|
|
42046
42211
|
booleanDefault: Scalars['Boolean']['output'];
|
|
42047
42212
|
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
42048
42213
|
};
|
|
42214
|
+
export declare type ShepherdDetectionContentExclusion = {
|
|
42215
|
+
__typename?: 'ShepherdDetectionContentExclusion';
|
|
42216
|
+
key: Scalars['String']['output'];
|
|
42217
|
+
rules: Array<ShepherdDetectionContentExclusionRule>;
|
|
42218
|
+
};
|
|
42219
|
+
export declare type ShepherdDetectionContentExclusionRule = ShepherdCustomScanningStringMatchRule;
|
|
42220
|
+
export declare type ShepherdDetectionExclusion = ShepherdDetectionContentExclusion | ShepherdDetectionResourceExclusion;
|
|
42221
|
+
export declare type ShepherdDetectionExclusionsSetting = {
|
|
42222
|
+
__typename?: 'ShepherdDetectionExclusionsSetting';
|
|
42223
|
+
allowedExclusions: Array<Scalars['String']['output']>;
|
|
42224
|
+
exclusions: Array<ShepherdDetectionExclusion>;
|
|
42225
|
+
};
|
|
42226
|
+
export declare type ShepherdDetectionRemoveSettingValuePayload = Payload & {
|
|
42227
|
+
__typename?: 'ShepherdDetectionRemoveSettingValuePayload';
|
|
42228
|
+
errors?: Maybe<Array<MutationError>>;
|
|
42229
|
+
success: Scalars['Boolean']['output'];
|
|
42230
|
+
};
|
|
42231
|
+
export declare type ShepherdDetectionResourceExclusion = {
|
|
42232
|
+
__typename?: 'ShepherdDetectionResourceExclusion';
|
|
42233
|
+
ari: Scalars['ID']['output'];
|
|
42234
|
+
};
|
|
42049
42235
|
export declare enum ShepherdDetectionScanningFrequency {
|
|
42050
42236
|
RealTime = "REAL_TIME",
|
|
42051
42237
|
Scheduled = "SCHEDULED"
|
|
@@ -42061,7 +42247,36 @@ export declare type ShepherdDetectionSetting = {
|
|
|
42061
42247
|
title: Scalars['String']['output'];
|
|
42062
42248
|
value: ShepherdDetectionSettingValueType;
|
|
42063
42249
|
};
|
|
42064
|
-
export declare type
|
|
42250
|
+
export declare type ShepherdDetectionSettingMutations = {
|
|
42251
|
+
__typename?: 'ShepherdDetectionSettingMutations';
|
|
42252
|
+
removeValue?: Maybe<ShepherdDetectionRemoveSettingValuePayload>;
|
|
42253
|
+
setValue?: Maybe<ShepherdDetectionUpdateSettingValuePayload>;
|
|
42254
|
+
};
|
|
42255
|
+
export declare type ShepherdDetectionSettingMutationsRemoveValueArgs = {
|
|
42256
|
+
id: Scalars['ID']['input'];
|
|
42257
|
+
keys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
42258
|
+
};
|
|
42259
|
+
export declare type ShepherdDetectionSettingMutationsSetValueArgs = {
|
|
42260
|
+
id: Scalars['ID']['input'];
|
|
42261
|
+
input: ShepherdDetectionSettingSetValueInput;
|
|
42262
|
+
};
|
|
42263
|
+
export declare type ShepherdDetectionSettingSetValueEntryInput = {
|
|
42264
|
+
key: Scalars['String']['input'];
|
|
42265
|
+
scanningRules?: InputMaybe<Array<ShepherdCustomScanningRuleInput>>;
|
|
42266
|
+
};
|
|
42267
|
+
export declare type ShepherdDetectionSettingSetValueInput = {
|
|
42268
|
+
booleanValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42269
|
+
entries?: InputMaybe<ShepherdDetectionSettingSetValueEntryInput>;
|
|
42270
|
+
stringValues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
42271
|
+
thresholdValue?: InputMaybe<ShepherdRateThresholdValue>;
|
|
42272
|
+
};
|
|
42273
|
+
export declare type ShepherdDetectionSettingValueType = ShepherdDetectionBooleanSetting | ShepherdDetectionExclusionsSetting | ShepherdRateThresholdSetting;
|
|
42274
|
+
export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
42275
|
+
__typename?: 'ShepherdDetectionUpdateSettingValuePayload';
|
|
42276
|
+
errors?: Maybe<Array<MutationError>>;
|
|
42277
|
+
node?: Maybe<ShepherdDetectionSetting>;
|
|
42278
|
+
success: Scalars['Boolean']['output'];
|
|
42279
|
+
};
|
|
42065
42280
|
export declare type ShepherdGenericMutationErrorExtension = MutationErrorExtension & {
|
|
42066
42281
|
__typename?: 'ShepherdGenericMutationErrorExtension';
|
|
42067
42282
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -42272,6 +42487,7 @@ export declare type ShepherdSubject = {
|
|
|
42272
42487
|
ari?: Maybe<Scalars['String']['output']>;
|
|
42273
42488
|
ati?: Maybe<Scalars['String']['output']>;
|
|
42274
42489
|
containerAri: Scalars['String']['output'];
|
|
42490
|
+
resourceName?: Maybe<Scalars['String']['output']>;
|
|
42275
42491
|
};
|
|
42276
42492
|
export declare type ShepherdSubjectInput = {
|
|
42277
42493
|
ari?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -42464,6 +42680,7 @@ export declare type ShepherdWorkspaceMutations = {
|
|
|
42464
42680
|
__typename?: 'ShepherdWorkspaceMutations';
|
|
42465
42681
|
createCustomDetection?: Maybe<ShepherdCustomDetectionMutationPayload>;
|
|
42466
42682
|
deleteCustomDetection?: Maybe<ShepherdCustomDetectionMutationPayload>;
|
|
42683
|
+
detectionSetting?: Maybe<ShepherdDetectionSettingMutations>;
|
|
42467
42684
|
onboard?: Maybe<ShepherdWorkspaceMutationPayload>;
|
|
42468
42685
|
update?: Maybe<ShepherdWorkspaceMutationPayload>;
|
|
42469
42686
|
updateCustomDetection?: Maybe<ShepherdCustomDetectionMutationPayload>;
|
|
@@ -43878,6 +44095,17 @@ export declare type TownsquareDeleteRelationshipsPayload = {
|
|
|
43878
44095
|
relationships?: Maybe<Array<TownsquareRelationship>>;
|
|
43879
44096
|
success: Scalars['Boolean']['output'];
|
|
43880
44097
|
};
|
|
44098
|
+
export declare type TownsquareEditGoalInput = {
|
|
44099
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
44100
|
+
id: Scalars['String']['input'];
|
|
44101
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
44102
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
44103
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
44104
|
+
};
|
|
44105
|
+
export declare type TownsquareEditGoalPayload = {
|
|
44106
|
+
__typename?: 'TownsquareEditGoalPayload';
|
|
44107
|
+
goal?: Maybe<TownsquareGoal>;
|
|
44108
|
+
};
|
|
43881
44109
|
export declare type TownsquareGoal = Node & {
|
|
43882
44110
|
__typename?: 'TownsquareGoal';
|
|
43883
44111
|
archived: Scalars['Boolean']['output'];
|
|
@@ -43952,6 +44180,7 @@ export declare type TownsquareMutationApi = {
|
|
|
43952
44180
|
createGoal?: Maybe<TownsquareCreateGoalPayload>;
|
|
43953
44181
|
createRelationships?: Maybe<TownsquareCreateRelationshipsPayload>;
|
|
43954
44182
|
deleteRelationships?: Maybe<TownsquareDeleteRelationshipsPayload>;
|
|
44183
|
+
editGoal?: Maybe<TownsquareEditGoalPayload>;
|
|
43955
44184
|
};
|
|
43956
44185
|
export declare type TownsquareMutationApiCreateGoalArgs = {
|
|
43957
44186
|
input: TownsquareCreateGoalInput;
|
|
@@ -43962,6 +44191,9 @@ export declare type TownsquareMutationApiCreateRelationshipsArgs = {
|
|
|
43962
44191
|
export declare type TownsquareMutationApiDeleteRelationshipsArgs = {
|
|
43963
44192
|
input: TownsquareDeleteRelationshipsInput;
|
|
43964
44193
|
};
|
|
44194
|
+
export declare type TownsquareMutationApiEditGoalArgs = {
|
|
44195
|
+
input: TownsquareEditGoalInput;
|
|
44196
|
+
};
|
|
43965
44197
|
export declare type TownsquareProject = Node & {
|
|
43966
44198
|
__typename?: 'TownsquareProject';
|
|
43967
44199
|
archived: Scalars['Boolean']['output'];
|
|
@@ -44119,6 +44351,10 @@ export declare type TownsquareTargetDate = {
|
|
|
44119
44351
|
dateRange?: Maybe<TownsquareTargetDateRange>;
|
|
44120
44352
|
label?: Maybe<Scalars['String']['output']>;
|
|
44121
44353
|
};
|
|
44354
|
+
export declare type TownsquareTargetDateInput = {
|
|
44355
|
+
confidence?: InputMaybe<TownsquareTargetDateType>;
|
|
44356
|
+
date?: InputMaybe<Scalars['Date']['input']>;
|
|
44357
|
+
};
|
|
44122
44358
|
export declare type TownsquareTargetDateRange = {
|
|
44123
44359
|
__typename?: 'TownsquareTargetDateRange';
|
|
44124
44360
|
end?: Maybe<Scalars['DateTime']['output']>;
|