@forge/cli-shared 5.4.0-next.5 → 5.4.0-next.7
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 +13 -0
- package/out/graphql/graphql-types.d.ts +102 -108
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +22 -19
- package/out/ui/text.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 5.4.0-next.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [3f5f84e]
|
|
8
|
+
- @forge/manifest@7.6.0-next.4
|
|
9
|
+
|
|
10
|
+
## 5.4.0-next.6
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 694a970: Remove the env name suggestion in the forge deploy command and also updating the defaultEnv text
|
|
15
|
+
|
|
3
16
|
## 5.4.0-next.5
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
@@ -3190,6 +3190,39 @@ export declare enum CompassBuildEventState {
|
|
|
3190
3190
|
TimedOut = "TIMED_OUT",
|
|
3191
3191
|
Unknown = "UNKNOWN"
|
|
3192
3192
|
}
|
|
3193
|
+
export declare type CompassCampaign = Node & {
|
|
3194
|
+
__typename?: 'CompassCampaign';
|
|
3195
|
+
createdByUser?: Maybe<User>;
|
|
3196
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
3197
|
+
dueDate?: Maybe<Scalars['DateTime']['output']>;
|
|
3198
|
+
id: Scalars['ID']['output'];
|
|
3199
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3200
|
+
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
3201
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
3202
|
+
};
|
|
3203
|
+
export declare type CompassCampaignConnection = {
|
|
3204
|
+
__typename?: 'CompassCampaignConnection';
|
|
3205
|
+
edges?: Maybe<Array<CompassCampaignEdge>>;
|
|
3206
|
+
nodes?: Maybe<Array<Maybe<CompassCampaign>>>;
|
|
3207
|
+
pageInfo: PageInfo;
|
|
3208
|
+
};
|
|
3209
|
+
export declare type CompassCampaignEdge = {
|
|
3210
|
+
__typename?: 'CompassCampaignEdge';
|
|
3211
|
+
cursor: Scalars['String']['output'];
|
|
3212
|
+
node?: Maybe<CompassCampaign>;
|
|
3213
|
+
};
|
|
3214
|
+
export declare type CompassCampaignQuery = {
|
|
3215
|
+
sort?: InputMaybe<CompassCampaignQuerySort>;
|
|
3216
|
+
};
|
|
3217
|
+
export declare type CompassCampaignQuerySort = {
|
|
3218
|
+
name: Scalars['String']['input'];
|
|
3219
|
+
order?: InputMaybe<CompassCampaignQuerySortOrder>;
|
|
3220
|
+
};
|
|
3221
|
+
export declare enum CompassCampaignQuerySortOrder {
|
|
3222
|
+
Asc = "ASC",
|
|
3223
|
+
Desc = "DESC"
|
|
3224
|
+
}
|
|
3225
|
+
export declare type CompassCampaignResult = CompassCampaign | QueryError;
|
|
3193
3226
|
export declare type CompassCatalogMutationApi = {
|
|
3194
3227
|
__typename?: 'CompassCatalogMutationApi';
|
|
3195
3228
|
acknowledgeAnnouncement?: Maybe<CompassAcknowledgeAnnouncementPayload>;
|
|
@@ -3201,6 +3234,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3201
3234
|
attachEventSource?: Maybe<AttachEventSourcePayload>;
|
|
3202
3235
|
createAnnouncement?: Maybe<CompassCreateAnnouncementPayload>;
|
|
3203
3236
|
createAssistantAnswer?: Maybe<CompassCreateAssistantAnswerPayload>;
|
|
3237
|
+
createCampaign?: Maybe<CompassCreateCampaignPayload>;
|
|
3204
3238
|
createCompassEvent?: Maybe<CompassCreateEventsPayload>;
|
|
3205
3239
|
createComponent?: Maybe<CreateCompassComponentPayload>;
|
|
3206
3240
|
createComponentApiUpload?: Maybe<CreateComponentApiUploadPayload>;
|
|
@@ -3222,6 +3256,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3222
3256
|
createTeamCheckin?: Maybe<CompassCreateTeamCheckinPayload>;
|
|
3223
3257
|
createWebhook?: Maybe<CompassCreateWebhookPayload>;
|
|
3224
3258
|
deleteAnnouncement?: Maybe<CompassDeleteAnnouncementPayload>;
|
|
3259
|
+
deleteCampaign?: Maybe<CompassDeleteCampaignPayload>;
|
|
3225
3260
|
deleteComponent?: Maybe<DeleteCompassComponentPayload>;
|
|
3226
3261
|
deleteComponentExternalAlias?: Maybe<DeleteCompassComponentExternalAliasPayload>;
|
|
3227
3262
|
deleteComponentLink?: Maybe<DeleteCompassComponentLinkPayload>;
|
|
@@ -3246,6 +3281,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3246
3281
|
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
3247
3282
|
unlinkExternalSource?: Maybe<UnlinkExternalSourcePayload>;
|
|
3248
3283
|
updateAnnouncement?: Maybe<CompassUpdateAnnouncementPayload>;
|
|
3284
|
+
updateCampaign?: Maybe<CompassUpdateCampaignPayload>;
|
|
3249
3285
|
updateComponent?: Maybe<UpdateCompassComponentPayload>;
|
|
3250
3286
|
updateComponentApi?: Maybe<UpdateComponentApiPayload>;
|
|
3251
3287
|
updateComponentApiUpload?: Maybe<UpdateComponentApiUploadPayload>;
|
|
@@ -3291,6 +3327,10 @@ export declare type CompassCatalogMutationApiCreateAssistantAnswerArgs = {
|
|
|
3291
3327
|
cloudId: Scalars['ID']['input'];
|
|
3292
3328
|
input: CreateCompassAssistantAnswerInput;
|
|
3293
3329
|
};
|
|
3330
|
+
export declare type CompassCatalogMutationApiCreateCampaignArgs = {
|
|
3331
|
+
cloudId: Scalars['ID']['input'];
|
|
3332
|
+
input: CompassCreateCampaignInput;
|
|
3333
|
+
};
|
|
3294
3334
|
export declare type CompassCatalogMutationApiCreateCompassEventArgs = {
|
|
3295
3335
|
input: CompassCreateEventInput;
|
|
3296
3336
|
};
|
|
@@ -3357,6 +3397,9 @@ export declare type CompassCatalogMutationApiCreateWebhookArgs = {
|
|
|
3357
3397
|
export declare type CompassCatalogMutationApiDeleteAnnouncementArgs = {
|
|
3358
3398
|
input: CompassDeleteAnnouncementInput;
|
|
3359
3399
|
};
|
|
3400
|
+
export declare type CompassCatalogMutationApiDeleteCampaignArgs = {
|
|
3401
|
+
campaignId: Scalars['ID']['input'];
|
|
3402
|
+
};
|
|
3360
3403
|
export declare type CompassCatalogMutationApiDeleteComponentArgs = {
|
|
3361
3404
|
input: DeleteCompassComponentInput;
|
|
3362
3405
|
};
|
|
@@ -3430,6 +3473,10 @@ export declare type CompassCatalogMutationApiUnlinkExternalSourceArgs = {
|
|
|
3430
3473
|
export declare type CompassCatalogMutationApiUpdateAnnouncementArgs = {
|
|
3431
3474
|
input: CompassUpdateAnnouncementInput;
|
|
3432
3475
|
};
|
|
3476
|
+
export declare type CompassCatalogMutationApiUpdateCampaignArgs = {
|
|
3477
|
+
campaignId: Scalars['ID']['input'];
|
|
3478
|
+
input: CompassUpdateCampaignInput;
|
|
3479
|
+
};
|
|
3433
3480
|
export declare type CompassCatalogMutationApiUpdateComponentArgs = {
|
|
3434
3481
|
input: UpdateCompassComponentInput;
|
|
3435
3482
|
};
|
|
@@ -4027,6 +4074,19 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
4027
4074
|
updateSequenceNumber: Scalars['Long']['input'];
|
|
4028
4075
|
url: Scalars['URL']['input'];
|
|
4029
4076
|
};
|
|
4077
|
+
export declare type CompassCreateCampaignInput = {
|
|
4078
|
+
description: Scalars['String']['input'];
|
|
4079
|
+
dueDate: Scalars['DateTime']['input'];
|
|
4080
|
+
name: Scalars['String']['input'];
|
|
4081
|
+
scorecardId: Scalars['ID']['input'];
|
|
4082
|
+
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4083
|
+
};
|
|
4084
|
+
export declare type CompassCreateCampaignPayload = Payload & {
|
|
4085
|
+
__typename?: 'CompassCreateCampaignPayload';
|
|
4086
|
+
campaignDetails?: Maybe<CompassCampaign>;
|
|
4087
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4088
|
+
success: Scalars['Boolean']['output'];
|
|
4089
|
+
};
|
|
4030
4090
|
export declare type CompassCreateComponentScorecardJiraIssueInput = {
|
|
4031
4091
|
componentId: Scalars['ID']['input'];
|
|
4032
4092
|
issueId: Scalars['ID']['input'];
|
|
@@ -4572,6 +4632,12 @@ export declare type CompassDeleteAnnouncementPayload = Payload & {
|
|
|
4572
4632
|
errors?: Maybe<Array<MutationError>>;
|
|
4573
4633
|
success: Scalars['Boolean']['output'];
|
|
4574
4634
|
};
|
|
4635
|
+
export declare type CompassDeleteCampaignPayload = Payload & {
|
|
4636
|
+
__typename?: 'CompassDeleteCampaignPayload';
|
|
4637
|
+
campaignId: Scalars['ID']['output'];
|
|
4638
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4639
|
+
success: Scalars['Boolean']['output'];
|
|
4640
|
+
};
|
|
4575
4641
|
export declare type CompassDeleteComponentSubscriptionInput = {
|
|
4576
4642
|
componentId: Scalars['ID']['input'];
|
|
4577
4643
|
};
|
|
@@ -5509,6 +5575,7 @@ export declare type CompassScorecard = Node & {
|
|
|
5509
5575
|
__typename?: 'CompassScorecard';
|
|
5510
5576
|
applicationModel: CompassScorecardApplicationModel;
|
|
5511
5577
|
appliedToComponents?: Maybe<CompassScorecardAppliedToComponentsQueryResult>;
|
|
5578
|
+
campaigns?: Maybe<CompassCampaignConnection>;
|
|
5512
5579
|
changeMetadata: CompassChangeMetadata;
|
|
5513
5580
|
componentLabels?: Maybe<Array<CompassComponentLabel>>;
|
|
5514
5581
|
componentTiers?: Maybe<Array<CompassComponentTier>>;
|
|
@@ -5529,6 +5596,11 @@ export declare type CompassScorecard = Node & {
|
|
|
5529
5596
|
export declare type CompassScorecardAppliedToComponentsArgs = {
|
|
5530
5597
|
query?: InputMaybe<CompassScorecardAppliedToComponentsQuery>;
|
|
5531
5598
|
};
|
|
5599
|
+
export declare type CompassScorecardCampaignsArgs = {
|
|
5600
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5601
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5602
|
+
query?: InputMaybe<CompassCampaignQuery>;
|
|
5603
|
+
};
|
|
5532
5604
|
export declare type CompassScorecardCriteriaScoreStatisticsHistoriesArgs = {
|
|
5533
5605
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
5534
5606
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -6084,6 +6156,19 @@ export declare type CompassUpdateAnnouncementPayload = Payload & {
|
|
|
6084
6156
|
success: Scalars['Boolean']['output'];
|
|
6085
6157
|
updatedAnnouncement?: Maybe<CompassAnnouncement>;
|
|
6086
6158
|
};
|
|
6159
|
+
export declare type CompassUpdateCampaignInput = {
|
|
6160
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
6161
|
+
dueDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6162
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
6163
|
+
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6164
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
6165
|
+
};
|
|
6166
|
+
export declare type CompassUpdateCampaignPayload = Payload & {
|
|
6167
|
+
__typename?: 'CompassUpdateCampaignPayload';
|
|
6168
|
+
campaignDetails?: Maybe<CompassCampaign>;
|
|
6169
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6170
|
+
success: Scalars['Boolean']['output'];
|
|
6171
|
+
};
|
|
6087
6172
|
export declare type CompassUpdateComponentScorecardJiraIssueInput = {
|
|
6088
6173
|
componentId: Scalars['ID']['input'];
|
|
6089
6174
|
isActive: Scalars['Boolean']['input'];
|
|
@@ -14109,7 +14194,7 @@ export declare type ContentPlatformIpmComponentRemindMeLater = {
|
|
|
14109
14194
|
};
|
|
14110
14195
|
export declare type ContentPlatformIpmFlag = {
|
|
14111
14196
|
__typename?: 'ContentPlatformIpmFlag';
|
|
14112
|
-
body?: Maybe<Scalars['
|
|
14197
|
+
body?: Maybe<Scalars['JSON']['output']>;
|
|
14113
14198
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14114
14199
|
featuredDigitalAsset?: Maybe<ContentPlatformIpmComponentEmbeddedVideoAndIpmCompImageUnion>;
|
|
14115
14200
|
id: Scalars['String']['output'];
|
|
@@ -16930,6 +17015,7 @@ export declare type DevOps = {
|
|
|
16930
17015
|
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
16931
17016
|
summarisedDeploymentsByAgsIssues?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
16932
17017
|
summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
|
|
17018
|
+
summarisedFeatureFlagsByAgsIssues?: Maybe<Array<Maybe<DevOpsSummarisedFeatureFlags>>>;
|
|
16933
17019
|
toolchain?: Maybe<Toolchain>;
|
|
16934
17020
|
};
|
|
16935
17021
|
export declare type DevOpsDesignEntityDetailsArgs = {
|
|
@@ -16970,6 +17056,9 @@ export declare type DevOpsSummarisedDeploymentsByAgsIssuesArgs = {
|
|
|
16970
17056
|
export declare type DevOpsSummarisedEntitiesArgs = {
|
|
16971
17057
|
ids: Array<Scalars['ID']['input']>;
|
|
16972
17058
|
};
|
|
17059
|
+
export declare type DevOpsSummarisedFeatureFlagsByAgsIssuesArgs = {
|
|
17060
|
+
ids: Array<Scalars['ID']['input']>;
|
|
17061
|
+
};
|
|
16973
17062
|
export declare type DevOpsAvatar = {
|
|
16974
17063
|
__typename?: 'DevOpsAvatar';
|
|
16975
17064
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -18211,7 +18300,6 @@ export declare type DevOpsTool = Node & {
|
|
|
18211
18300
|
id: Scalars['ID']['output'];
|
|
18212
18301
|
installed?: Maybe<Scalars['Boolean']['output']>;
|
|
18213
18302
|
integration?: Maybe<DevOpsToolIntegration>;
|
|
18214
|
-
jiraProjectRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
18215
18303
|
name: Scalars['String']['output'];
|
|
18216
18304
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
18217
18305
|
productKey: Scalars['String']['output'];
|
|
@@ -18226,12 +18314,6 @@ export declare type DevOpsToolContainerRelationshipsArgs = {
|
|
|
18226
18314
|
jiraProjectId: Scalars['ID']['input'];
|
|
18227
18315
|
sort?: InputMaybe<AriGraphRelationshipsSort>;
|
|
18228
18316
|
};
|
|
18229
|
-
export declare type DevOpsToolJiraProjectRelationshipsArgs = {
|
|
18230
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
18231
|
-
filter?: InputMaybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
18232
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
18233
|
-
jiraProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
18234
|
-
};
|
|
18235
18317
|
export declare type DevOpsToolNamespacesArgs = {
|
|
18236
18318
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
18237
18319
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -40095,6 +40177,7 @@ export declare type JiraContainerNavigation = Node & {
|
|
|
40095
40177
|
addableNavigationItemTypes?: Maybe<JiraNavigationItemTypeConnection>;
|
|
40096
40178
|
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
40097
40179
|
id: Scalars['ID']['output'];
|
|
40180
|
+
navigationItemByItemId?: Maybe<JiraNavigationItemResult>;
|
|
40098
40181
|
navigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
40099
40182
|
scopeId?: Maybe<Scalars['ID']['output']>;
|
|
40100
40183
|
};
|
|
@@ -40102,6 +40185,9 @@ export declare type JiraContainerNavigationAddableNavigationItemTypesArgs = {
|
|
|
40102
40185
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40103
40186
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40104
40187
|
};
|
|
40188
|
+
export declare type JiraContainerNavigationNavigationItemByItemIdArgs = {
|
|
40189
|
+
itemId: Scalars['String']['input'];
|
|
40190
|
+
};
|
|
40105
40191
|
export declare type JiraContainerNavigationNavigationItemsArgs = {
|
|
40106
40192
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40107
40193
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -41941,6 +42027,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
41941
42027
|
suggestFieldValues?: Maybe<JiraSuggestedIssueFieldValuesResult>;
|
|
41942
42028
|
summarisedBuilds?: Maybe<DevOpsSummarisedBuilds>;
|
|
41943
42029
|
summarisedDeployments?: Maybe<DevOpsSummarisedDeployments>;
|
|
42030
|
+
summarisedFeatureFlags?: Maybe<DevOpsSummarisedFeatureFlags>;
|
|
41944
42031
|
summaryField?: Maybe<JiraSingleLineTextField>;
|
|
41945
42032
|
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
41946
42033
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -45756,7 +45843,6 @@ export declare type JiraProject = Node & {
|
|
|
45756
45843
|
description?: Maybe<Scalars['String']['output']>;
|
|
45757
45844
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
45758
45845
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
45759
|
-
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
45760
45846
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
45761
45847
|
hasRelationshipFrom?: Maybe<Scalars['Boolean']['output']>;
|
|
45762
45848
|
hasRelationshipTo?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -45765,6 +45851,7 @@ export declare type JiraProject = Node & {
|
|
|
45765
45851
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
45766
45852
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
45767
45853
|
jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
|
|
45854
|
+
jsmChatMsTeamsConfig?: Maybe<JsmChatMsTeamsConfig>;
|
|
45768
45855
|
jsmChatSlackConfig?: Maybe<JsmChatSlackConfig>;
|
|
45769
45856
|
jwmDefaultSavedView?: Maybe<JiraWorkManagementSavedViewResult>;
|
|
45770
45857
|
key: Scalars['String']['output'];
|
|
@@ -45840,11 +45927,6 @@ export declare type JiraProjectDevOpsServiceRelationshipsArgs = {
|
|
|
45840
45927
|
filter?: InputMaybe<DevOpsServiceAndJiraProjectRelationshipFilter>;
|
|
45841
45928
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45842
45929
|
};
|
|
45843
|
-
export declare type JiraProjectDevOpsToolRelationshipsArgs = {
|
|
45844
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
45845
|
-
filter?: InputMaybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
45846
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45847
|
-
};
|
|
45848
45930
|
export declare type JiraProjectHasRelationshipFromArgs = {
|
|
45849
45931
|
type: Scalars['ID']['input'];
|
|
45850
45932
|
};
|
|
@@ -45964,65 +46046,6 @@ export declare enum JiraProjectActionType {
|
|
|
45964
46046
|
ViewIssues = "VIEW_ISSUES",
|
|
45965
46047
|
ViewProjectConfig = "VIEW_PROJECT_CONFIG"
|
|
45966
46048
|
}
|
|
45967
|
-
export declare type JiraProjectAndDevOpsToolRelationship = Node & {
|
|
45968
|
-
__typename?: 'JiraProjectAndDevOpsToolRelationship';
|
|
45969
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45970
|
-
createdBy: Scalars['String']['output'];
|
|
45971
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
45972
|
-
devOpsTool?: Maybe<DevOpsTool>;
|
|
45973
|
-
id: Scalars['ID']['output'];
|
|
45974
|
-
jiraProject?: Maybe<JiraProject>;
|
|
45975
|
-
lastUpdatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
45976
|
-
lastUpdatedBy?: Maybe<Scalars['String']['output']>;
|
|
45977
|
-
properties?: Maybe<Scalars['JSON']['output']>;
|
|
45978
|
-
revision: Scalars['ID']['output'];
|
|
45979
|
-
};
|
|
45980
|
-
export declare type JiraProjectAndDevOpsToolRelationshipPropertiesArgs = {
|
|
45981
|
-
keys: Array<Scalars['String']['input']>;
|
|
45982
|
-
};
|
|
45983
|
-
export declare type JiraProjectAndDevOpsToolRelationshipConnection = {
|
|
45984
|
-
__typename?: 'JiraProjectAndDevOpsToolRelationshipConnection';
|
|
45985
|
-
edges?: Maybe<Array<Maybe<JiraProjectAndDevOpsToolRelationshipEdge>>>;
|
|
45986
|
-
nodes?: Maybe<Array<Maybe<JiraProjectAndDevOpsToolRelationship>>>;
|
|
45987
|
-
pageInfo: PageInfo;
|
|
45988
|
-
};
|
|
45989
|
-
export declare type JiraProjectAndDevOpsToolRelationshipCreateInput = {
|
|
45990
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
45991
|
-
devOpsToolId: Scalars['ID']['input'];
|
|
45992
|
-
jiraProjectId: Scalars['ID']['input'];
|
|
45993
|
-
properties?: InputMaybe<Array<DevOpsContainerRelationshipEntityPropertyInput>>;
|
|
45994
|
-
};
|
|
45995
|
-
export declare type JiraProjectAndDevOpsToolRelationshipCreatePayload = Payload & {
|
|
45996
|
-
__typename?: 'JiraProjectAndDevOpsToolRelationshipCreatePayload';
|
|
45997
|
-
errors?: Maybe<Array<MutationError>>;
|
|
45998
|
-
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
45999
|
-
success: Scalars['Boolean']['output'];
|
|
46000
|
-
};
|
|
46001
|
-
export declare type JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectInput = {
|
|
46002
|
-
id: Scalars['ID']['input'];
|
|
46003
|
-
};
|
|
46004
|
-
export declare type JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectPayload = {
|
|
46005
|
-
__typename?: 'JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectPayload';
|
|
46006
|
-
errors?: Maybe<Array<MutationError>>;
|
|
46007
|
-
numberDeleted?: Maybe<Scalars['Int']['output']>;
|
|
46008
|
-
success: Scalars['Boolean']['output'];
|
|
46009
|
-
};
|
|
46010
|
-
export declare type JiraProjectAndDevOpsToolRelationshipDeleteInput = {
|
|
46011
|
-
id: Scalars['ID']['input'];
|
|
46012
|
-
};
|
|
46013
|
-
export declare type JiraProjectAndDevOpsToolRelationshipDeletePayload = {
|
|
46014
|
-
__typename?: 'JiraProjectAndDevOpsToolRelationshipDeletePayload';
|
|
46015
|
-
errors?: Maybe<Array<MutationError>>;
|
|
46016
|
-
success: Scalars['Boolean']['output'];
|
|
46017
|
-
};
|
|
46018
|
-
export declare type JiraProjectAndDevOpsToolRelationshipEdge = {
|
|
46019
|
-
__typename?: 'JiraProjectAndDevOpsToolRelationshipEdge';
|
|
46020
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
46021
|
-
node?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
46022
|
-
};
|
|
46023
|
-
export declare type JiraProjectAndDevOpsToolRelationshipFilter = {
|
|
46024
|
-
hasPropertyEqualTo?: InputMaybe<DevOpsContainerRelationshipEntityPropertyInput>;
|
|
46025
|
-
};
|
|
46026
46049
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
46027
46050
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
46028
46051
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -56137,7 +56160,6 @@ export declare type Mutation = {
|
|
|
56137
56160
|
createDevOpsServiceAndRepositoryRelationship?: Maybe<CreateDevOpsServiceAndRepositoryRelationshipPayload>;
|
|
56138
56161
|
createDevOpsServiceRelationship?: Maybe<CreateDevOpsServiceRelationshipPayload>;
|
|
56139
56162
|
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
56140
|
-
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
56141
56163
|
createJiraProjectAndOpsgenieTeamRelationship?: Maybe<CreateJiraProjectAndOpsgenieTeamRelationshipPayload>;
|
|
56142
56164
|
createJiraProjectAndRepositoryRelationship?: Maybe<CreateJiraProjectAndRepositoryRelationshipPayload>;
|
|
56143
56165
|
createPolarisComment?: Maybe<CreatePolarisCommentPayload>;
|
|
@@ -56164,8 +56186,6 @@ export declare type Mutation = {
|
|
|
56164
56186
|
deleteDevOpsServiceAndRepositoryRelationship?: Maybe<DeleteDevOpsServiceAndRepositoryRelationshipPayload>;
|
|
56165
56187
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
56166
56188
|
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
56167
|
-
deleteDevOpsToolRelationshipsForJiraProject?: Maybe<JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectPayload>;
|
|
56168
|
-
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
56169
56189
|
deleteJiraProjectAndOpsgenieTeamRelationship?: Maybe<DeleteJiraProjectAndOpsgenieTeamRelationshipPayload>;
|
|
56170
56190
|
deleteJiraProjectAndRepositoryRelationship?: Maybe<DeleteJiraProjectAndRepositoryRelationshipPayload>;
|
|
56171
56191
|
deletePolarisIdeaTemplate?: Maybe<DeletePolarisIdeaTemplatePayload>;
|
|
@@ -56840,9 +56860,6 @@ export declare type MutationCreateDevOpsServiceRelationshipArgs = {
|
|
|
56840
56860
|
export declare type MutationCreateHostedResourceUploadUrlArgs = {
|
|
56841
56861
|
input: CreateHostedResourceUploadUrlInput;
|
|
56842
56862
|
};
|
|
56843
|
-
export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
56844
|
-
input: JiraProjectAndDevOpsToolRelationshipCreateInput;
|
|
56845
|
-
};
|
|
56846
56863
|
export declare type MutationCreateJiraProjectAndOpsgenieTeamRelationshipArgs = {
|
|
56847
56864
|
input: CreateJiraProjectAndOpsgenieTeamRelationshipInput;
|
|
56848
56865
|
};
|
|
@@ -56937,12 +56954,6 @@ export declare type MutationDeleteDevOpsServiceEntityPropertiesArgs = {
|
|
|
56937
56954
|
export declare type MutationDeleteDevOpsServiceRelationshipArgs = {
|
|
56938
56955
|
input: DeleteDevOpsServiceRelationshipInput;
|
|
56939
56956
|
};
|
|
56940
|
-
export declare type MutationDeleteDevOpsToolRelationshipsForJiraProjectArgs = {
|
|
56941
|
-
input: JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectInput;
|
|
56942
|
-
};
|
|
56943
|
-
export declare type MutationDeleteJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
56944
|
-
input: JiraProjectAndDevOpsToolRelationshipDeleteInput;
|
|
56945
|
-
};
|
|
56946
56957
|
export declare type MutationDeleteJiraProjectAndOpsgenieTeamRelationshipArgs = {
|
|
56947
56958
|
input: DeleteJiraProjectAndOpsgenieTeamRelationshipInput;
|
|
56948
56959
|
};
|
|
@@ -59671,7 +59682,6 @@ export declare type Query = {
|
|
|
59671
59682
|
devOpsServiceTypes?: Maybe<Array<DevOpsServiceType>>;
|
|
59672
59683
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
59673
59684
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
59674
|
-
devOpsToolRelationshipsForJiraProject?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
59675
59685
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
59676
59686
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
59677
59687
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
@@ -59707,10 +59717,8 @@ export declare type Query = {
|
|
|
59707
59717
|
jira?: Maybe<JiraQuery>;
|
|
59708
59718
|
jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
|
|
59709
59719
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
59710
|
-
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
59711
59720
|
jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
59712
59721
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
59713
|
-
jiraProjectRelationshipsForDevOpsTool?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
59714
59722
|
jiraProjectRelationshipsForOpsgenieTeam?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
59715
59723
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
59716
59724
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
@@ -60914,12 +60922,6 @@ export declare type QueryDevOpsServicesArgs = {
|
|
|
60914
60922
|
export declare type QueryDevOpsServicesByIdArgs = {
|
|
60915
60923
|
ids: Array<Scalars['ID']['input']>;
|
|
60916
60924
|
};
|
|
60917
|
-
export declare type QueryDevOpsToolRelationshipsForJiraProjectArgs = {
|
|
60918
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
60919
|
-
filter?: InputMaybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
60920
|
-
id: Scalars['ID']['input'];
|
|
60921
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
60922
|
-
};
|
|
60923
60925
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
60924
60926
|
appId: Scalars['ID']['input'];
|
|
60925
60927
|
contextIds: Array<Scalars['ID']['input']>;
|
|
@@ -61000,22 +61002,12 @@ export declare type QueryIpmImageModalsArgs = {
|
|
|
61000
61002
|
export declare type QueryIsSainSearchEnabledArgs = {
|
|
61001
61003
|
cloudId: Scalars['String']['input'];
|
|
61002
61004
|
};
|
|
61003
|
-
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
61004
|
-
id: Scalars['ID']['input'];
|
|
61005
|
-
};
|
|
61006
61005
|
export declare type QueryJiraProjectAndOpsgenieTeamRelationshipArgs = {
|
|
61007
61006
|
id: Scalars['ID']['input'];
|
|
61008
61007
|
};
|
|
61009
61008
|
export declare type QueryJiraProjectAndRepositoryRelationshipArgs = {
|
|
61010
61009
|
id: Scalars['ID']['input'];
|
|
61011
61010
|
};
|
|
61012
|
-
export declare type QueryJiraProjectRelationshipsForDevOpsToolArgs = {
|
|
61013
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
61014
|
-
filter?: InputMaybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
61015
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61016
|
-
id: Scalars['ID']['input'];
|
|
61017
|
-
jiraProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
61018
|
-
};
|
|
61019
61011
|
export declare type QueryJiraProjectRelationshipsForOpsgenieTeamArgs = {
|
|
61020
61012
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61021
61013
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -61304,8 +61296,6 @@ export declare enum RateLimitingCurrency {
|
|
|
61304
61296
|
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
61305
61297
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
61306
61298
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
61307
|
-
DevopsToolRelationshipsReadCurrency = "DEVOPS_TOOL_RELATIONSHIPS_READ_CURRENCY",
|
|
61308
|
-
DevopsToolRelationshipsWriteCurrency = "DEVOPS_TOOL_RELATIONSHIPS_WRITE_CURRENCY",
|
|
61309
61299
|
ExportMetricsCurrency = "EXPORT_METRICS_CURRENCY",
|
|
61310
61300
|
ForgeAlertsCurrency = "FORGE_ALERTS_CURRENCY",
|
|
61311
61301
|
ForgeAppContributorCurrency = "FORGE_APP_CONTRIBUTOR_CURRENCY",
|
|
@@ -69492,7 +69482,7 @@ export declare type WorkSuggestionsCommon = {
|
|
|
69492
69482
|
title: Scalars['String']['output'];
|
|
69493
69483
|
url: Scalars['String']['output'];
|
|
69494
69484
|
};
|
|
69495
|
-
export declare type WorkSuggestionsCompassAnnouncementTask = WorkSuggestionsCompassTask &
|
|
69485
|
+
export declare type WorkSuggestionsCompassAnnouncementTask = WorkSuggestionsCompassTask & {
|
|
69496
69486
|
__typename?: 'WorkSuggestionsCompassAnnouncementTask';
|
|
69497
69487
|
componentAri?: Maybe<Scalars['ID']['output']>;
|
|
69498
69488
|
componentName?: Maybe<Scalars['String']['output']>;
|
|
@@ -69510,6 +69500,10 @@ export declare type WorkSuggestionsCompassTask = {
|
|
|
69510
69500
|
componentAri?: Maybe<Scalars['ID']['output']>;
|
|
69511
69501
|
componentName?: Maybe<Scalars['String']['output']>;
|
|
69512
69502
|
componentType?: Maybe<Scalars['String']['output']>;
|
|
69503
|
+
id: Scalars['String']['output'];
|
|
69504
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69505
|
+
title: Scalars['String']['output'];
|
|
69506
|
+
url: Scalars['String']['output'];
|
|
69513
69507
|
};
|
|
69514
69508
|
export declare type WorkSuggestionsConnection = {
|
|
69515
69509
|
__typename?: 'WorkSuggestionsConnection';
|
|
@@ -69611,7 +69605,7 @@ export declare type WorkSuggestionsOrderScore = {
|
|
|
69611
69605
|
export declare type WorkSuggestionsOrderScores = {
|
|
69612
69606
|
__typename?: 'WorkSuggestionsOrderScores';
|
|
69613
69607
|
major: Scalars['Int']['output'];
|
|
69614
|
-
minor?: Maybe<Scalars['
|
|
69608
|
+
minor?: Maybe<Scalars['Long']['output']>;
|
|
69615
69609
|
};
|
|
69616
69610
|
export declare type WorkSuggestionsPrComment = {
|
|
69617
69611
|
__typename?: 'WorkSuggestionsPRComment';
|