@forge/cli-shared 2.3.2-next.1 → 2.4.0-next.4
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
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.4.0-next.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [d094c69]
|
|
8
|
+
- @forge/manifest@3.5.0-next.3
|
|
9
|
+
|
|
10
|
+
## 2.4.0-next.3
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- f33aada8: Fix vulnerability dependencies
|
|
15
|
+
- 726ef79d: Fix dependency vulnerabilities
|
|
16
|
+
|
|
17
|
+
## 2.3.2-next.2
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [02839be]
|
|
22
|
+
- @forge/manifest@3.5.0-next.2
|
|
23
|
+
|
|
3
24
|
## 2.3.2-next.1
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -497,7 +497,7 @@ export declare type AppInstallation = {
|
|
|
497
497
|
__typename?: 'AppInstallation';
|
|
498
498
|
id: Scalars['ID'];
|
|
499
499
|
installationContext: Scalars['ID'];
|
|
500
|
-
createdAt: Scalars['
|
|
500
|
+
createdAt: Scalars['DateTime'];
|
|
501
501
|
createdBy?: Maybe<User>;
|
|
502
502
|
version?: Maybe<AppVersion>;
|
|
503
503
|
app?: Maybe<App>;
|
|
@@ -1041,14 +1041,14 @@ export declare type AvatarInput = {
|
|
|
1041
1041
|
};
|
|
1042
1042
|
export declare type Avocado = {
|
|
1043
1043
|
__typename?: 'Avocado';
|
|
1044
|
-
|
|
1045
|
-
|
|
1044
|
+
questionsByAri?: Maybe<Array<Maybe<AvocadoQuestion>>>;
|
|
1045
|
+
answersByAri?: Maybe<Array<Maybe<AvocadoAnswer>>>;
|
|
1046
1046
|
};
|
|
1047
|
-
export declare type
|
|
1048
|
-
|
|
1047
|
+
export declare type AvocadoQuestionsByAriArgs = {
|
|
1048
|
+
aris: Array<Maybe<Scalars['ID']>>;
|
|
1049
1049
|
};
|
|
1050
|
-
export declare type
|
|
1051
|
-
|
|
1050
|
+
export declare type AvocadoAnswersByAriArgs = {
|
|
1051
|
+
aris: Array<Maybe<Scalars['ID']>>;
|
|
1052
1052
|
};
|
|
1053
1053
|
export declare type AvocadoAnswer = Node & {
|
|
1054
1054
|
__typename?: 'AvocadoAnswer';
|
|
@@ -1057,7 +1057,6 @@ export declare type AvocadoAnswer = Node & {
|
|
|
1057
1057
|
siteName: Scalars['String'];
|
|
1058
1058
|
url: Scalars['String'];
|
|
1059
1059
|
iconUrl: Scalars['String'];
|
|
1060
|
-
question: AvocadoQuestion;
|
|
1061
1060
|
};
|
|
1062
1061
|
export declare type AvocadoQuestion = Node & {
|
|
1063
1062
|
__typename?: 'AvocadoQuestion';
|
|
@@ -1066,6 +1065,7 @@ export declare type AvocadoQuestion = Node & {
|
|
|
1066
1065
|
siteName: Scalars['String'];
|
|
1067
1066
|
url: Scalars['String'];
|
|
1068
1067
|
iconUrl: Scalars['String'];
|
|
1068
|
+
isAnswered: Scalars['Boolean'];
|
|
1069
1069
|
};
|
|
1070
1070
|
export declare type Backlog = {
|
|
1071
1071
|
__typename?: 'Backlog';
|
|
@@ -1459,7 +1459,7 @@ export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
|
1459
1459
|
cloudId: Scalars['ID'];
|
|
1460
1460
|
userId: Scalars['ID'];
|
|
1461
1461
|
oauthClientId: Scalars['ID'];
|
|
1462
|
-
scopes
|
|
1462
|
+
scopes?: Maybe<Array<Scalars['String']>>;
|
|
1463
1463
|
};
|
|
1464
1464
|
export declare type ChildCardsMetadata = {
|
|
1465
1465
|
__typename?: 'ChildCardsMetadata';
|
|
@@ -5093,6 +5093,7 @@ export declare type DevOpsTool = Node & {
|
|
|
5093
5093
|
group: DevOpsToolGroup;
|
|
5094
5094
|
supportsContainers: Scalars['Boolean'];
|
|
5095
5095
|
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5096
|
+
integration?: Maybe<DevOpsToolIntegration>;
|
|
5096
5097
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5097
5098
|
};
|
|
5098
5099
|
export declare type DevOpsToolNamespacesArgs = {
|
|
@@ -5208,6 +5209,21 @@ export declare type DevOpsToolGroup = {
|
|
|
5208
5209
|
groupId: Scalars['String'];
|
|
5209
5210
|
groupName: Scalars['String'];
|
|
5210
5211
|
};
|
|
5212
|
+
export declare type DevOpsToolIntegration = DevOpsToolIntegrationApp | DevOpsToolIntegrationProduct;
|
|
5213
|
+
export declare type DevOpsToolIntegrationApp = {
|
|
5214
|
+
__typename?: 'DevOpsToolIntegrationApp';
|
|
5215
|
+
appKey: Scalars['String'];
|
|
5216
|
+
appName: Scalars['String'];
|
|
5217
|
+
installed: Scalars['Boolean'];
|
|
5218
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
5219
|
+
};
|
|
5220
|
+
export declare type DevOpsToolIntegrationProduct = {
|
|
5221
|
+
__typename?: 'DevOpsToolIntegrationProduct';
|
|
5222
|
+
productKey: Scalars['String'];
|
|
5223
|
+
productName: Scalars['String'];
|
|
5224
|
+
available: Scalars['Boolean'];
|
|
5225
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
5226
|
+
};
|
|
5211
5227
|
export declare type DevOpsToolNamespace = Node & {
|
|
5212
5228
|
__typename?: 'DevOpsToolNamespace';
|
|
5213
5229
|
id: Scalars['ID'];
|
|
@@ -5944,6 +5960,7 @@ export declare enum IssueDevOpsCommitChangeType {
|
|
|
5944
5960
|
Copied = "COPIED",
|
|
5945
5961
|
Moved = "MOVED",
|
|
5946
5962
|
Modify = "MODIFY",
|
|
5963
|
+
Modified = "MODIFIED",
|
|
5947
5964
|
Unknown = "UNKNOWN"
|
|
5948
5965
|
}
|
|
5949
5966
|
export declare type IssueDevOpsCommitDetails = {
|
|
@@ -6122,7 +6139,8 @@ export declare type IssueDevOpsPullRequestReviewer = {
|
|
|
6122
6139
|
export declare enum IssueDevOpsPullRequestStatus {
|
|
6123
6140
|
Open = "OPEN",
|
|
6124
6141
|
Merged = "MERGED",
|
|
6125
|
-
Declined = "DECLINED"
|
|
6142
|
+
Declined = "DECLINED",
|
|
6143
|
+
Unknown = "UNKNOWN"
|
|
6126
6144
|
}
|
|
6127
6145
|
export declare type IssueDevOpsRemoteLink = {
|
|
6128
6146
|
__typename?: 'IssueDevOpsRemoteLink';
|
|
@@ -7123,6 +7141,7 @@ export declare type JiraForgeDatetimeField = Node & JiraIssueField & JiraIssueFi
|
|
|
7123
7141
|
dateTime?: Maybe<Scalars['DateTime']>;
|
|
7124
7142
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7125
7143
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7144
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7126
7145
|
};
|
|
7127
7146
|
export declare type JiraForgeGroupField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7128
7147
|
__typename?: 'JiraForgeGroupField';
|
|
@@ -7137,6 +7156,7 @@ export declare type JiraForgeGroupField = Node & JiraIssueField & JiraIssueField
|
|
|
7137
7156
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7138
7157
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7139
7158
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7159
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7140
7160
|
};
|
|
7141
7161
|
export declare type JiraForgeGroupFieldGroupsArgs = {
|
|
7142
7162
|
searchBy?: Maybe<Scalars['String']>;
|
|
@@ -7159,6 +7179,7 @@ export declare type JiraForgeGroupsField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7159
7179
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7160
7180
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7161
7181
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7182
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7162
7183
|
};
|
|
7163
7184
|
export declare type JiraForgeGroupsFieldSelectedGroupsConnectionArgs = {
|
|
7164
7185
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7184,6 +7205,7 @@ export declare type JiraForgeNumberField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7184
7205
|
number?: Maybe<Scalars['Float']>;
|
|
7185
7206
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7186
7207
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7208
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7187
7209
|
};
|
|
7188
7210
|
export declare type JiraForgeObjectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7189
7211
|
__typename?: 'JiraForgeObjectField';
|
|
@@ -7196,6 +7218,7 @@ export declare type JiraForgeObjectField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7196
7218
|
object?: Maybe<Scalars['String']>;
|
|
7197
7219
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7198
7220
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7221
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7199
7222
|
};
|
|
7200
7223
|
export declare type JiraForgeStringField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7201
7224
|
__typename?: 'JiraForgeStringField';
|
|
@@ -7208,6 +7231,7 @@ export declare type JiraForgeStringField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7208
7231
|
text?: Maybe<Scalars['String']>;
|
|
7209
7232
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7210
7233
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7234
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7211
7235
|
};
|
|
7212
7236
|
export declare type JiraForgeStringsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7213
7237
|
__typename?: 'JiraForgeStringsField';
|
|
@@ -7223,6 +7247,7 @@ export declare type JiraForgeStringsField = Node & JiraIssueField & JiraIssueFie
|
|
|
7223
7247
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7224
7248
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7225
7249
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7250
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7226
7251
|
};
|
|
7227
7252
|
export declare type JiraForgeStringsFieldSelectedLabelsConnectionArgs = {
|
|
7228
7253
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7251,6 +7276,7 @@ export declare type JiraForgeUserField = Node & JiraIssueField & JiraIssueFieldC
|
|
|
7251
7276
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7252
7277
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7253
7278
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7279
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7254
7280
|
};
|
|
7255
7281
|
export declare type JiraForgeUserFieldUsersArgs = {
|
|
7256
7282
|
searchBy?: Maybe<Scalars['String']>;
|
|
@@ -7274,6 +7300,7 @@ export declare type JiraForgeUsersField = Node & JiraIssueField & JiraIssueField
|
|
|
7274
7300
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7275
7301
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7276
7302
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7303
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7277
7304
|
};
|
|
7278
7305
|
export declare type JiraForgeUsersFieldSelectedUsersConnectionArgs = {
|
|
7279
7306
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7977,6 +8004,7 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
7977
8004
|
export declare type JiraIssueType = Node & {
|
|
7978
8005
|
__typename?: 'JiraIssueType';
|
|
7979
8006
|
id: Scalars['ID'];
|
|
8007
|
+
issueTypeId?: Maybe<Scalars['String']>;
|
|
7980
8008
|
name: Scalars['String'];
|
|
7981
8009
|
description?: Maybe<Scalars['String']>;
|
|
7982
8010
|
avatar?: Maybe<JiraAvatar>;
|
|
@@ -9182,6 +9210,34 @@ export declare type JiraProjectAndConfluenceSpaceRelationshipEdge = {
|
|
|
9182
9210
|
cursor: Scalars['String'];
|
|
9183
9211
|
node?: Maybe<JiraProjectAndConfluenceSpaceRelationship>;
|
|
9184
9212
|
};
|
|
9213
|
+
export declare type JiraProjectAndDevOpsToolRelationship = Node & {
|
|
9214
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationship';
|
|
9215
|
+
id: Scalars['ID'];
|
|
9216
|
+
jiraProject?: Maybe<JiraProject>;
|
|
9217
|
+
devOpsTool?: Maybe<DevOpsTool>;
|
|
9218
|
+
description?: Maybe<Scalars['String']>;
|
|
9219
|
+
revision: Scalars['ID'];
|
|
9220
|
+
createdBy: Scalars['String'];
|
|
9221
|
+
createdAt: Scalars['DateTime'];
|
|
9222
|
+
lastUpdatedBy?: Maybe<Scalars['String']>;
|
|
9223
|
+
lastUpdatedAt?: Maybe<Scalars['DateTime']>;
|
|
9224
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
9225
|
+
};
|
|
9226
|
+
export declare type JiraProjectAndDevOpsToolRelationshipPropertiesArgs = {
|
|
9227
|
+
keys: Array<Scalars['String']>;
|
|
9228
|
+
};
|
|
9229
|
+
export declare type JiraProjectAndDevOpsToolRelationshipCreateInput = {
|
|
9230
|
+
jiraProjectId: Scalars['ID'];
|
|
9231
|
+
devOpsToolId: Scalars['ID'];
|
|
9232
|
+
description?: Maybe<Scalars['String']>;
|
|
9233
|
+
properties?: Maybe<Array<DevOpsContainerRelationshipEntityPropertyInput>>;
|
|
9234
|
+
};
|
|
9235
|
+
export declare type JiraProjectAndDevOpsToolRelationshipCreatePayload = Payload & {
|
|
9236
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationshipCreatePayload';
|
|
9237
|
+
success: Scalars['Boolean'];
|
|
9238
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9239
|
+
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
9240
|
+
};
|
|
9185
9241
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
9186
9242
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
9187
9243
|
id: Scalars['ID'];
|
|
@@ -11129,6 +11185,7 @@ export declare type MarketplacePartner = {
|
|
|
11129
11185
|
support?: Maybe<MarketplacePartnerSupport>;
|
|
11130
11186
|
programs?: Maybe<MarketplacePartnerPrograms>;
|
|
11131
11187
|
partnerType?: Maybe<MarketplacePartnerType>;
|
|
11188
|
+
partnerTier?: Maybe<MarketplacePartnerTier>;
|
|
11132
11189
|
};
|
|
11133
11190
|
export declare type MarketplacePartnerAddress = {
|
|
11134
11191
|
__typename?: 'MarketplacePartnerAddress';
|
|
@@ -11181,6 +11238,16 @@ export declare enum MarketplacePartnerSupportHolidayFrequency {
|
|
|
11181
11238
|
OneTime = "ONE_TIME",
|
|
11182
11239
|
Annual = "ANNUAL"
|
|
11183
11240
|
}
|
|
11241
|
+
export declare type MarketplacePartnerTier = {
|
|
11242
|
+
__typename?: 'MarketplacePartnerTier';
|
|
11243
|
+
type: MarketplacePartnerTierType;
|
|
11244
|
+
updatedDate: Scalars['String'];
|
|
11245
|
+
};
|
|
11246
|
+
export declare enum MarketplacePartnerTierType {
|
|
11247
|
+
Silver = "SILVER",
|
|
11248
|
+
Gold = "GOLD",
|
|
11249
|
+
Platinum = "PLATINUM"
|
|
11250
|
+
}
|
|
11184
11251
|
export declare enum MarketplacePartnerType {
|
|
11185
11252
|
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
11186
11253
|
}
|
|
@@ -11314,6 +11381,7 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
11314
11381
|
export declare type Mutation = {
|
|
11315
11382
|
__typename?: 'Mutation';
|
|
11316
11383
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
11384
|
+
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
11317
11385
|
shepherd?: Maybe<ShepherdMutation>;
|
|
11318
11386
|
createReleaseNote: ContentPlatformReleaseNote;
|
|
11319
11387
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
@@ -11452,6 +11520,9 @@ export declare type Mutation = {
|
|
|
11452
11520
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
11453
11521
|
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
11454
11522
|
};
|
|
11523
|
+
export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11524
|
+
input: JiraProjectAndDevOpsToolRelationshipCreateInput;
|
|
11525
|
+
};
|
|
11455
11526
|
export declare type MutationCreateReleaseNoteArgs = {
|
|
11456
11527
|
changeStatus?: Maybe<Scalars['String']>;
|
|
11457
11528
|
title?: Maybe<Scalars['String']>;
|
|
@@ -12697,6 +12768,7 @@ export declare type PolarisMatrixAxis = {
|
|
|
12697
12768
|
__typename?: 'PolarisMatrixAxis';
|
|
12698
12769
|
dimension: Scalars['String'];
|
|
12699
12770
|
field: PolarisIdeaField;
|
|
12771
|
+
fieldOptions?: Maybe<Array<PolarisGroupValue>>;
|
|
12700
12772
|
};
|
|
12701
12773
|
export declare type PolarisMatrixConfig = {
|
|
12702
12774
|
__typename?: 'PolarisMatrixConfig';
|
|
@@ -13107,6 +13179,7 @@ export declare type Query = {
|
|
|
13107
13179
|
node?: Maybe<Node>;
|
|
13108
13180
|
activities?: Maybe<Activities>;
|
|
13109
13181
|
activity?: Maybe<Activity>;
|
|
13182
|
+
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
13110
13183
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
13111
13184
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
13112
13185
|
shepherd?: Maybe<ShepherdQuery>;
|
|
@@ -13205,6 +13278,9 @@ export declare type Query = {
|
|
|
13205
13278
|
export declare type QueryNodeArgs = {
|
|
13206
13279
|
id: Scalars['ID'];
|
|
13207
13280
|
};
|
|
13281
|
+
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
13282
|
+
id: Scalars['ID'];
|
|
13283
|
+
};
|
|
13208
13284
|
export declare type QueryReleaseNotesArgs = {
|
|
13209
13285
|
after?: Maybe<Scalars['String']>;
|
|
13210
13286
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -13680,6 +13756,7 @@ export declare type RoadmapConfiguration = {
|
|
|
13680
13756
|
dependencies?: Maybe<RoadmapDependencyConfiguration>;
|
|
13681
13757
|
externalConfiguration?: Maybe<RoadmapExternalConfiguration>;
|
|
13682
13758
|
projectConfigurations: Array<RoadmapProjectConfiguration>;
|
|
13759
|
+
projectConfiguration?: Maybe<RoadmapProjectConfiguration>;
|
|
13683
13760
|
statusCategories: Array<RoadmapStatusCategory>;
|
|
13684
13761
|
userConfiguration?: Maybe<RoadmapUserConfiguration>;
|
|
13685
13762
|
boardConfiguration?: Maybe<RoadmapBoardConfiguration>;
|
|
@@ -13931,6 +14008,19 @@ export declare type RoadmapResolveHealthcheckPayload = Payload & {
|
|
|
13931
14008
|
success: Scalars['Boolean'];
|
|
13932
14009
|
errors?: Maybe<Array<MutationError>>;
|
|
13933
14010
|
};
|
|
14011
|
+
export declare type RoadmapScheduleItemInput = {
|
|
14012
|
+
itemId: Scalars['ID'];
|
|
14013
|
+
dueDate?: Maybe<Scalars['Date']>;
|
|
14014
|
+
startDate?: Maybe<Scalars['Date']>;
|
|
14015
|
+
};
|
|
14016
|
+
export declare type RoadmapScheduleItemsInput = {
|
|
14017
|
+
scheduleRequests: Array<Maybe<RoadmapScheduleItemInput>>;
|
|
14018
|
+
};
|
|
14019
|
+
export declare type RoadmapScheduleItemsPayload = Payload & {
|
|
14020
|
+
__typename?: 'RoadmapScheduleItemsPayload';
|
|
14021
|
+
success: Scalars['Boolean'];
|
|
14022
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14023
|
+
};
|
|
13934
14024
|
export declare type RoadmapSprint = {
|
|
13935
14025
|
__typename?: 'RoadmapSprint';
|
|
13936
14026
|
id: Scalars['ID'];
|
|
@@ -14026,6 +14116,7 @@ export declare type RoadmapsMutation = {
|
|
|
14026
14116
|
resolveRoadmapHealthcheck?: Maybe<RoadmapResolveHealthcheckPayload>;
|
|
14027
14117
|
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
14028
14118
|
updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
|
|
14119
|
+
scheduleRoadmapItems?: Maybe<RoadmapScheduleItemsPayload>;
|
|
14029
14120
|
addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
14030
14121
|
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
14031
14122
|
};
|
|
@@ -14044,6 +14135,10 @@ export declare type RoadmapsMutationUpdateRoadmapItemArgs = {
|
|
|
14044
14135
|
sourceARI: Scalars['ID'];
|
|
14045
14136
|
input: RoadmapUpdateItemInput;
|
|
14046
14137
|
};
|
|
14138
|
+
export declare type RoadmapsMutationScheduleRoadmapItemsArgs = {
|
|
14139
|
+
sourceARI: Scalars['ID'];
|
|
14140
|
+
input: RoadmapScheduleItemsInput;
|
|
14141
|
+
};
|
|
14047
14142
|
export declare type RoadmapsMutationAddRoadmapDependencyArgs = {
|
|
14048
14143
|
sourceARI: Scalars['ID'];
|
|
14049
14144
|
input: RoadmapToggleDependencyInput;
|
|
@@ -14960,7 +15055,15 @@ export declare type SupportRequestField = {
|
|
|
14960
15055
|
id: Scalars['String'];
|
|
14961
15056
|
label: Scalars['String'];
|
|
14962
15057
|
value: SupportRequestFieldValue;
|
|
15058
|
+
dataType?: Maybe<SupportRequestFieldDataType>;
|
|
15059
|
+
editable?: Maybe<Scalars['Boolean']>;
|
|
14963
15060
|
};
|
|
15061
|
+
export declare enum SupportRequestFieldDataType {
|
|
15062
|
+
String = "STRING",
|
|
15063
|
+
Number = "NUMBER",
|
|
15064
|
+
Boolean = "BOOLEAN",
|
|
15065
|
+
Date = "DATE"
|
|
15066
|
+
}
|
|
14964
15067
|
export declare type SupportRequestFieldValue = {
|
|
14965
15068
|
__typename?: 'SupportRequestFieldValue';
|
|
14966
15069
|
value: Scalars['String'];
|
|
@@ -15943,6 +16046,7 @@ export declare type UpdatePolarisInsightPayload = Payload & {
|
|
|
15943
16046
|
export declare type UpdatePolarisMatrixAxis = {
|
|
15944
16047
|
dimension: Scalars['String'];
|
|
15945
16048
|
field: Scalars['ID'];
|
|
16049
|
+
fieldOptions?: Maybe<Array<PolarisGroupValueInput>>;
|
|
15946
16050
|
};
|
|
15947
16051
|
export declare type UpdatePolarisMatrixConfig = {
|
|
15948
16052
|
axes?: Maybe<Array<UpdatePolarisMatrixAxis>>;
|