@forge/cli-shared 5.4.0-next.4 → 5.4.0-next.6
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 +17 -0
- package/out/graphql/graphql-types.d.ts +289 -166
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +46 -19
- package/out/service/bridge-script-service.js +2 -3
- package/out/service/iframe-resizer-script-service.js +2 -3
- package/out/ui/text.js +1 -1
- package/package.json +3 -3
|
@@ -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>;
|
|
@@ -3209,6 +3243,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3209
3243
|
createComponentLink?: Maybe<CreateCompassComponentLinkPayload>;
|
|
3210
3244
|
createComponentScorecardJiraIssue?: Maybe<CompassCreateComponentScorecardJiraIssuePayload>;
|
|
3211
3245
|
createComponentSubscription?: Maybe<CompassCreateComponentSubscriptionPayload>;
|
|
3246
|
+
createComponentType?: Maybe<CreateCompassComponentTypePayload>;
|
|
3212
3247
|
createCustomFieldDefinition?: Maybe<CompassCreateCustomFieldDefinitionPayload>;
|
|
3213
3248
|
createEventSource?: Maybe<CreateEventSourcePayload>;
|
|
3214
3249
|
createIncomingWebhook?: Maybe<CompassCreateIncomingWebhookPayload>;
|
|
@@ -3221,6 +3256,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3221
3256
|
createTeamCheckin?: Maybe<CompassCreateTeamCheckinPayload>;
|
|
3222
3257
|
createWebhook?: Maybe<CompassCreateWebhookPayload>;
|
|
3223
3258
|
deleteAnnouncement?: Maybe<CompassDeleteAnnouncementPayload>;
|
|
3259
|
+
deleteCampaign?: Maybe<CompassDeleteCampaignPayload>;
|
|
3224
3260
|
deleteComponent?: Maybe<DeleteCompassComponentPayload>;
|
|
3225
3261
|
deleteComponentExternalAlias?: Maybe<DeleteCompassComponentExternalAliasPayload>;
|
|
3226
3262
|
deleteComponentLink?: Maybe<DeleteCompassComponentLinkPayload>;
|
|
@@ -3245,6 +3281,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3245
3281
|
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
3246
3282
|
unlinkExternalSource?: Maybe<UnlinkExternalSourcePayload>;
|
|
3247
3283
|
updateAnnouncement?: Maybe<CompassUpdateAnnouncementPayload>;
|
|
3284
|
+
updateCampaign?: Maybe<CompassUpdateCampaignPayload>;
|
|
3248
3285
|
updateComponent?: Maybe<UpdateCompassComponentPayload>;
|
|
3249
3286
|
updateComponentApi?: Maybe<UpdateComponentApiPayload>;
|
|
3250
3287
|
updateComponentApiUpload?: Maybe<UpdateComponentApiUploadPayload>;
|
|
@@ -3290,6 +3327,10 @@ export declare type CompassCatalogMutationApiCreateAssistantAnswerArgs = {
|
|
|
3290
3327
|
cloudId: Scalars['ID']['input'];
|
|
3291
3328
|
input: CreateCompassAssistantAnswerInput;
|
|
3292
3329
|
};
|
|
3330
|
+
export declare type CompassCatalogMutationApiCreateCampaignArgs = {
|
|
3331
|
+
cloudId: Scalars['ID']['input'];
|
|
3332
|
+
input: CompassCreateCampaignInput;
|
|
3333
|
+
};
|
|
3293
3334
|
export declare type CompassCatalogMutationApiCreateCompassEventArgs = {
|
|
3294
3335
|
input: CompassCreateEventInput;
|
|
3295
3336
|
};
|
|
@@ -3315,6 +3356,10 @@ export declare type CompassCatalogMutationApiCreateComponentScorecardJiraIssueAr
|
|
|
3315
3356
|
export declare type CompassCatalogMutationApiCreateComponentSubscriptionArgs = {
|
|
3316
3357
|
input: CompassCreateComponentSubscriptionInput;
|
|
3317
3358
|
};
|
|
3359
|
+
export declare type CompassCatalogMutationApiCreateComponentTypeArgs = {
|
|
3360
|
+
cloudId: Scalars['ID']['input'];
|
|
3361
|
+
input: CreateCompassComponentTypeInput;
|
|
3362
|
+
};
|
|
3318
3363
|
export declare type CompassCatalogMutationApiCreateCustomFieldDefinitionArgs = {
|
|
3319
3364
|
input: CompassCreateCustomFieldDefinitionInput;
|
|
3320
3365
|
};
|
|
@@ -3352,6 +3397,9 @@ export declare type CompassCatalogMutationApiCreateWebhookArgs = {
|
|
|
3352
3397
|
export declare type CompassCatalogMutationApiDeleteAnnouncementArgs = {
|
|
3353
3398
|
input: CompassDeleteAnnouncementInput;
|
|
3354
3399
|
};
|
|
3400
|
+
export declare type CompassCatalogMutationApiDeleteCampaignArgs = {
|
|
3401
|
+
campaignId: Scalars['ID']['input'];
|
|
3402
|
+
};
|
|
3355
3403
|
export declare type CompassCatalogMutationApiDeleteComponentArgs = {
|
|
3356
3404
|
input: DeleteCompassComponentInput;
|
|
3357
3405
|
};
|
|
@@ -3425,6 +3473,10 @@ export declare type CompassCatalogMutationApiUnlinkExternalSourceArgs = {
|
|
|
3425
3473
|
export declare type CompassCatalogMutationApiUpdateAnnouncementArgs = {
|
|
3426
3474
|
input: CompassUpdateAnnouncementInput;
|
|
3427
3475
|
};
|
|
3476
|
+
export declare type CompassCatalogMutationApiUpdateCampaignArgs = {
|
|
3477
|
+
campaignId: Scalars['ID']['input'];
|
|
3478
|
+
input: CompassUpdateCampaignInput;
|
|
3479
|
+
};
|
|
3428
3480
|
export declare type CompassCatalogMutationApiUpdateComponentArgs = {
|
|
3429
3481
|
input: UpdateCompassComponentInput;
|
|
3430
3482
|
};
|
|
@@ -4022,6 +4074,19 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
4022
4074
|
updateSequenceNumber: Scalars['Long']['input'];
|
|
4023
4075
|
url: Scalars['URL']['input'];
|
|
4024
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
|
+
};
|
|
4025
4090
|
export declare type CompassCreateComponentScorecardJiraIssueInput = {
|
|
4026
4091
|
componentId: Scalars['ID']['input'];
|
|
4027
4092
|
issueId: Scalars['ID']['input'];
|
|
@@ -4567,6 +4632,12 @@ export declare type CompassDeleteAnnouncementPayload = Payload & {
|
|
|
4567
4632
|
errors?: Maybe<Array<MutationError>>;
|
|
4568
4633
|
success: Scalars['Boolean']['output'];
|
|
4569
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
|
+
};
|
|
4570
4641
|
export declare type CompassDeleteComponentSubscriptionInput = {
|
|
4571
4642
|
componentId: Scalars['ID']['input'];
|
|
4572
4643
|
};
|
|
@@ -5504,6 +5575,7 @@ export declare type CompassScorecard = Node & {
|
|
|
5504
5575
|
__typename?: 'CompassScorecard';
|
|
5505
5576
|
applicationModel: CompassScorecardApplicationModel;
|
|
5506
5577
|
appliedToComponents?: Maybe<CompassScorecardAppliedToComponentsQueryResult>;
|
|
5578
|
+
campaigns?: Maybe<CompassCampaignConnection>;
|
|
5507
5579
|
changeMetadata: CompassChangeMetadata;
|
|
5508
5580
|
componentLabels?: Maybe<Array<CompassComponentLabel>>;
|
|
5509
5581
|
componentTiers?: Maybe<Array<CompassComponentTier>>;
|
|
@@ -5524,6 +5596,11 @@ export declare type CompassScorecard = Node & {
|
|
|
5524
5596
|
export declare type CompassScorecardAppliedToComponentsArgs = {
|
|
5525
5597
|
query?: InputMaybe<CompassScorecardAppliedToComponentsQuery>;
|
|
5526
5598
|
};
|
|
5599
|
+
export declare type CompassScorecardCampaignsArgs = {
|
|
5600
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5601
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5602
|
+
query?: InputMaybe<CompassCampaignQuery>;
|
|
5603
|
+
};
|
|
5527
5604
|
export declare type CompassScorecardCriteriaScoreStatisticsHistoriesArgs = {
|
|
5528
5605
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
5529
5606
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -6079,6 +6156,19 @@ export declare type CompassUpdateAnnouncementPayload = Payload & {
|
|
|
6079
6156
|
success: Scalars['Boolean']['output'];
|
|
6080
6157
|
updatedAnnouncement?: Maybe<CompassAnnouncement>;
|
|
6081
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
|
+
};
|
|
6082
6172
|
export declare type CompassUpdateComponentScorecardJiraIssueInput = {
|
|
6083
6173
|
componentId: Scalars['ID']['input'];
|
|
6084
6174
|
isActive: Scalars['Boolean']['input'];
|
|
@@ -14104,7 +14194,7 @@ export declare type ContentPlatformIpmComponentRemindMeLater = {
|
|
|
14104
14194
|
};
|
|
14105
14195
|
export declare type ContentPlatformIpmFlag = {
|
|
14106
14196
|
__typename?: 'ContentPlatformIpmFlag';
|
|
14107
|
-
body?: Maybe<Scalars['
|
|
14197
|
+
body?: Maybe<Scalars['JSON']['output']>;
|
|
14108
14198
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14109
14199
|
featuredDigitalAsset?: Maybe<ContentPlatformIpmComponentEmbeddedVideoAndIpmCompImageUnion>;
|
|
14110
14200
|
id: Scalars['String']['output'];
|
|
@@ -15004,6 +15094,17 @@ export declare type CreateCompassComponentPayload = Payload & {
|
|
|
15004
15094
|
errors?: Maybe<Array<MutationError>>;
|
|
15005
15095
|
success: Scalars['Boolean']['output'];
|
|
15006
15096
|
};
|
|
15097
|
+
export declare type CreateCompassComponentTypeInput = {
|
|
15098
|
+
description: Scalars['String']['input'];
|
|
15099
|
+
iconKey: Scalars['String']['input'];
|
|
15100
|
+
name: Scalars['String']['input'];
|
|
15101
|
+
};
|
|
15102
|
+
export declare type CreateCompassComponentTypePayload = {
|
|
15103
|
+
__typename?: 'CreateCompassComponentTypePayload';
|
|
15104
|
+
createdComponentType?: Maybe<CompassComponentTypeObject>;
|
|
15105
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15106
|
+
success: Scalars['Boolean']['output'];
|
|
15107
|
+
};
|
|
15007
15108
|
export declare type CreateCompassFieldInput = {
|
|
15008
15109
|
definition: Scalars['ID']['input'];
|
|
15009
15110
|
value: CompassFieldValueInput;
|
|
@@ -16914,6 +17015,7 @@ export declare type DevOps = {
|
|
|
16914
17015
|
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
16915
17016
|
summarisedDeploymentsByAgsIssues?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
16916
17017
|
summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
|
|
17018
|
+
summarisedFeatureFlagsByAgsIssues?: Maybe<Array<Maybe<DevOpsSummarisedFeatureFlags>>>;
|
|
16917
17019
|
toolchain?: Maybe<Toolchain>;
|
|
16918
17020
|
};
|
|
16919
17021
|
export declare type DevOpsDesignEntityDetailsArgs = {
|
|
@@ -16954,6 +17056,9 @@ export declare type DevOpsSummarisedDeploymentsByAgsIssuesArgs = {
|
|
|
16954
17056
|
export declare type DevOpsSummarisedEntitiesArgs = {
|
|
16955
17057
|
ids: Array<Scalars['ID']['input']>;
|
|
16956
17058
|
};
|
|
17059
|
+
export declare type DevOpsSummarisedFeatureFlagsByAgsIssuesArgs = {
|
|
17060
|
+
ids: Array<Scalars['ID']['input']>;
|
|
17061
|
+
};
|
|
16957
17062
|
export declare type DevOpsAvatar = {
|
|
16958
17063
|
__typename?: 'DevOpsAvatar';
|
|
16959
17064
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -18195,7 +18300,6 @@ export declare type DevOpsTool = Node & {
|
|
|
18195
18300
|
id: Scalars['ID']['output'];
|
|
18196
18301
|
installed?: Maybe<Scalars['Boolean']['output']>;
|
|
18197
18302
|
integration?: Maybe<DevOpsToolIntegration>;
|
|
18198
|
-
jiraProjectRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
18199
18303
|
name: Scalars['String']['output'];
|
|
18200
18304
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
18201
18305
|
productKey: Scalars['String']['output'];
|
|
@@ -18210,12 +18314,6 @@ export declare type DevOpsToolContainerRelationshipsArgs = {
|
|
|
18210
18314
|
jiraProjectId: Scalars['ID']['input'];
|
|
18211
18315
|
sort?: InputMaybe<AriGraphRelationshipsSort>;
|
|
18212
18316
|
};
|
|
18213
|
-
export declare type DevOpsToolJiraProjectRelationshipsArgs = {
|
|
18214
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
18215
|
-
filter?: InputMaybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
18216
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
18217
|
-
jiraProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
18218
|
-
};
|
|
18219
18317
|
export declare type DevOpsToolNamespacesArgs = {
|
|
18220
18318
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
18221
18319
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -18990,7 +19088,7 @@ export declare type ExternalAuthProvider = {
|
|
|
18990
19088
|
key: Scalars['String']['output'];
|
|
18991
19089
|
url: Scalars['URL']['output'];
|
|
18992
19090
|
};
|
|
18993
|
-
export declare type ExternalBranch = {
|
|
19091
|
+
export declare type ExternalBranch = Node & {
|
|
18994
19092
|
__typename?: 'ExternalBranch';
|
|
18995
19093
|
branchId?: Maybe<Scalars['String']['output']>;
|
|
18996
19094
|
createPullRequestUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -19009,7 +19107,7 @@ export declare type ExternalBuildCommitReference = {
|
|
|
19009
19107
|
id?: Maybe<Scalars['String']['output']>;
|
|
19010
19108
|
repositoryUri?: Maybe<Scalars['String']['output']>;
|
|
19011
19109
|
};
|
|
19012
|
-
export declare type ExternalBuildInfo = {
|
|
19110
|
+
export declare type ExternalBuildInfo = Node & {
|
|
19013
19111
|
__typename?: 'ExternalBuildInfo';
|
|
19014
19112
|
buildNumber?: Maybe<Scalars['Long']['output']>;
|
|
19015
19113
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -19054,7 +19152,7 @@ export declare type ExternalChapter = {
|
|
|
19054
19152
|
startTimeInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
19055
19153
|
title?: Maybe<Scalars['String']['output']>;
|
|
19056
19154
|
};
|
|
19057
|
-
export declare type ExternalCommit = {
|
|
19155
|
+
export declare type ExternalCommit = Node & {
|
|
19058
19156
|
__typename?: 'ExternalCommit';
|
|
19059
19157
|
author?: Maybe<ExternalUser>;
|
|
19060
19158
|
commitId?: Maybe<Scalars['String']['output']>;
|
|
@@ -19071,7 +19169,7 @@ export declare type ExternalCommit = {
|
|
|
19071
19169
|
export declare enum ExternalCommitFlags {
|
|
19072
19170
|
MergeCommit = "MERGE_COMMIT"
|
|
19073
19171
|
}
|
|
19074
|
-
export declare type ExternalConversation = {
|
|
19172
|
+
export declare type ExternalConversation = Node & {
|
|
19075
19173
|
__typename?: 'ExternalConversation';
|
|
19076
19174
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19077
19175
|
createdBy?: Maybe<ExternalUser>;
|
|
@@ -19104,7 +19202,7 @@ export declare type ExternalCue = {
|
|
|
19104
19202
|
startTimeInSeconds?: Maybe<Scalars['Float']['output']>;
|
|
19105
19203
|
text?: Maybe<Scalars['String']['output']>;
|
|
19106
19204
|
};
|
|
19107
|
-
export declare type ExternalDeployment = {
|
|
19205
|
+
export declare type ExternalDeployment = Node & {
|
|
19108
19206
|
__typename?: 'ExternalDeployment';
|
|
19109
19207
|
deploymentSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
19110
19208
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -19129,7 +19227,7 @@ export declare enum ExternalDeploymentState {
|
|
|
19129
19227
|
Successful = "SUCCESSFUL",
|
|
19130
19228
|
Unknown = "UNKNOWN"
|
|
19131
19229
|
}
|
|
19132
|
-
export declare type ExternalDesign = {
|
|
19230
|
+
export declare type ExternalDesign = Node & {
|
|
19133
19231
|
__typename?: 'ExternalDesign';
|
|
19134
19232
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19135
19233
|
createdBy?: Maybe<ExternalUser>;
|
|
@@ -19162,7 +19260,7 @@ export declare enum ExternalDesignType {
|
|
|
19162
19260
|
Other = "OTHER",
|
|
19163
19261
|
Prototype = "PROTOTYPE"
|
|
19164
19262
|
}
|
|
19165
|
-
export declare type ExternalDocument = {
|
|
19263
|
+
export declare type ExternalDocument = Node & {
|
|
19166
19264
|
__typename?: 'ExternalDocument';
|
|
19167
19265
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
19168
19266
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
@@ -19242,7 +19340,7 @@ export declare type ExternalExportLink = {
|
|
|
19242
19340
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
19243
19341
|
url?: Maybe<Scalars['String']['output']>;
|
|
19244
19342
|
};
|
|
19245
|
-
export declare type ExternalFeatureFlag = {
|
|
19343
|
+
export declare type ExternalFeatureFlag = Node & {
|
|
19246
19344
|
__typename?: 'ExternalFeatureFlag';
|
|
19247
19345
|
details?: Maybe<Array<Maybe<ExternalFeatureFlagDetail>>>;
|
|
19248
19346
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -19304,7 +19402,7 @@ export declare enum ExternalMembershipType {
|
|
|
19304
19402
|
Public = "PUBLIC",
|
|
19305
19403
|
Shared = "SHARED"
|
|
19306
19404
|
}
|
|
19307
|
-
export declare type ExternalMessage = {
|
|
19405
|
+
export declare type ExternalMessage = Node & {
|
|
19308
19406
|
__typename?: 'ExternalMessage';
|
|
19309
19407
|
attachments?: Maybe<Array<Maybe<ExternalAttachment>>>;
|
|
19310
19408
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -19331,7 +19429,7 @@ export declare type ExternalPipeline = {
|
|
|
19331
19429
|
id?: Maybe<Scalars['String']['output']>;
|
|
19332
19430
|
url?: Maybe<Scalars['String']['output']>;
|
|
19333
19431
|
};
|
|
19334
|
-
export declare type ExternalPullRequest = {
|
|
19432
|
+
export declare type ExternalPullRequest = Node & {
|
|
19335
19433
|
__typename?: 'ExternalPullRequest';
|
|
19336
19434
|
author?: Maybe<ExternalUser>;
|
|
19337
19435
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -19356,7 +19454,7 @@ export declare enum ExternalPullRequestStatus {
|
|
|
19356
19454
|
Open = "OPEN",
|
|
19357
19455
|
Unknown = "UNKNOWN"
|
|
19358
19456
|
}
|
|
19359
|
-
export declare type ExternalRemoteLink = {
|
|
19457
|
+
export declare type ExternalRemoteLink = Node & {
|
|
19360
19458
|
__typename?: 'ExternalRemoteLink';
|
|
19361
19459
|
actionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
19362
19460
|
assignee?: Maybe<ExternalUser>;
|
|
@@ -19382,7 +19480,7 @@ export declare type ExternalRemoteLinkStatus = {
|
|
|
19382
19480
|
appearance?: Maybe<Scalars['String']['output']>;
|
|
19383
19481
|
label?: Maybe<Scalars['String']['output']>;
|
|
19384
19482
|
};
|
|
19385
|
-
export declare type ExternalRepository = {
|
|
19483
|
+
export declare type ExternalRepository = Node & {
|
|
19386
19484
|
__typename?: 'ExternalRepository';
|
|
19387
19485
|
avatarDescription?: Maybe<Scalars['String']['output']>;
|
|
19388
19486
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -19420,7 +19518,7 @@ export declare type ExternalUser = {
|
|
|
19420
19518
|
thirdPartyUser?: Maybe<ThirdPartyUser>;
|
|
19421
19519
|
user?: Maybe<User>;
|
|
19422
19520
|
};
|
|
19423
|
-
export declare type ExternalVideo = {
|
|
19521
|
+
export declare type ExternalVideo = Node & {
|
|
19424
19522
|
__typename?: 'ExternalVideo';
|
|
19425
19523
|
chapters?: Maybe<Array<Maybe<ExternalChapter>>>;
|
|
19426
19524
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
@@ -19442,7 +19540,7 @@ export declare type ExternalVideo = {
|
|
|
19442
19540
|
url?: Maybe<Scalars['String']['output']>;
|
|
19443
19541
|
width?: Maybe<Scalars['Long']['output']>;
|
|
19444
19542
|
};
|
|
19445
|
-
export declare type ExternalVulnerability = {
|
|
19543
|
+
export declare type ExternalVulnerability = Node & {
|
|
19446
19544
|
__typename?: 'ExternalVulnerability';
|
|
19447
19545
|
additionalInfo?: Maybe<ExternalVulnerabilityAdditionalInfo>;
|
|
19448
19546
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -35133,11 +35231,11 @@ export declare enum GrowthUnifiedProfileCompanyType {
|
|
|
35133
35231
|
}
|
|
35134
35232
|
export declare type GrowthUnifiedProfileConfluenceOnboardingContext = {
|
|
35135
35233
|
__typename?: 'GrowthUnifiedProfileConfluenceOnboardingContext';
|
|
35136
|
-
jobsToBeDone?: Maybe<GrowthUnifiedProfileJtbd
|
|
35234
|
+
jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
|
|
35137
35235
|
template?: Maybe<Scalars['String']['output']>;
|
|
35138
35236
|
};
|
|
35139
35237
|
export declare type GrowthUnifiedProfileConfluenceOnboardingContextInput = {
|
|
35140
|
-
jobsToBeDone?: InputMaybe<GrowthUnifiedProfileJtbd
|
|
35238
|
+
jobsToBeDone?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileJtbd>>>;
|
|
35141
35239
|
template?: InputMaybe<Scalars['String']['input']>;
|
|
35142
35240
|
};
|
|
35143
35241
|
export declare type GrowthUnifiedProfileCreateProfileInput = {
|
|
@@ -35181,11 +35279,16 @@ export declare enum GrowthUnifiedProfileJtbd {
|
|
|
35181
35279
|
TrackingRprtng = "TRACKING_RPRTNG",
|
|
35182
35280
|
UseKanbanBoard = "USE_KANBAN_BOARD"
|
|
35183
35281
|
}
|
|
35282
|
+
export declare enum GrowthUnifiedProfileJiraFamiliarity {
|
|
35283
|
+
Experience = "EXPERIENCE",
|
|
35284
|
+
Middle = "MIDDLE",
|
|
35285
|
+
New = "NEW"
|
|
35286
|
+
}
|
|
35184
35287
|
export declare type GrowthUnifiedProfileJiraOnboardingContext = {
|
|
35185
35288
|
__typename?: 'GrowthUnifiedProfileJiraOnboardingContext';
|
|
35186
35289
|
experienceLevel?: Maybe<Scalars['String']['output']>;
|
|
35187
|
-
jiraFamiliarity?: Maybe<
|
|
35188
|
-
jobsToBeDone?: Maybe<GrowthUnifiedProfileJtbd
|
|
35290
|
+
jiraFamiliarity?: Maybe<GrowthUnifiedProfileJiraFamiliarity>;
|
|
35291
|
+
jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
|
|
35189
35292
|
persona?: Maybe<Scalars['String']['output']>;
|
|
35190
35293
|
projectName?: Maybe<Scalars['String']['output']>;
|
|
35191
35294
|
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
@@ -35193,8 +35296,8 @@ export declare type GrowthUnifiedProfileJiraOnboardingContext = {
|
|
|
35193
35296
|
};
|
|
35194
35297
|
export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
35195
35298
|
experienceLevel?: InputMaybe<Scalars['String']['input']>;
|
|
35196
|
-
jiraFamiliarity?: InputMaybe<
|
|
35197
|
-
jobsToBeDone?: InputMaybe<GrowthUnifiedProfileJtbd
|
|
35299
|
+
jiraFamiliarity?: InputMaybe<GrowthUnifiedProfileJiraFamiliarity>;
|
|
35300
|
+
jobsToBeDone?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileJtbd>>>;
|
|
35198
35301
|
persona?: InputMaybe<Scalars['String']['input']>;
|
|
35199
35302
|
projectName?: InputMaybe<Scalars['String']['input']>;
|
|
35200
35303
|
teamType?: InputMaybe<GrowthUnifiedProfileTeamType>;
|
|
@@ -36586,6 +36689,7 @@ export declare type HelpLayoutUpdatePayload = Payload & {
|
|
|
36586
36689
|
__typename?: 'HelpLayoutUpdatePayload';
|
|
36587
36690
|
errors?: Maybe<Array<MutationError>>;
|
|
36588
36691
|
layoutId?: Maybe<Scalars['ID']['output']>;
|
|
36692
|
+
reloadOnPublish?: Maybe<Scalars['Boolean']['output']>;
|
|
36589
36693
|
success: Scalars['Boolean']['output'];
|
|
36590
36694
|
};
|
|
36591
36695
|
export declare enum HelpLayoutVerticalAlignment {
|
|
@@ -38105,6 +38209,16 @@ export declare type JiraAffectedServicesFieldInput = {
|
|
|
38105
38209
|
affectedServices: Array<JiraAffectedServicesInput>;
|
|
38106
38210
|
fieldId: Scalars['ID']['input'];
|
|
38107
38211
|
};
|
|
38212
|
+
export declare type JiraAffectedServicesFieldOperationInput = {
|
|
38213
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
38214
|
+
operation: JiraSingleValueFieldOperations;
|
|
38215
|
+
};
|
|
38216
|
+
export declare type JiraAffectedServicesFieldPayload = Payload & {
|
|
38217
|
+
__typename?: 'JiraAffectedServicesFieldPayload';
|
|
38218
|
+
errors?: Maybe<Array<MutationError>>;
|
|
38219
|
+
field?: Maybe<JiraAffectedServicesField>;
|
|
38220
|
+
success: Scalars['Boolean']['output'];
|
|
38221
|
+
};
|
|
38108
38222
|
export declare type JiraAffectedServicesInput = {
|
|
38109
38223
|
serviceId: Scalars['ID']['input'];
|
|
38110
38224
|
};
|
|
@@ -39918,7 +40032,7 @@ export declare type JiraConnectDateTimeField = JiraIssueField & JiraIssueFieldCo
|
|
|
39918
40032
|
type: Scalars['String']['output'];
|
|
39919
40033
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
39920
40034
|
};
|
|
39921
|
-
export declare type JiraConnectMultipleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
40035
|
+
export declare type JiraConnectMultipleSelectField = JiraHasMultipleSelectedValues & JiraHasSelectableValueOptions & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
39922
40036
|
__typename?: 'JiraConnectMultipleSelectField';
|
|
39923
40037
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
39924
40038
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -39929,8 +40043,10 @@ export declare type JiraConnectMultipleSelectField = JiraIssueField & JiraIssueF
|
|
|
39929
40043
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
39930
40044
|
name: Scalars['String']['output'];
|
|
39931
40045
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
40046
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
39932
40047
|
selectedFieldOptions?: Maybe<Array<Maybe<JiraOption>>>;
|
|
39933
40048
|
selectedOptions?: Maybe<JiraOptionConnection>;
|
|
40049
|
+
selectedValues?: Maybe<JiraSelectableValueConnection>;
|
|
39934
40050
|
type: Scalars['String']['output'];
|
|
39935
40051
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
39936
40052
|
};
|
|
@@ -39941,12 +40057,27 @@ export declare type JiraConnectMultipleSelectFieldFieldOptionsArgs = {
|
|
|
39941
40057
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
39942
40058
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
39943
40059
|
};
|
|
40060
|
+
export declare type JiraConnectMultipleSelectFieldSelectableValueOptionsArgs = {
|
|
40061
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40062
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
40063
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
40064
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40065
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
40066
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
40067
|
+
};
|
|
39944
40068
|
export declare type JiraConnectMultipleSelectFieldSelectedOptionsArgs = {
|
|
39945
40069
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39946
40070
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
39947
40071
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39948
40072
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
39949
40073
|
};
|
|
40074
|
+
export declare type JiraConnectMultipleSelectFieldSelectedValuesArgs = {
|
|
40075
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40076
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
40077
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40078
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
40079
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
40080
|
+
};
|
|
39950
40081
|
export declare type JiraConnectNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
39951
40082
|
__typename?: 'JiraConnectNumberField';
|
|
39952
40083
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -40046,6 +40177,7 @@ export declare type JiraContainerNavigation = Node & {
|
|
|
40046
40177
|
addableNavigationItemTypes?: Maybe<JiraNavigationItemTypeConnection>;
|
|
40047
40178
|
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
40048
40179
|
id: Scalars['ID']['output'];
|
|
40180
|
+
navigationItemByItemId?: Maybe<JiraNavigationItemResult>;
|
|
40049
40181
|
navigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
40050
40182
|
scopeId?: Maybe<Scalars['ID']['output']>;
|
|
40051
40183
|
};
|
|
@@ -40053,6 +40185,9 @@ export declare type JiraContainerNavigationAddableNavigationItemTypesArgs = {
|
|
|
40053
40185
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40054
40186
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40055
40187
|
};
|
|
40188
|
+
export declare type JiraContainerNavigationNavigationItemByItemIdArgs = {
|
|
40189
|
+
itemId: Scalars['String']['input'];
|
|
40190
|
+
};
|
|
40056
40191
|
export declare type JiraContainerNavigationNavigationItemsArgs = {
|
|
40057
40192
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40058
40193
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -41230,6 +41365,7 @@ export declare type JiraForgeExtension = {
|
|
|
41230
41365
|
appVersion: Scalars['String']['output'];
|
|
41231
41366
|
consentUrl?: Maybe<Scalars['String']['output']>;
|
|
41232
41367
|
egress: Array<Maybe<JiraForgeAppEgressDeclaration>>;
|
|
41368
|
+
environmentId: Scalars['String']['output'];
|
|
41233
41369
|
environmentKey: Scalars['String']['output'];
|
|
41234
41370
|
environmentType: JiraForgeEnvironmentType;
|
|
41235
41371
|
hiddenBy?: Maybe<JiraVisibilityControlMechanism>;
|
|
@@ -41244,6 +41380,7 @@ export declare type JiraForgeExtensionLicense = {
|
|
|
41244
41380
|
__typename?: 'JiraForgeExtensionLicense';
|
|
41245
41381
|
active: Scalars['Boolean']['output'];
|
|
41246
41382
|
billingPeriod?: Maybe<Scalars['String']['output']>;
|
|
41383
|
+
capabilitySet?: Maybe<Scalars['String']['output']>;
|
|
41247
41384
|
ccpEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
41248
41385
|
ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
|
|
41249
41386
|
isEvaluation?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -41348,7 +41485,7 @@ export declare type JiraForgeQuery = {
|
|
|
41348
41485
|
extensions?: Maybe<Array<JiraForgeExtension>>;
|
|
41349
41486
|
};
|
|
41350
41487
|
export declare type JiraForgeQueryExtensionsArgs = {
|
|
41351
|
-
cloudId
|
|
41488
|
+
cloudId: Scalars['ID']['input'];
|
|
41352
41489
|
context?: InputMaybe<JiraExtensionRenderingContextInput>;
|
|
41353
41490
|
includeHidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41354
41491
|
types: Array<Scalars['String']['input']>;
|
|
@@ -41529,6 +41666,8 @@ export declare type JiraFormattingSingleValueOperandInput = {
|
|
|
41529
41666
|
value: Scalars['String']['input'];
|
|
41530
41667
|
};
|
|
41531
41668
|
export declare enum JiraFormattingSingleValueOperator {
|
|
41669
|
+
Contains = "CONTAINS",
|
|
41670
|
+
DoesNotContain = "DOES_NOT_CONTAIN",
|
|
41532
41671
|
DoesNotEqual = "DOES_NOT_EQUAL",
|
|
41533
41672
|
Equals = "EQUALS",
|
|
41534
41673
|
GreaterThan = "GREATER_THAN",
|
|
@@ -41888,6 +42027,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
41888
42027
|
suggestFieldValues?: Maybe<JiraSuggestedIssueFieldValuesResult>;
|
|
41889
42028
|
summarisedBuilds?: Maybe<DevOpsSummarisedBuilds>;
|
|
41890
42029
|
summarisedDeployments?: Maybe<DevOpsSummarisedDeployments>;
|
|
42030
|
+
summarisedFeatureFlags?: Maybe<DevOpsSummarisedFeatureFlags>;
|
|
41891
42031
|
summaryField?: Maybe<JiraSingleLineTextField>;
|
|
41892
42032
|
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
41893
42033
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -44216,6 +44356,7 @@ export declare type JiraMutation = {
|
|
|
44216
44356
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
44217
44357
|
unlinkIssuesFromIncident?: Maybe<JiraUnlinkIssuesFromIncidentMutationPayload>;
|
|
44218
44358
|
updateActiveBackground?: Maybe<JiraUpdateActiveBackgroundPayload>;
|
|
44359
|
+
updateAffectedServicesField?: Maybe<JiraAffectedServicesFieldPayload>;
|
|
44219
44360
|
updateAttachmentField?: Maybe<JiraAttachmentFieldPayload>;
|
|
44220
44361
|
updateCascadingSelectField?: Maybe<JiraCascadingSelectFieldPayload>;
|
|
44221
44362
|
updateCheckboxesField?: Maybe<JiraCheckboxesFieldPayload>;
|
|
@@ -44555,6 +44696,9 @@ export declare type JiraMutationUnlinkIssuesFromIncidentArgs = {
|
|
|
44555
44696
|
export declare type JiraMutationUpdateActiveBackgroundArgs = {
|
|
44556
44697
|
input: JiraUpdateBackgroundInput;
|
|
44557
44698
|
};
|
|
44699
|
+
export declare type JiraMutationUpdateAffectedServicesFieldArgs = {
|
|
44700
|
+
input: JiraUpdateAffectedServicesFieldInput;
|
|
44701
|
+
};
|
|
44558
44702
|
export declare type JiraMutationUpdateAttachmentFieldArgs = {
|
|
44559
44703
|
input: JiraUpdateAttachmentFieldInput;
|
|
44560
44704
|
};
|
|
@@ -45699,7 +45843,6 @@ export declare type JiraProject = Node & {
|
|
|
45699
45843
|
description?: Maybe<Scalars['String']['output']>;
|
|
45700
45844
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
45701
45845
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
45702
|
-
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
45703
45846
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
45704
45847
|
hasRelationshipFrom?: Maybe<Scalars['Boolean']['output']>;
|
|
45705
45848
|
hasRelationshipTo?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -45708,6 +45851,7 @@ export declare type JiraProject = Node & {
|
|
|
45708
45851
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
45709
45852
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
45710
45853
|
jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
|
|
45854
|
+
jsmChatMsTeamsConfig?: Maybe<JsmChatMsTeamsConfig>;
|
|
45711
45855
|
jsmChatSlackConfig?: Maybe<JsmChatSlackConfig>;
|
|
45712
45856
|
jwmDefaultSavedView?: Maybe<JiraWorkManagementSavedViewResult>;
|
|
45713
45857
|
key: Scalars['String']['output'];
|
|
@@ -45783,11 +45927,6 @@ export declare type JiraProjectDevOpsServiceRelationshipsArgs = {
|
|
|
45783
45927
|
filter?: InputMaybe<DevOpsServiceAndJiraProjectRelationshipFilter>;
|
|
45784
45928
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45785
45929
|
};
|
|
45786
|
-
export declare type JiraProjectDevOpsToolRelationshipsArgs = {
|
|
45787
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
45788
|
-
filter?: InputMaybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
45789
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45790
|
-
};
|
|
45791
45930
|
export declare type JiraProjectHasRelationshipFromArgs = {
|
|
45792
45931
|
type: Scalars['ID']['input'];
|
|
45793
45932
|
};
|
|
@@ -45907,65 +46046,6 @@ export declare enum JiraProjectActionType {
|
|
|
45907
46046
|
ViewIssues = "VIEW_ISSUES",
|
|
45908
46047
|
ViewProjectConfig = "VIEW_PROJECT_CONFIG"
|
|
45909
46048
|
}
|
|
45910
|
-
export declare type JiraProjectAndDevOpsToolRelationship = Node & {
|
|
45911
|
-
__typename?: 'JiraProjectAndDevOpsToolRelationship';
|
|
45912
|
-
createdAt: Scalars['DateTime']['output'];
|
|
45913
|
-
createdBy: Scalars['String']['output'];
|
|
45914
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
45915
|
-
devOpsTool?: Maybe<DevOpsTool>;
|
|
45916
|
-
id: Scalars['ID']['output'];
|
|
45917
|
-
jiraProject?: Maybe<JiraProject>;
|
|
45918
|
-
lastUpdatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
45919
|
-
lastUpdatedBy?: Maybe<Scalars['String']['output']>;
|
|
45920
|
-
properties?: Maybe<Scalars['JSON']['output']>;
|
|
45921
|
-
revision: Scalars['ID']['output'];
|
|
45922
|
-
};
|
|
45923
|
-
export declare type JiraProjectAndDevOpsToolRelationshipPropertiesArgs = {
|
|
45924
|
-
keys: Array<Scalars['String']['input']>;
|
|
45925
|
-
};
|
|
45926
|
-
export declare type JiraProjectAndDevOpsToolRelationshipConnection = {
|
|
45927
|
-
__typename?: 'JiraProjectAndDevOpsToolRelationshipConnection';
|
|
45928
|
-
edges?: Maybe<Array<Maybe<JiraProjectAndDevOpsToolRelationshipEdge>>>;
|
|
45929
|
-
nodes?: Maybe<Array<Maybe<JiraProjectAndDevOpsToolRelationship>>>;
|
|
45930
|
-
pageInfo: PageInfo;
|
|
45931
|
-
};
|
|
45932
|
-
export declare type JiraProjectAndDevOpsToolRelationshipCreateInput = {
|
|
45933
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
45934
|
-
devOpsToolId: Scalars['ID']['input'];
|
|
45935
|
-
jiraProjectId: Scalars['ID']['input'];
|
|
45936
|
-
properties?: InputMaybe<Array<DevOpsContainerRelationshipEntityPropertyInput>>;
|
|
45937
|
-
};
|
|
45938
|
-
export declare type JiraProjectAndDevOpsToolRelationshipCreatePayload = Payload & {
|
|
45939
|
-
__typename?: 'JiraProjectAndDevOpsToolRelationshipCreatePayload';
|
|
45940
|
-
errors?: Maybe<Array<MutationError>>;
|
|
45941
|
-
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
45942
|
-
success: Scalars['Boolean']['output'];
|
|
45943
|
-
};
|
|
45944
|
-
export declare type JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectInput = {
|
|
45945
|
-
id: Scalars['ID']['input'];
|
|
45946
|
-
};
|
|
45947
|
-
export declare type JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectPayload = {
|
|
45948
|
-
__typename?: 'JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectPayload';
|
|
45949
|
-
errors?: Maybe<Array<MutationError>>;
|
|
45950
|
-
numberDeleted?: Maybe<Scalars['Int']['output']>;
|
|
45951
|
-
success: Scalars['Boolean']['output'];
|
|
45952
|
-
};
|
|
45953
|
-
export declare type JiraProjectAndDevOpsToolRelationshipDeleteInput = {
|
|
45954
|
-
id: Scalars['ID']['input'];
|
|
45955
|
-
};
|
|
45956
|
-
export declare type JiraProjectAndDevOpsToolRelationshipDeletePayload = {
|
|
45957
|
-
__typename?: 'JiraProjectAndDevOpsToolRelationshipDeletePayload';
|
|
45958
|
-
errors?: Maybe<Array<MutationError>>;
|
|
45959
|
-
success: Scalars['Boolean']['output'];
|
|
45960
|
-
};
|
|
45961
|
-
export declare type JiraProjectAndDevOpsToolRelationshipEdge = {
|
|
45962
|
-
__typename?: 'JiraProjectAndDevOpsToolRelationshipEdge';
|
|
45963
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
45964
|
-
node?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
45965
|
-
};
|
|
45966
|
-
export declare type JiraProjectAndDevOpsToolRelationshipFilter = {
|
|
45967
|
-
hasPropertyEqualTo?: InputMaybe<DevOpsContainerRelationshipEntityPropertyInput>;
|
|
45968
|
-
};
|
|
45969
46049
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
45970
46050
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
45971
46051
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -50211,6 +50291,10 @@ export declare type JiraUpdateActiveBackgroundPayload = Payload & {
|
|
|
50211
50291
|
errors?: Maybe<Array<MutationError>>;
|
|
50212
50292
|
success: Scalars['Boolean']['output'];
|
|
50213
50293
|
};
|
|
50294
|
+
export declare type JiraUpdateAffectedServicesFieldInput = {
|
|
50295
|
+
id: Scalars['ID']['input'];
|
|
50296
|
+
operation: JiraAffectedServicesFieldOperationInput;
|
|
50297
|
+
};
|
|
50214
50298
|
export declare type JiraUpdateAttachmentFieldInput = {
|
|
50215
50299
|
id: Scalars['ID']['input'];
|
|
50216
50300
|
operation: JiraAttachmentFieldOperationInput;
|
|
@@ -53471,6 +53555,7 @@ export declare type MarketplaceConsoleAppSoftware = {
|
|
|
53471
53555
|
export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
53472
53556
|
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
53473
53557
|
appSoftwareId: Scalars['ID']['output'];
|
|
53558
|
+
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
53474
53559
|
hosting: MarketplaceConsoleHosting;
|
|
53475
53560
|
isLatestVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
53476
53561
|
};
|
|
@@ -53487,6 +53572,7 @@ export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
|
53487
53572
|
sourceCodeLicense?: Maybe<MarketplaceConsoleSourceCodeLicense>;
|
|
53488
53573
|
state: MarketplaceConsoleAppSoftwareVersionState;
|
|
53489
53574
|
supportedPaymentModel: MarketplaceConsolePaymentModel;
|
|
53575
|
+
versionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
53490
53576
|
versionNumber: Scalars['String']['output'];
|
|
53491
53577
|
};
|
|
53492
53578
|
export declare type MarketplaceConsoleAppSoftwareVersionChangelog = {
|
|
@@ -53555,10 +53641,20 @@ export declare enum MarketplaceConsoleAppSoftwareVersionState {
|
|
|
53555
53641
|
Rejected = "REJECTED",
|
|
53556
53642
|
Submitted = "SUBMITTED"
|
|
53557
53643
|
}
|
|
53644
|
+
export declare type MarketplaceConsoleAppSoftwareVersions = {
|
|
53645
|
+
__typename?: 'MarketplaceConsoleAppSoftwareVersions';
|
|
53646
|
+
appSoftwareId: Scalars['ID']['output'];
|
|
53647
|
+
versions: Array<MarketplaceConsoleAppSoftwareVersion>;
|
|
53648
|
+
};
|
|
53558
53649
|
export declare type MarketplaceConsoleAppSoftwares = {
|
|
53559
53650
|
__typename?: 'MarketplaceConsoleAppSoftwares';
|
|
53560
53651
|
appSoftwares?: Maybe<Array<MarketplaceConsoleAppSoftwareShort>>;
|
|
53561
53652
|
};
|
|
53653
|
+
export declare type MarketplaceConsoleAppVersionDeleteRequestInput = {
|
|
53654
|
+
appId?: InputMaybe<Scalars['ID']['input']>;
|
|
53655
|
+
appSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
53656
|
+
buildNumber: Scalars['ID']['input'];
|
|
53657
|
+
};
|
|
53562
53658
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
53563
53659
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
53564
53660
|
descriptorId: Scalars['ID']['output'];
|
|
@@ -53646,17 +53742,21 @@ export declare type MarketplaceConsoleEdition = {
|
|
|
53646
53742
|
features?: Maybe<Array<Maybe<MarketplaceConsoleFeature>>>;
|
|
53647
53743
|
id: Scalars['ID']['output'];
|
|
53648
53744
|
isDefault: Scalars['Boolean']['output'];
|
|
53649
|
-
name
|
|
53745
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
53650
53746
|
pricingPlan: MarketplaceConsolePricingPlan;
|
|
53651
|
-
type:
|
|
53747
|
+
type: MarketplaceConsoleEditionType;
|
|
53652
53748
|
};
|
|
53653
53749
|
export declare type MarketplaceConsoleEditionCreate = {
|
|
53654
53750
|
features?: InputMaybe<Array<InputMaybe<MarketplaceConsoleFeatureCreate>>>;
|
|
53655
53751
|
isDefault: Scalars['Boolean']['input'];
|
|
53656
53752
|
name: Scalars['String']['input'];
|
|
53657
53753
|
pricingPlan: MarketplaceConsolePricingPlanModify;
|
|
53658
|
-
type:
|
|
53754
|
+
type: MarketplaceConsoleEditionType;
|
|
53659
53755
|
};
|
|
53756
|
+
export declare enum MarketplaceConsoleEditionType {
|
|
53757
|
+
Advanced = "ADVANCED",
|
|
53758
|
+
Standard = "STANDARD"
|
|
53759
|
+
}
|
|
53660
53760
|
export declare type MarketplaceConsoleEditionUpdate = {
|
|
53661
53761
|
features?: InputMaybe<Array<InputMaybe<MarketplaceConsoleFeatureUpdate>>>;
|
|
53662
53762
|
id: Scalars['ID']['input'];
|
|
@@ -53682,6 +53782,10 @@ export declare enum MarketplaceConsoleEditionsActivationStatus {
|
|
|
53682
53782
|
Pending = "PENDING",
|
|
53683
53783
|
Rejected = "REJECTED"
|
|
53684
53784
|
}
|
|
53785
|
+
export declare type MarketplaceConsoleEditionsInput = {
|
|
53786
|
+
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
53787
|
+
productId?: InputMaybe<Scalars['String']['input']>;
|
|
53788
|
+
};
|
|
53685
53789
|
export declare type MarketplaceConsoleError = {
|
|
53686
53790
|
message: Scalars['String']['output'];
|
|
53687
53791
|
};
|
|
@@ -53747,7 +53851,8 @@ export declare type MarketplaceConsoleLegacyMongoAppDetails = {
|
|
|
53747
53851
|
__typename?: 'MarketplaceConsoleLegacyMongoAppDetails';
|
|
53748
53852
|
hiddenIn?: Maybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
53749
53853
|
hostingVisibility?: Maybe<MarketplaceConsoleLegacyMongoHostingVisibility>;
|
|
53750
|
-
|
|
53854
|
+
issueKey?: Maybe<Scalars['String']['output']>;
|
|
53855
|
+
rejectionReason?: Maybe<Scalars['String']['output']>;
|
|
53751
53856
|
status: MarketplaceConsoleLegacyMongoStatus;
|
|
53752
53857
|
statusAfterApproval?: Maybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
53753
53858
|
};
|
|
@@ -53792,26 +53897,30 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
53792
53897
|
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
53793
53898
|
createEditions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53794
53899
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
53900
|
+
deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
53795
53901
|
updateEdition?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53796
53902
|
};
|
|
53797
53903
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
53798
53904
|
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
53799
|
-
product:
|
|
53905
|
+
product: MarketplaceConsoleEditionsInput;
|
|
53800
53906
|
};
|
|
53801
53907
|
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
53802
53908
|
appSoftwareId: Scalars['String']['input'];
|
|
53803
53909
|
};
|
|
53804
53910
|
export declare type MarketplaceConsoleMutationApiCreateEditionsArgs = {
|
|
53805
53911
|
editions: Array<MarketplaceConsoleEditionCreate>;
|
|
53806
|
-
product:
|
|
53912
|
+
product: MarketplaceConsoleEditionsInput;
|
|
53807
53913
|
};
|
|
53808
53914
|
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
53809
53915
|
appSoftwareId: Scalars['String']['input'];
|
|
53810
53916
|
token: Scalars['String']['input'];
|
|
53811
53917
|
};
|
|
53918
|
+
export declare type MarketplaceConsoleMutationApiDeleteAppVersionArgs = {
|
|
53919
|
+
deleteVersion: MarketplaceConsoleAppVersionDeleteRequestInput;
|
|
53920
|
+
};
|
|
53812
53921
|
export declare type MarketplaceConsoleMutationApiUpdateEditionArgs = {
|
|
53813
53922
|
edition: MarketplaceConsoleEditionUpdate;
|
|
53814
|
-
product:
|
|
53923
|
+
product: MarketplaceConsoleEditionsInput;
|
|
53815
53924
|
};
|
|
53816
53925
|
export declare type MarketplaceConsoleMutationVoidResponse = {
|
|
53817
53926
|
__typename?: 'MarketplaceConsoleMutationVoidResponse';
|
|
@@ -53873,46 +53982,39 @@ export declare type MarketplaceConsolePluginsFrameworkAttributes = {
|
|
|
53873
53982
|
__typename?: 'MarketplaceConsolePluginsFrameworkAttributes';
|
|
53874
53983
|
artifactId: Scalars['ID']['output'];
|
|
53875
53984
|
};
|
|
53985
|
+
export declare enum MarketplaceConsolePricingCurrency {
|
|
53986
|
+
Jpy = "JPY",
|
|
53987
|
+
Usd = "USD"
|
|
53988
|
+
}
|
|
53876
53989
|
export declare type MarketplaceConsolePricingItem = {
|
|
53877
53990
|
__typename?: 'MarketplaceConsolePricingItem';
|
|
53878
53991
|
amount: Scalars['Float']['output'];
|
|
53879
|
-
|
|
53880
|
-
|
|
53881
|
-
editionId: Scalars['String']['output'];
|
|
53882
|
-
editionType: Scalars['String']['output'];
|
|
53883
|
-
licenseType: Scalars['String']['output'];
|
|
53884
|
-
localCurrency: Scalars['String']['output'];
|
|
53885
|
-
localCurrencyAmount: Scalars['Float']['output'];
|
|
53886
|
-
localCurrencyRenewalAmount: Scalars['Float']['output'];
|
|
53887
|
-
monthsValid: Scalars['Int']['output'];
|
|
53888
|
-
renewalAmount: Scalars['Float']['output'];
|
|
53889
|
-
unitCount: Scalars['Int']['output'];
|
|
53992
|
+
ceiling: Scalars['Float']['output'];
|
|
53993
|
+
floor: Scalars['Float']['output'];
|
|
53890
53994
|
};
|
|
53891
53995
|
export declare type MarketplaceConsolePricingItemModify = {
|
|
53892
53996
|
amount: Scalars['Float']['input'];
|
|
53893
|
-
|
|
53894
|
-
|
|
53895
|
-
editionId: Scalars['String']['input'];
|
|
53896
|
-
editionType: Scalars['String']['input'];
|
|
53897
|
-
licenseType: Scalars['String']['input'];
|
|
53898
|
-
localCurrency: Scalars['String']['input'];
|
|
53899
|
-
localCurrencyAmount: Scalars['Float']['input'];
|
|
53900
|
-
localCurrencyRenewalAmount: Scalars['Float']['input'];
|
|
53901
|
-
monthsValid: Scalars['Int']['input'];
|
|
53902
|
-
renewalAmount: Scalars['Float']['input'];
|
|
53903
|
-
unitCount: Scalars['Int']['input'];
|
|
53997
|
+
ceiling: Scalars['Float']['input'];
|
|
53998
|
+
floor: Scalars['Float']['input'];
|
|
53904
53999
|
};
|
|
53905
54000
|
export declare type MarketplaceConsolePricingPlan = {
|
|
53906
54001
|
__typename?: 'MarketplaceConsolePricingPlan';
|
|
54002
|
+
currency: MarketplaceConsolePricingCurrency;
|
|
53907
54003
|
expertDiscountOptOut: Scalars['Boolean']['output'];
|
|
53908
|
-
|
|
53909
|
-
|
|
54004
|
+
status: MarketplaceConsolePricingPlanStatus;
|
|
54005
|
+
tieredPricing: MarketplaceConsoleTieredPricing;
|
|
53910
54006
|
};
|
|
53911
54007
|
export declare type MarketplaceConsolePricingPlanModify = {
|
|
54008
|
+
currency: MarketplaceConsolePricingCurrency;
|
|
53912
54009
|
expertDiscountOptOut: Scalars['Boolean']['input'];
|
|
53913
|
-
|
|
53914
|
-
|
|
54010
|
+
status: MarketplaceConsolePricingPlanStatus;
|
|
54011
|
+
tieredPricing: MarketplaceConsoleTieredPricingModify;
|
|
53915
54012
|
};
|
|
54013
|
+
export declare enum MarketplaceConsolePricingPlanStatus {
|
|
54014
|
+
Draft = "DRAFT",
|
|
54015
|
+
Live = "LIVE",
|
|
54016
|
+
Pending = "PENDING"
|
|
54017
|
+
}
|
|
53916
54018
|
export declare type MarketplaceConsolePrivateListings = {
|
|
53917
54019
|
__typename?: 'MarketplaceConsolePrivateListings';
|
|
53918
54020
|
appSoftwareId: Scalars['ID']['output'];
|
|
@@ -53931,8 +54033,10 @@ export declare type MarketplaceConsolePrivateListingsTokenDetails = {
|
|
|
53931
54033
|
node: MarketplaceConsoleTokenDetails;
|
|
53932
54034
|
};
|
|
53933
54035
|
export declare type MarketplaceConsoleProduct = {
|
|
53934
|
-
|
|
53935
|
-
|
|
54036
|
+
__typename?: 'MarketplaceConsoleProduct';
|
|
54037
|
+
appKey: Scalars['ID']['output'];
|
|
54038
|
+
isPricingPlanMissing?: Maybe<Scalars['Boolean']['output']>;
|
|
54039
|
+
productId: Scalars['ID']['output'];
|
|
53936
54040
|
};
|
|
53937
54041
|
export declare type MarketplaceConsoleProductListing = {
|
|
53938
54042
|
__typename?: 'MarketplaceConsoleProductListing';
|
|
@@ -53976,6 +54080,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
53976
54080
|
appSoftware: Array<MarketplaceConsoleAppSoftware>;
|
|
53977
54081
|
appSoftwareVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
53978
54082
|
appSoftwareVersionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
54083
|
+
appSoftwareVersions?: Maybe<MarketplaceConsoleAppSoftwareVersions>;
|
|
53979
54084
|
appSoftwaresByAppId?: Maybe<MarketplaceConsoleAppSoftwares>;
|
|
53980
54085
|
currentPartnerContact?: Maybe<MarketplaceConsolePartnerContact>;
|
|
53981
54086
|
currentPartnerContactByAppId?: Maybe<MarketplaceConsolePartnerContact>;
|
|
@@ -53986,6 +54091,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
53986
54091
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53987
54092
|
editionsActivationStatus?: Maybe<MarketplaceConsoleEditionsActivationResponse>;
|
|
53988
54093
|
parentSoftwares: Array<MarketplaceConsoleParentSoftware>;
|
|
54094
|
+
product?: Maybe<MarketplaceConsoleProduct>;
|
|
53989
54095
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
53990
54096
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
53991
54097
|
};
|
|
@@ -54005,6 +54111,9 @@ export declare type MarketplaceConsoleQueryApiAppSoftwareVersionListingArgs = {
|
|
|
54005
54111
|
appId: Scalars['ID']['input'];
|
|
54006
54112
|
buildNumber: Scalars['ID']['input'];
|
|
54007
54113
|
};
|
|
54114
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionsArgs = {
|
|
54115
|
+
appSoftwareId: Scalars['ID']['input'];
|
|
54116
|
+
};
|
|
54008
54117
|
export declare type MarketplaceConsoleQueryApiAppSoftwaresByAppIdArgs = {
|
|
54009
54118
|
appId: Scalars['ID']['input'];
|
|
54010
54119
|
};
|
|
@@ -54021,10 +54130,14 @@ export declare type MarketplaceConsoleQueryApiDeveloperSpaceByAppIdArgs = {
|
|
|
54021
54130
|
appId: Scalars['ID']['input'];
|
|
54022
54131
|
};
|
|
54023
54132
|
export declare type MarketplaceConsoleQueryApiEditionsArgs = {
|
|
54024
|
-
product:
|
|
54133
|
+
product: MarketplaceConsoleEditionsInput;
|
|
54025
54134
|
};
|
|
54026
54135
|
export declare type MarketplaceConsoleQueryApiEditionsActivationStatusArgs = {
|
|
54027
|
-
product:
|
|
54136
|
+
product: MarketplaceConsoleEditionsInput;
|
|
54137
|
+
};
|
|
54138
|
+
export declare type MarketplaceConsoleQueryApiProductArgs = {
|
|
54139
|
+
appKey: Scalars['ID']['input'];
|
|
54140
|
+
productId: Scalars['ID']['input'];
|
|
54028
54141
|
};
|
|
54029
54142
|
export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
54030
54143
|
appId: Scalars['ID']['input'];
|
|
@@ -54042,6 +54155,13 @@ export declare type MarketplaceConsoleTagsContent = {
|
|
|
54042
54155
|
id: Scalars['ID']['output'];
|
|
54043
54156
|
name: Scalars['String']['output'];
|
|
54044
54157
|
};
|
|
54158
|
+
export declare type MarketplaceConsoleTieredPricing = {
|
|
54159
|
+
__typename?: 'MarketplaceConsoleTieredPricing';
|
|
54160
|
+
items: Array<MarketplaceConsolePricingItem>;
|
|
54161
|
+
};
|
|
54162
|
+
export declare type MarketplaceConsoleTieredPricingModify = {
|
|
54163
|
+
items: Array<MarketplaceConsolePricingItemModify>;
|
|
54164
|
+
};
|
|
54045
54165
|
export declare type MarketplaceConsoleTokenDetails = {
|
|
54046
54166
|
__typename?: 'MarketplaceConsoleTokenDetails';
|
|
54047
54167
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
@@ -55446,6 +55566,8 @@ export declare type MercuryQueryApi = {
|
|
|
55446
55566
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
55447
55567
|
myPreference?: Maybe<MercuryPreference>;
|
|
55448
55568
|
myPreferences?: Maybe<Array<MercuryPreference>>;
|
|
55569
|
+
providerWork?: Maybe<MercuryProviderWork>;
|
|
55570
|
+
providerWorksByAris?: Maybe<Array<MercuryProviderWork>>;
|
|
55449
55571
|
team?: Maybe<MercuryTeam>;
|
|
55450
55572
|
teams?: Maybe<MercuryTeamConnection>;
|
|
55451
55573
|
workspaceContext: MercuryWorkspaceContext;
|
|
@@ -55519,6 +55641,13 @@ export declare type MercuryQueryApiMyPreferenceArgs = {
|
|
|
55519
55641
|
export declare type MercuryQueryApiMyPreferencesArgs = {
|
|
55520
55642
|
cloudId: Scalars['ID']['input'];
|
|
55521
55643
|
};
|
|
55644
|
+
export declare type MercuryQueryApiProviderWorkArgs = {
|
|
55645
|
+
cloudId: Scalars['ID']['input'];
|
|
55646
|
+
id: Scalars['ID']['input'];
|
|
55647
|
+
};
|
|
55648
|
+
export declare type MercuryQueryApiProviderWorksByArisArgs = {
|
|
55649
|
+
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
55650
|
+
};
|
|
55522
55651
|
export declare type MercuryQueryApiTeamArgs = {
|
|
55523
55652
|
cloudId: Scalars['ID']['input'];
|
|
55524
55653
|
id: Scalars['ID']['input'];
|
|
@@ -56031,7 +56160,6 @@ export declare type Mutation = {
|
|
|
56031
56160
|
createDevOpsServiceAndRepositoryRelationship?: Maybe<CreateDevOpsServiceAndRepositoryRelationshipPayload>;
|
|
56032
56161
|
createDevOpsServiceRelationship?: Maybe<CreateDevOpsServiceRelationshipPayload>;
|
|
56033
56162
|
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
56034
|
-
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
56035
56163
|
createJiraProjectAndOpsgenieTeamRelationship?: Maybe<CreateJiraProjectAndOpsgenieTeamRelationshipPayload>;
|
|
56036
56164
|
createJiraProjectAndRepositoryRelationship?: Maybe<CreateJiraProjectAndRepositoryRelationshipPayload>;
|
|
56037
56165
|
createPolarisComment?: Maybe<CreatePolarisCommentPayload>;
|
|
@@ -56058,8 +56186,6 @@ export declare type Mutation = {
|
|
|
56058
56186
|
deleteDevOpsServiceAndRepositoryRelationship?: Maybe<DeleteDevOpsServiceAndRepositoryRelationshipPayload>;
|
|
56059
56187
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
56060
56188
|
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
56061
|
-
deleteDevOpsToolRelationshipsForJiraProject?: Maybe<JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectPayload>;
|
|
56062
|
-
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
56063
56189
|
deleteJiraProjectAndOpsgenieTeamRelationship?: Maybe<DeleteJiraProjectAndOpsgenieTeamRelationshipPayload>;
|
|
56064
56190
|
deleteJiraProjectAndRepositoryRelationship?: Maybe<DeleteJiraProjectAndRepositoryRelationshipPayload>;
|
|
56065
56191
|
deletePolarisIdeaTemplate?: Maybe<DeletePolarisIdeaTemplatePayload>;
|
|
@@ -56734,9 +56860,6 @@ export declare type MutationCreateDevOpsServiceRelationshipArgs = {
|
|
|
56734
56860
|
export declare type MutationCreateHostedResourceUploadUrlArgs = {
|
|
56735
56861
|
input: CreateHostedResourceUploadUrlInput;
|
|
56736
56862
|
};
|
|
56737
|
-
export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
56738
|
-
input: JiraProjectAndDevOpsToolRelationshipCreateInput;
|
|
56739
|
-
};
|
|
56740
56863
|
export declare type MutationCreateJiraProjectAndOpsgenieTeamRelationshipArgs = {
|
|
56741
56864
|
input: CreateJiraProjectAndOpsgenieTeamRelationshipInput;
|
|
56742
56865
|
};
|
|
@@ -56831,12 +56954,6 @@ export declare type MutationDeleteDevOpsServiceEntityPropertiesArgs = {
|
|
|
56831
56954
|
export declare type MutationDeleteDevOpsServiceRelationshipArgs = {
|
|
56832
56955
|
input: DeleteDevOpsServiceRelationshipInput;
|
|
56833
56956
|
};
|
|
56834
|
-
export declare type MutationDeleteDevOpsToolRelationshipsForJiraProjectArgs = {
|
|
56835
|
-
input: JiraProjectAndDevOpsToolRelationshipDeleteForJiraProjectInput;
|
|
56836
|
-
};
|
|
56837
|
-
export declare type MutationDeleteJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
56838
|
-
input: JiraProjectAndDevOpsToolRelationshipDeleteInput;
|
|
56839
|
-
};
|
|
56840
56957
|
export declare type MutationDeleteJiraProjectAndOpsgenieTeamRelationshipArgs = {
|
|
56841
56958
|
input: DeleteJiraProjectAndOpsgenieTeamRelationshipInput;
|
|
56842
56959
|
};
|
|
@@ -59565,7 +59682,6 @@ export declare type Query = {
|
|
|
59565
59682
|
devOpsServiceTypes?: Maybe<Array<DevOpsServiceType>>;
|
|
59566
59683
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
59567
59684
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
59568
|
-
devOpsToolRelationshipsForJiraProject?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
59569
59685
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
59570
59686
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
59571
59687
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
@@ -59601,10 +59717,8 @@ export declare type Query = {
|
|
|
59601
59717
|
jira?: Maybe<JiraQuery>;
|
|
59602
59718
|
jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
|
|
59603
59719
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
59604
|
-
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
59605
59720
|
jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
59606
59721
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
59607
|
-
jiraProjectRelationshipsForDevOpsTool?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
59608
59722
|
jiraProjectRelationshipsForOpsgenieTeam?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
59609
59723
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
59610
59724
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
@@ -60808,12 +60922,6 @@ export declare type QueryDevOpsServicesArgs = {
|
|
|
60808
60922
|
export declare type QueryDevOpsServicesByIdArgs = {
|
|
60809
60923
|
ids: Array<Scalars['ID']['input']>;
|
|
60810
60924
|
};
|
|
60811
|
-
export declare type QueryDevOpsToolRelationshipsForJiraProjectArgs = {
|
|
60812
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
60813
|
-
filter?: InputMaybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
60814
|
-
id: Scalars['ID']['input'];
|
|
60815
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
60816
|
-
};
|
|
60817
60925
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
60818
60926
|
appId: Scalars['ID']['input'];
|
|
60819
60927
|
contextIds: Array<Scalars['ID']['input']>;
|
|
@@ -60894,22 +61002,12 @@ export declare type QueryIpmImageModalsArgs = {
|
|
|
60894
61002
|
export declare type QueryIsSainSearchEnabledArgs = {
|
|
60895
61003
|
cloudId: Scalars['String']['input'];
|
|
60896
61004
|
};
|
|
60897
|
-
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
60898
|
-
id: Scalars['ID']['input'];
|
|
60899
|
-
};
|
|
60900
61005
|
export declare type QueryJiraProjectAndOpsgenieTeamRelationshipArgs = {
|
|
60901
61006
|
id: Scalars['ID']['input'];
|
|
60902
61007
|
};
|
|
60903
61008
|
export declare type QueryJiraProjectAndRepositoryRelationshipArgs = {
|
|
60904
61009
|
id: Scalars['ID']['input'];
|
|
60905
61010
|
};
|
|
60906
|
-
export declare type QueryJiraProjectRelationshipsForDevOpsToolArgs = {
|
|
60907
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
60908
|
-
filter?: InputMaybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
60909
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60910
|
-
id: Scalars['ID']['input'];
|
|
60911
|
-
jiraProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
60912
|
-
};
|
|
60913
61011
|
export declare type QueryJiraProjectRelationshipsForOpsgenieTeamArgs = {
|
|
60914
61012
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
60915
61013
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -61198,8 +61296,6 @@ export declare enum RateLimitingCurrency {
|
|
|
61198
61296
|
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
61199
61297
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
61200
61298
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
61201
|
-
DevopsToolRelationshipsReadCurrency = "DEVOPS_TOOL_RELATIONSHIPS_READ_CURRENCY",
|
|
61202
|
-
DevopsToolRelationshipsWriteCurrency = "DEVOPS_TOOL_RELATIONSHIPS_WRITE_CURRENCY",
|
|
61203
61299
|
ExportMetricsCurrency = "EXPORT_METRICS_CURRENCY",
|
|
61204
61300
|
ForgeAlertsCurrency = "FORGE_ALERTS_CURRENCY",
|
|
61205
61301
|
ForgeAppContributorCurrency = "FORGE_APP_CONTRIBUTOR_CURRENCY",
|
|
@@ -69289,6 +69385,7 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
69289
69385
|
__typename?: 'WorkSuggestionsByProjectsResponse';
|
|
69290
69386
|
autoDevJobsSuggestions?: Maybe<Array<WorkSuggestionsAutoDevJobTask>>;
|
|
69291
69387
|
commonSuggestions?: Maybe<WorkSuggestionsConnection>;
|
|
69388
|
+
compassSuggestions?: Maybe<Array<WorkSuggestionsCompassTask>>;
|
|
69292
69389
|
pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
|
|
69293
69390
|
sortOrder?: Maybe<WorkSuggestionsOrder>;
|
|
69294
69391
|
};
|
|
@@ -69299,6 +69396,9 @@ export declare type WorkSuggestionsByProjectsResponseCommonSuggestionsArgs = {
|
|
|
69299
69396
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69300
69397
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69301
69398
|
};
|
|
69399
|
+
export declare type WorkSuggestionsByProjectsResponseCompassSuggestionsArgs = {
|
|
69400
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69401
|
+
};
|
|
69302
69402
|
export declare type WorkSuggestionsCodeTabEdge = {
|
|
69303
69403
|
__typename?: 'WorkSuggestionsCodeTabEdge';
|
|
69304
69404
|
cursor: Scalars['String']['output'];
|
|
@@ -69382,6 +69482,29 @@ export declare type WorkSuggestionsCommon = {
|
|
|
69382
69482
|
title: Scalars['String']['output'];
|
|
69383
69483
|
url: Scalars['String']['output'];
|
|
69384
69484
|
};
|
|
69485
|
+
export declare type WorkSuggestionsCompassAnnouncementTask = WorkSuggestionsCompassTask & {
|
|
69486
|
+
__typename?: 'WorkSuggestionsCompassAnnouncementTask';
|
|
69487
|
+
componentAri?: Maybe<Scalars['ID']['output']>;
|
|
69488
|
+
componentName?: Maybe<Scalars['String']['output']>;
|
|
69489
|
+
componentType?: Maybe<Scalars['String']['output']>;
|
|
69490
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
69491
|
+
id: Scalars['String']['output'];
|
|
69492
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69493
|
+
senderComponentName?: Maybe<Scalars['String']['output']>;
|
|
69494
|
+
senderComponentType?: Maybe<Scalars['String']['output']>;
|
|
69495
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
69496
|
+
title: Scalars['String']['output'];
|
|
69497
|
+
url: Scalars['String']['output'];
|
|
69498
|
+
};
|
|
69499
|
+
export declare type WorkSuggestionsCompassTask = {
|
|
69500
|
+
componentAri?: Maybe<Scalars['ID']['output']>;
|
|
69501
|
+
componentName?: Maybe<Scalars['String']['output']>;
|
|
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'];
|
|
69507
|
+
};
|
|
69385
69508
|
export declare type WorkSuggestionsConnection = {
|
|
69386
69509
|
__typename?: 'WorkSuggestionsConnection';
|
|
69387
69510
|
edges?: Maybe<Array<WorkSuggestionsEdge>>;
|
|
@@ -69482,7 +69605,7 @@ export declare type WorkSuggestionsOrderScore = {
|
|
|
69482
69605
|
export declare type WorkSuggestionsOrderScores = {
|
|
69483
69606
|
__typename?: 'WorkSuggestionsOrderScores';
|
|
69484
69607
|
major: Scalars['Int']['output'];
|
|
69485
|
-
minor?: Maybe<Scalars['
|
|
69608
|
+
minor?: Maybe<Scalars['Long']['output']>;
|
|
69486
69609
|
};
|
|
69487
69610
|
export declare type WorkSuggestionsPrComment = {
|
|
69488
69611
|
__typename?: 'WorkSuggestionsPRComment';
|