@forge/cli-shared 5.4.0-next.3 → 5.4.0-next.5
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 +19 -0
- package/out/graphql/graphql-types.d.ts +427 -258
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +125 -15
- package/out/service/bridge-script-service.js +2 -3
- package/out/service/iframe-resizer-script-service.js +2 -3
- package/package.json +3 -3
|
@@ -3209,6 +3209,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3209
3209
|
createComponentLink?: Maybe<CreateCompassComponentLinkPayload>;
|
|
3210
3210
|
createComponentScorecardJiraIssue?: Maybe<CompassCreateComponentScorecardJiraIssuePayload>;
|
|
3211
3211
|
createComponentSubscription?: Maybe<CompassCreateComponentSubscriptionPayload>;
|
|
3212
|
+
createComponentType?: Maybe<CreateCompassComponentTypePayload>;
|
|
3212
3213
|
createCustomFieldDefinition?: Maybe<CompassCreateCustomFieldDefinitionPayload>;
|
|
3213
3214
|
createEventSource?: Maybe<CreateEventSourcePayload>;
|
|
3214
3215
|
createIncomingWebhook?: Maybe<CompassCreateIncomingWebhookPayload>;
|
|
@@ -3315,6 +3316,10 @@ export declare type CompassCatalogMutationApiCreateComponentScorecardJiraIssueAr
|
|
|
3315
3316
|
export declare type CompassCatalogMutationApiCreateComponentSubscriptionArgs = {
|
|
3316
3317
|
input: CompassCreateComponentSubscriptionInput;
|
|
3317
3318
|
};
|
|
3319
|
+
export declare type CompassCatalogMutationApiCreateComponentTypeArgs = {
|
|
3320
|
+
cloudId: Scalars['ID']['input'];
|
|
3321
|
+
input: CreateCompassComponentTypeInput;
|
|
3322
|
+
};
|
|
3318
3323
|
export declare type CompassCatalogMutationApiCreateCustomFieldDefinitionArgs = {
|
|
3319
3324
|
input: CompassCreateCustomFieldDefinitionInput;
|
|
3320
3325
|
};
|
|
@@ -14047,36 +14052,40 @@ export declare type ContentPlatformImageComponent = {
|
|
|
14047
14052
|
};
|
|
14048
14053
|
export declare type ContentPlatformIpmAnchored = {
|
|
14049
14054
|
__typename?: 'ContentPlatformIpmAnchored';
|
|
14050
|
-
anchoredElement
|
|
14055
|
+
anchoredElement?: Maybe<Scalars['String']['output']>;
|
|
14051
14056
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14052
|
-
|
|
14053
|
-
|
|
14057
|
+
id: Scalars['String']['output'];
|
|
14058
|
+
relativeX?: Maybe<Scalars['Int']['output']>;
|
|
14059
|
+
relativeY?: Maybe<Scalars['Int']['output']>;
|
|
14054
14060
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14055
14061
|
};
|
|
14056
14062
|
export declare type ContentPlatformIpmCompImage = {
|
|
14057
14063
|
__typename?: 'ContentPlatformIpmCompImage';
|
|
14058
14064
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14059
|
-
|
|
14065
|
+
id: Scalars['String']['output'];
|
|
14066
|
+
image?: Maybe<Scalars['JSON']['output']>;
|
|
14060
14067
|
imageAltText?: Maybe<Scalars['String']['output']>;
|
|
14061
14068
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14062
14069
|
};
|
|
14063
14070
|
export declare type ContentPlatformIpmComponentEmbeddedVideo = {
|
|
14064
14071
|
__typename?: 'ContentPlatformIpmComponentEmbeddedVideo';
|
|
14065
14072
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14073
|
+
id: Scalars['String']['output'];
|
|
14066
14074
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14067
14075
|
videoAltText?: Maybe<Scalars['String']['output']>;
|
|
14068
|
-
videoProvider
|
|
14069
|
-
videoUrl
|
|
14076
|
+
videoProvider?: Maybe<Scalars['String']['output']>;
|
|
14077
|
+
videoUrl?: Maybe<Scalars['String']['output']>;
|
|
14070
14078
|
};
|
|
14071
14079
|
export declare type ContentPlatformIpmComponentEmbeddedVideoAndIpmCompImageUnion = ContentPlatformIpmCompImage | ContentPlatformIpmComponentEmbeddedVideo;
|
|
14072
14080
|
export declare type ContentPlatformIpmComponentGsacButton = {
|
|
14073
14081
|
__typename?: 'ContentPlatformIpmComponentGsacButton';
|
|
14074
14082
|
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
14075
|
-
buttonText
|
|
14083
|
+
buttonText?: Maybe<Scalars['String']['output']>;
|
|
14076
14084
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14077
|
-
|
|
14078
|
-
|
|
14079
|
-
|
|
14085
|
+
id: Scalars['String']['output'];
|
|
14086
|
+
requestTypeId?: Maybe<Scalars['String']['output']>;
|
|
14087
|
+
serviceDeskId?: Maybe<Scalars['String']['output']>;
|
|
14088
|
+
ticketSummary?: Maybe<Scalars['String']['output']>;
|
|
14080
14089
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14081
14090
|
};
|
|
14082
14091
|
export declare type ContentPlatformIpmComponentGsacButtonAndIpmComponentLinkButtonUnion = ContentPlatformIpmComponentGsacButton | ContentPlatformIpmComponentLinkButton;
|
|
@@ -14084,9 +14093,10 @@ export declare type ContentPlatformIpmComponentGsacButtonAndIpmComponentRemindMe
|
|
|
14084
14093
|
export declare type ContentPlatformIpmComponentLinkButton = {
|
|
14085
14094
|
__typename?: 'ContentPlatformIpmComponentLinkButton';
|
|
14086
14095
|
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
14087
|
-
buttonText
|
|
14088
|
-
buttonUrl
|
|
14096
|
+
buttonText?: Maybe<Scalars['String']['output']>;
|
|
14097
|
+
buttonUrl?: Maybe<Scalars['String']['output']>;
|
|
14089
14098
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14099
|
+
id: Scalars['String']['output'];
|
|
14090
14100
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14091
14101
|
};
|
|
14092
14102
|
export declare type ContentPlatformIpmComponentRemindMeLater = {
|
|
@@ -14099,16 +14109,17 @@ export declare type ContentPlatformIpmComponentRemindMeLater = {
|
|
|
14099
14109
|
};
|
|
14100
14110
|
export declare type ContentPlatformIpmFlag = {
|
|
14101
14111
|
__typename?: 'ContentPlatformIpmFlag';
|
|
14102
|
-
body
|
|
14112
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
14103
14113
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14104
14114
|
featuredDigitalAsset?: Maybe<ContentPlatformIpmComponentEmbeddedVideoAndIpmCompImageUnion>;
|
|
14105
|
-
|
|
14115
|
+
id: Scalars['String']['output'];
|
|
14116
|
+
ipmNumber?: Maybe<Scalars['String']['output']>;
|
|
14106
14117
|
location?: Maybe<ContentPlatformIpmPositionAndIpmAnchoredUnion>;
|
|
14107
|
-
primaryButton
|
|
14118
|
+
primaryButton?: Maybe<ContentPlatformIpmComponentGsacButtonAndIpmComponentLinkButtonUnion>;
|
|
14108
14119
|
secondaryButton?: Maybe<ContentPlatformIpmComponentGsacButtonAndIpmComponentRemindMeLaterUnion>;
|
|
14109
|
-
title
|
|
14120
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
14110
14121
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14111
|
-
variant
|
|
14122
|
+
variant?: Maybe<Scalars['String']['output']>;
|
|
14112
14123
|
};
|
|
14113
14124
|
export declare type ContentPlatformIpmFlagResultEdge = {
|
|
14114
14125
|
__typename?: 'ContentPlatformIpmFlagResultEdge';
|
|
@@ -14146,7 +14157,8 @@ export declare type ContentPlatformIpmImageModalSearchConnection = {
|
|
|
14146
14157
|
export declare type ContentPlatformIpmPosition = {
|
|
14147
14158
|
__typename?: 'ContentPlatformIpmPosition';
|
|
14148
14159
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14149
|
-
|
|
14160
|
+
id: Scalars['String']['output'];
|
|
14161
|
+
positionOnPage?: Maybe<Scalars['String']['output']>;
|
|
14150
14162
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14151
14163
|
};
|
|
14152
14164
|
export declare type ContentPlatformIpmPositionAndIpmAnchoredUnion = ContentPlatformIpmAnchored | ContentPlatformIpmPosition;
|
|
@@ -14997,6 +15009,17 @@ export declare type CreateCompassComponentPayload = Payload & {
|
|
|
14997
15009
|
errors?: Maybe<Array<MutationError>>;
|
|
14998
15010
|
success: Scalars['Boolean']['output'];
|
|
14999
15011
|
};
|
|
15012
|
+
export declare type CreateCompassComponentTypeInput = {
|
|
15013
|
+
description: Scalars['String']['input'];
|
|
15014
|
+
iconKey: Scalars['String']['input'];
|
|
15015
|
+
name: Scalars['String']['input'];
|
|
15016
|
+
};
|
|
15017
|
+
export declare type CreateCompassComponentTypePayload = {
|
|
15018
|
+
__typename?: 'CreateCompassComponentTypePayload';
|
|
15019
|
+
createdComponentType?: Maybe<CompassComponentTypeObject>;
|
|
15020
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15021
|
+
success: Scalars['Boolean']['output'];
|
|
15022
|
+
};
|
|
15000
15023
|
export declare type CreateCompassFieldInput = {
|
|
15001
15024
|
definition: Scalars['ID']['input'];
|
|
15002
15025
|
value: CompassFieldValueInput;
|
|
@@ -16585,6 +16608,12 @@ export declare type DeleteWebTriggerUrlResponse = MutationResponse & {
|
|
|
16585
16608
|
statusCode: Scalars['Int']['output'];
|
|
16586
16609
|
success: Scalars['Boolean']['output'];
|
|
16587
16610
|
};
|
|
16611
|
+
export declare type DemoMercuryFocusArea = {
|
|
16612
|
+
__typename?: 'DemoMercuryFocusArea';
|
|
16613
|
+
ari: Scalars['String']['output'];
|
|
16614
|
+
id: Scalars['ID']['output'];
|
|
16615
|
+
name: Scalars['String']['output'];
|
|
16616
|
+
};
|
|
16588
16617
|
export declare type DeploymentPipeline = {
|
|
16589
16618
|
__typename?: 'DeploymentPipeline';
|
|
16590
16619
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -18923,8 +18952,10 @@ export declare type ExtensionContextAppAuditLogsArgs = {
|
|
|
18923
18952
|
};
|
|
18924
18953
|
export declare type ExtensionContextExtensionsArgs = {
|
|
18925
18954
|
filter: Array<ExtensionContextsFilter>;
|
|
18955
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
18926
18956
|
};
|
|
18927
18957
|
export declare type ExtensionContextExtensionsByTypeArgs = {
|
|
18958
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
18928
18959
|
principalType?: InputMaybe<PrincipalType>;
|
|
18929
18960
|
type: Scalars['String']['input'];
|
|
18930
18961
|
};
|
|
@@ -18975,7 +19006,7 @@ export declare type ExternalAuthProvider = {
|
|
|
18975
19006
|
key: Scalars['String']['output'];
|
|
18976
19007
|
url: Scalars['URL']['output'];
|
|
18977
19008
|
};
|
|
18978
|
-
export declare type ExternalBranch = {
|
|
19009
|
+
export declare type ExternalBranch = Node & {
|
|
18979
19010
|
__typename?: 'ExternalBranch';
|
|
18980
19011
|
branchId?: Maybe<Scalars['String']['output']>;
|
|
18981
19012
|
createPullRequestUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -18994,7 +19025,7 @@ export declare type ExternalBuildCommitReference = {
|
|
|
18994
19025
|
id?: Maybe<Scalars['String']['output']>;
|
|
18995
19026
|
repositoryUri?: Maybe<Scalars['String']['output']>;
|
|
18996
19027
|
};
|
|
18997
|
-
export declare type ExternalBuildInfo = {
|
|
19028
|
+
export declare type ExternalBuildInfo = Node & {
|
|
18998
19029
|
__typename?: 'ExternalBuildInfo';
|
|
18999
19030
|
buildNumber?: Maybe<Scalars['Long']['output']>;
|
|
19000
19031
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -19039,7 +19070,7 @@ export declare type ExternalChapter = {
|
|
|
19039
19070
|
startTimeInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
19040
19071
|
title?: Maybe<Scalars['String']['output']>;
|
|
19041
19072
|
};
|
|
19042
|
-
export declare type ExternalCommit = {
|
|
19073
|
+
export declare type ExternalCommit = Node & {
|
|
19043
19074
|
__typename?: 'ExternalCommit';
|
|
19044
19075
|
author?: Maybe<ExternalUser>;
|
|
19045
19076
|
commitId?: Maybe<Scalars['String']['output']>;
|
|
@@ -19056,7 +19087,7 @@ export declare type ExternalCommit = {
|
|
|
19056
19087
|
export declare enum ExternalCommitFlags {
|
|
19057
19088
|
MergeCommit = "MERGE_COMMIT"
|
|
19058
19089
|
}
|
|
19059
|
-
export declare type ExternalConversation = {
|
|
19090
|
+
export declare type ExternalConversation = Node & {
|
|
19060
19091
|
__typename?: 'ExternalConversation';
|
|
19061
19092
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19062
19093
|
createdBy?: Maybe<ExternalUser>;
|
|
@@ -19089,7 +19120,7 @@ export declare type ExternalCue = {
|
|
|
19089
19120
|
startTimeInSeconds?: Maybe<Scalars['Float']['output']>;
|
|
19090
19121
|
text?: Maybe<Scalars['String']['output']>;
|
|
19091
19122
|
};
|
|
19092
|
-
export declare type ExternalDeployment = {
|
|
19123
|
+
export declare type ExternalDeployment = Node & {
|
|
19093
19124
|
__typename?: 'ExternalDeployment';
|
|
19094
19125
|
deploymentSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
19095
19126
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -19114,7 +19145,7 @@ export declare enum ExternalDeploymentState {
|
|
|
19114
19145
|
Successful = "SUCCESSFUL",
|
|
19115
19146
|
Unknown = "UNKNOWN"
|
|
19116
19147
|
}
|
|
19117
|
-
export declare type ExternalDesign = {
|
|
19148
|
+
export declare type ExternalDesign = Node & {
|
|
19118
19149
|
__typename?: 'ExternalDesign';
|
|
19119
19150
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19120
19151
|
createdBy?: Maybe<ExternalUser>;
|
|
@@ -19147,7 +19178,7 @@ export declare enum ExternalDesignType {
|
|
|
19147
19178
|
Other = "OTHER",
|
|
19148
19179
|
Prototype = "PROTOTYPE"
|
|
19149
19180
|
}
|
|
19150
|
-
export declare type ExternalDocument = {
|
|
19181
|
+
export declare type ExternalDocument = Node & {
|
|
19151
19182
|
__typename?: 'ExternalDocument';
|
|
19152
19183
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
19153
19184
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
@@ -19227,7 +19258,7 @@ export declare type ExternalExportLink = {
|
|
|
19227
19258
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
19228
19259
|
url?: Maybe<Scalars['String']['output']>;
|
|
19229
19260
|
};
|
|
19230
|
-
export declare type ExternalFeatureFlag = {
|
|
19261
|
+
export declare type ExternalFeatureFlag = Node & {
|
|
19231
19262
|
__typename?: 'ExternalFeatureFlag';
|
|
19232
19263
|
details?: Maybe<Array<Maybe<ExternalFeatureFlagDetail>>>;
|
|
19233
19264
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -19289,7 +19320,7 @@ export declare enum ExternalMembershipType {
|
|
|
19289
19320
|
Public = "PUBLIC",
|
|
19290
19321
|
Shared = "SHARED"
|
|
19291
19322
|
}
|
|
19292
|
-
export declare type ExternalMessage = {
|
|
19323
|
+
export declare type ExternalMessage = Node & {
|
|
19293
19324
|
__typename?: 'ExternalMessage';
|
|
19294
19325
|
attachments?: Maybe<Array<Maybe<ExternalAttachment>>>;
|
|
19295
19326
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -19316,7 +19347,7 @@ export declare type ExternalPipeline = {
|
|
|
19316
19347
|
id?: Maybe<Scalars['String']['output']>;
|
|
19317
19348
|
url?: Maybe<Scalars['String']['output']>;
|
|
19318
19349
|
};
|
|
19319
|
-
export declare type ExternalPullRequest = {
|
|
19350
|
+
export declare type ExternalPullRequest = Node & {
|
|
19320
19351
|
__typename?: 'ExternalPullRequest';
|
|
19321
19352
|
author?: Maybe<ExternalUser>;
|
|
19322
19353
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -19341,7 +19372,7 @@ export declare enum ExternalPullRequestStatus {
|
|
|
19341
19372
|
Open = "OPEN",
|
|
19342
19373
|
Unknown = "UNKNOWN"
|
|
19343
19374
|
}
|
|
19344
|
-
export declare type ExternalRemoteLink = {
|
|
19375
|
+
export declare type ExternalRemoteLink = Node & {
|
|
19345
19376
|
__typename?: 'ExternalRemoteLink';
|
|
19346
19377
|
actionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
19347
19378
|
assignee?: Maybe<ExternalUser>;
|
|
@@ -19367,7 +19398,7 @@ export declare type ExternalRemoteLinkStatus = {
|
|
|
19367
19398
|
appearance?: Maybe<Scalars['String']['output']>;
|
|
19368
19399
|
label?: Maybe<Scalars['String']['output']>;
|
|
19369
19400
|
};
|
|
19370
|
-
export declare type ExternalRepository = {
|
|
19401
|
+
export declare type ExternalRepository = Node & {
|
|
19371
19402
|
__typename?: 'ExternalRepository';
|
|
19372
19403
|
avatarDescription?: Maybe<Scalars['String']['output']>;
|
|
19373
19404
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -19405,7 +19436,7 @@ export declare type ExternalUser = {
|
|
|
19405
19436
|
thirdPartyUser?: Maybe<ThirdPartyUser>;
|
|
19406
19437
|
user?: Maybe<User>;
|
|
19407
19438
|
};
|
|
19408
|
-
export declare type ExternalVideo = {
|
|
19439
|
+
export declare type ExternalVideo = Node & {
|
|
19409
19440
|
__typename?: 'ExternalVideo';
|
|
19410
19441
|
chapters?: Maybe<Array<Maybe<ExternalChapter>>>;
|
|
19411
19442
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
@@ -19427,7 +19458,7 @@ export declare type ExternalVideo = {
|
|
|
19427
19458
|
url?: Maybe<Scalars['String']['output']>;
|
|
19428
19459
|
width?: Maybe<Scalars['Long']['output']>;
|
|
19429
19460
|
};
|
|
19430
|
-
export declare type ExternalVulnerability = {
|
|
19461
|
+
export declare type ExternalVulnerability = Node & {
|
|
19431
19462
|
__typename?: 'ExternalVulnerability';
|
|
19432
19463
|
additionalInfo?: Maybe<ExternalVulnerabilityAdditionalInfo>;
|
|
19433
19464
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -35053,6 +35084,179 @@ export declare type GrowthRecRerankCandidate = {
|
|
|
35053
35084
|
context?: InputMaybe<Scalars['JSON']['input']>;
|
|
35054
35085
|
entityId: Scalars['String']['input'];
|
|
35055
35086
|
};
|
|
35087
|
+
export declare type GrowthUnifiedProfileAnchor = {
|
|
35088
|
+
__typename?: 'GrowthUnifiedProfileAnchor';
|
|
35089
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
35090
|
+
type?: Maybe<GrowthUnifiedProfileAnchorType>;
|
|
35091
|
+
};
|
|
35092
|
+
export declare enum GrowthUnifiedProfileAnchorType {
|
|
35093
|
+
Pfm = "PFM",
|
|
35094
|
+
Seo = "SEO"
|
|
35095
|
+
}
|
|
35096
|
+
export declare type GrowthUnifiedProfileChannel = {
|
|
35097
|
+
__typename?: 'GrowthUnifiedProfileChannel';
|
|
35098
|
+
anchor?: Maybe<GrowthUnifiedProfileAnchor>;
|
|
35099
|
+
name?: Maybe<GrowthUnifiedProfileChannelName>;
|
|
35100
|
+
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
35101
|
+
utm?: Maybe<GrowthUnifiedProfileUtm>;
|
|
35102
|
+
};
|
|
35103
|
+
export declare enum GrowthUnifiedProfileChannelName {
|
|
35104
|
+
Comarketing = "COMARKETING",
|
|
35105
|
+
Direct = "DIRECT",
|
|
35106
|
+
Email = "EMAIL",
|
|
35107
|
+
EngagementEngine = "ENGAGEMENT_ENGINE",
|
|
35108
|
+
InProductReferral = "IN_PRODUCT_REFERRAL",
|
|
35109
|
+
Organic = "ORGANIC",
|
|
35110
|
+
Other = "OTHER",
|
|
35111
|
+
PaidAffiliate = "PAID_AFFILIATE",
|
|
35112
|
+
PaidDisplay = "PAID_DISPLAY",
|
|
35113
|
+
PaidReviewSites = "PAID_REVIEW_SITES",
|
|
35114
|
+
PaidSearchBranded = "PAID_SEARCH_BRANDED",
|
|
35115
|
+
PaidSearchNonBranded = "PAID_SEARCH_NON_BRANDED",
|
|
35116
|
+
PaidSocial = "PAID_SOCIAL",
|
|
35117
|
+
ReferralExternal = "REFERRAL_EXTERNAL",
|
|
35118
|
+
ReferralInternal = "REFERRAL_INTERNAL",
|
|
35119
|
+
SelfReferral = "SELF_REFERRAL",
|
|
35120
|
+
SlackAppDirectory = "SLACK_APP_DIRECTORY",
|
|
35121
|
+
Suppress = "SUPPRESS",
|
|
35122
|
+
UnpaidSocial = "UNPAID_SOCIAL",
|
|
35123
|
+
UnpaidVideo = "UNPAID_VIDEO"
|
|
35124
|
+
}
|
|
35125
|
+
export declare type GrowthUnifiedProfileCompany = {
|
|
35126
|
+
__typename?: 'GrowthUnifiedProfileCompany';
|
|
35127
|
+
accountStatus?: Maybe<GrowthUnifiedProfileEnterpriseAccountStatus>;
|
|
35128
|
+
annualRevenue?: Maybe<Scalars['Int']['output']>;
|
|
35129
|
+
businessName?: Maybe<Scalars['String']['output']>;
|
|
35130
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
35131
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
35132
|
+
employeeStrength?: Maybe<Scalars['Int']['output']>;
|
|
35133
|
+
enterpriseSized?: Maybe<Scalars['Boolean']['output']>;
|
|
35134
|
+
marketCap?: Maybe<Scalars['String']['output']>;
|
|
35135
|
+
revenueCurrency?: Maybe<Scalars['String']['output']>;
|
|
35136
|
+
sector?: Maybe<Scalars['String']['output']>;
|
|
35137
|
+
size?: Maybe<GrowthUnifiedProfileCompanySize>;
|
|
35138
|
+
type?: Maybe<GrowthUnifiedProfileCompanyType>;
|
|
35139
|
+
};
|
|
35140
|
+
export declare enum GrowthUnifiedProfileCompanySize {
|
|
35141
|
+
Large = "LARGE",
|
|
35142
|
+
Medium = "MEDIUM",
|
|
35143
|
+
Small = "SMALL",
|
|
35144
|
+
Unknown = "UNKNOWN"
|
|
35145
|
+
}
|
|
35146
|
+
export declare enum GrowthUnifiedProfileCompanyType {
|
|
35147
|
+
Private = "PRIVATE",
|
|
35148
|
+
Public = "PUBLIC"
|
|
35149
|
+
}
|
|
35150
|
+
export declare type GrowthUnifiedProfileConfluenceOnboardingContext = {
|
|
35151
|
+
__typename?: 'GrowthUnifiedProfileConfluenceOnboardingContext';
|
|
35152
|
+
jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
|
|
35153
|
+
template?: Maybe<Scalars['String']['output']>;
|
|
35154
|
+
};
|
|
35155
|
+
export declare type GrowthUnifiedProfileConfluenceOnboardingContextInput = {
|
|
35156
|
+
jobsToBeDone?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileJtbd>>>;
|
|
35157
|
+
template?: InputMaybe<Scalars['String']['input']>;
|
|
35158
|
+
};
|
|
35159
|
+
export declare type GrowthUnifiedProfileCreateProfileInput = {
|
|
35160
|
+
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
35161
|
+
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
35162
|
+
unifiedProfile: GrowthUnifiedProfileInput;
|
|
35163
|
+
};
|
|
35164
|
+
export declare enum GrowthUnifiedProfileEnrichmentStatus {
|
|
35165
|
+
Complete = "COMPLETE",
|
|
35166
|
+
Error = "ERROR",
|
|
35167
|
+
InProgress = "IN_PROGRESS",
|
|
35168
|
+
Pending = "PENDING"
|
|
35169
|
+
}
|
|
35170
|
+
export declare enum GrowthUnifiedProfileEnterpriseAccountStatus {
|
|
35171
|
+
Bronze = "BRONZE",
|
|
35172
|
+
Gam = "GAM",
|
|
35173
|
+
Gold = "GOLD",
|
|
35174
|
+
Platimun = "PLATIMUN",
|
|
35175
|
+
Silver = "SILVER"
|
|
35176
|
+
}
|
|
35177
|
+
export declare enum GrowthUnifiedProfileEntityType {
|
|
35178
|
+
AjsAnonymousUser = "AJS_ANONYMOUS_USER",
|
|
35179
|
+
AtlassianAccount = "ATLASSIAN_ACCOUNT",
|
|
35180
|
+
Org = "ORG",
|
|
35181
|
+
Site = "SITE"
|
|
35182
|
+
}
|
|
35183
|
+
export declare type GrowthUnifiedProfileInput = {
|
|
35184
|
+
onboardingContext?: InputMaybe<GrowthUnifiedProfileOnboardingContextInput>;
|
|
35185
|
+
};
|
|
35186
|
+
export declare enum GrowthUnifiedProfileJtbd {
|
|
35187
|
+
Budgets = "BUDGETS",
|
|
35188
|
+
CdWrtng = "CD_WRTNG",
|
|
35189
|
+
ImproveWorkflow = "IMPROVE_WORKFLOW",
|
|
35190
|
+
LaunchCampaigns = "LAUNCH_CAMPAIGNS",
|
|
35191
|
+
MarketingContent = "MARKETING_CONTENT",
|
|
35192
|
+
PlanAndManage = "PLAN_AND_MANAGE",
|
|
35193
|
+
ProjectPlanning = "PROJECT_PLANNING",
|
|
35194
|
+
ProjectProgress = "PROJECT_PROGRESS",
|
|
35195
|
+
Stakeholders = "STAKEHOLDERS",
|
|
35196
|
+
StrategiesAndGoals = "STRATEGIES_AND_GOALS",
|
|
35197
|
+
TrackingRprtng = "TRACKING_RPRTNG",
|
|
35198
|
+
UseKanbanBoard = "USE_KANBAN_BOARD"
|
|
35199
|
+
}
|
|
35200
|
+
export declare enum GrowthUnifiedProfileJiraFamiliarity {
|
|
35201
|
+
Experience = "EXPERIENCE",
|
|
35202
|
+
Middle = "MIDDLE",
|
|
35203
|
+
New = "NEW"
|
|
35204
|
+
}
|
|
35205
|
+
export declare type GrowthUnifiedProfileJiraOnboardingContext = {
|
|
35206
|
+
__typename?: 'GrowthUnifiedProfileJiraOnboardingContext';
|
|
35207
|
+
experienceLevel?: Maybe<Scalars['String']['output']>;
|
|
35208
|
+
jiraFamiliarity?: Maybe<GrowthUnifiedProfileJiraFamiliarity>;
|
|
35209
|
+
jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
|
|
35210
|
+
persona?: Maybe<Scalars['String']['output']>;
|
|
35211
|
+
projectName?: Maybe<Scalars['String']['output']>;
|
|
35212
|
+
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
35213
|
+
template?: Maybe<Scalars['String']['output']>;
|
|
35214
|
+
};
|
|
35215
|
+
export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
35216
|
+
experienceLevel?: InputMaybe<Scalars['String']['input']>;
|
|
35217
|
+
jiraFamiliarity?: InputMaybe<GrowthUnifiedProfileJiraFamiliarity>;
|
|
35218
|
+
jobsToBeDone?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileJtbd>>>;
|
|
35219
|
+
persona?: InputMaybe<Scalars['String']['input']>;
|
|
35220
|
+
projectName?: InputMaybe<Scalars['String']['input']>;
|
|
35221
|
+
teamType?: InputMaybe<GrowthUnifiedProfileTeamType>;
|
|
35222
|
+
template?: InputMaybe<Scalars['String']['input']>;
|
|
35223
|
+
};
|
|
35224
|
+
export declare type GrowthUnifiedProfileOnboardingContext = {
|
|
35225
|
+
__typename?: 'GrowthUnifiedProfileOnboardingContext';
|
|
35226
|
+
confluence?: Maybe<GrowthUnifiedProfileConfluenceOnboardingContext>;
|
|
35227
|
+
jira?: Maybe<GrowthUnifiedProfileJiraOnboardingContext>;
|
|
35228
|
+
};
|
|
35229
|
+
export declare type GrowthUnifiedProfileOnboardingContextInput = {
|
|
35230
|
+
confluence?: InputMaybe<GrowthUnifiedProfileConfluenceOnboardingContextInput>;
|
|
35231
|
+
jira?: InputMaybe<GrowthUnifiedProfileJiraOnboardingContextInput>;
|
|
35232
|
+
};
|
|
35233
|
+
export declare type GrowthUnifiedProfileResult = {
|
|
35234
|
+
__typename?: 'GrowthUnifiedProfileResult';
|
|
35235
|
+
channel?: Maybe<GrowthUnifiedProfileChannel>;
|
|
35236
|
+
company?: Maybe<GrowthUnifiedProfileCompany>;
|
|
35237
|
+
enrichmentStatus?: Maybe<GrowthUnifiedProfileEnrichmentStatus>;
|
|
35238
|
+
entityType?: Maybe<GrowthUnifiedProfileEntityType>;
|
|
35239
|
+
onboardingContext?: Maybe<GrowthUnifiedProfileOnboardingContext>;
|
|
35240
|
+
};
|
|
35241
|
+
export declare enum GrowthUnifiedProfileTeamType {
|
|
35242
|
+
CustomerService = "CUSTOMER_SERVICE",
|
|
35243
|
+
Design = "DESIGN",
|
|
35244
|
+
Finance = "FINANCE",
|
|
35245
|
+
HumanResources = "HUMAN_RESOURCES",
|
|
35246
|
+
ItSupport = "IT_SUPPORT",
|
|
35247
|
+
Legal = "LEGAL",
|
|
35248
|
+
Marketing = "MARKETING",
|
|
35249
|
+
Operations = "OPERATIONS",
|
|
35250
|
+
Other = "OTHER",
|
|
35251
|
+
Sales = "SALES",
|
|
35252
|
+
SoftwareDevelopment = "SOFTWARE_DEVELOPMENT"
|
|
35253
|
+
}
|
|
35254
|
+
export declare type GrowthUnifiedProfileUtm = {
|
|
35255
|
+
__typename?: 'GrowthUnifiedProfileUtm';
|
|
35256
|
+
keyword?: Maybe<Scalars['String']['output']>;
|
|
35257
|
+
medium?: Maybe<Scalars['String']['output']>;
|
|
35258
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
35259
|
+
};
|
|
35056
35260
|
export declare type HamsAccountDetails = CommerceAccountDetails & {
|
|
35057
35261
|
__typename?: 'HamsAccountDetails';
|
|
35058
35262
|
invoiceGroup?: Maybe<HamsInvoiceGroup>;
|
|
@@ -36403,6 +36607,7 @@ export declare type HelpLayoutUpdatePayload = Payload & {
|
|
|
36403
36607
|
__typename?: 'HelpLayoutUpdatePayload';
|
|
36404
36608
|
errors?: Maybe<Array<MutationError>>;
|
|
36405
36609
|
layoutId?: Maybe<Scalars['ID']['output']>;
|
|
36610
|
+
reloadOnPublish?: Maybe<Scalars['Boolean']['output']>;
|
|
36406
36611
|
success: Scalars['Boolean']['output'];
|
|
36407
36612
|
};
|
|
36408
36613
|
export declare enum HelpLayoutVerticalAlignment {
|
|
@@ -37922,31 +38127,18 @@ export declare type JiraAffectedServicesFieldInput = {
|
|
|
37922
38127
|
affectedServices: Array<JiraAffectedServicesInput>;
|
|
37923
38128
|
fieldId: Scalars['ID']['input'];
|
|
37924
38129
|
};
|
|
37925
|
-
export declare type
|
|
37926
|
-
|
|
37927
|
-
|
|
37928
|
-
export declare type JiraAgileReleaseTrain = {
|
|
37929
|
-
__typename?: 'JiraAgileReleaseTrain';
|
|
37930
|
-
boards?: Maybe<Array<Maybe<JiraSafeBoard>>>;
|
|
37931
|
-
id: Scalars['ID']['output'];
|
|
37932
|
-
project?: Maybe<JiraProject>;
|
|
37933
|
-
teamBoards?: Maybe<JiraSafeTeamBoardConnection>;
|
|
37934
|
-
};
|
|
37935
|
-
export declare type JiraAgileReleaseTrainTeamBoardsArgs = {
|
|
37936
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
37937
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
37938
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37939
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38130
|
+
export declare type JiraAffectedServicesFieldOperationInput = {
|
|
38131
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
38132
|
+
operation: JiraSingleValueFieldOperations;
|
|
37940
38133
|
};
|
|
37941
|
-
export declare type
|
|
37942
|
-
__typename?: '
|
|
37943
|
-
|
|
37944
|
-
|
|
38134
|
+
export declare type JiraAffectedServicesFieldPayload = Payload & {
|
|
38135
|
+
__typename?: 'JiraAffectedServicesFieldPayload';
|
|
38136
|
+
errors?: Maybe<Array<MutationError>>;
|
|
38137
|
+
field?: Maybe<JiraAffectedServicesField>;
|
|
38138
|
+
success: Scalars['Boolean']['output'];
|
|
37945
38139
|
};
|
|
37946
|
-
export declare type
|
|
37947
|
-
|
|
37948
|
-
cursor: Scalars['String']['output'];
|
|
37949
|
-
node?: Maybe<JiraAgileReleaseTrain>;
|
|
38140
|
+
export declare type JiraAffectedServicesInput = {
|
|
38141
|
+
serviceId: Scalars['ID']['input'];
|
|
37950
38142
|
};
|
|
37951
38143
|
export declare type JiraAiEnablementIssueInput = {
|
|
37952
38144
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -39738,13 +39930,6 @@ export declare type JiraConfigurableNavigationItemInput = {
|
|
|
39738
39930
|
isVisible: Scalars['Boolean']['input'];
|
|
39739
39931
|
menuId: Scalars['String']['input'];
|
|
39740
39932
|
};
|
|
39741
|
-
export declare type JiraConfiguratorIssueTypeScheme = {
|
|
39742
|
-
__typename?: 'JiraConfiguratorIssueTypeScheme';
|
|
39743
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
39744
|
-
id: Scalars['ID']['output'];
|
|
39745
|
-
issueTypes?: Maybe<Array<JiraIssueType>>;
|
|
39746
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
39747
|
-
};
|
|
39748
39933
|
export declare type JiraConfluenceRemoteIssueLink = {
|
|
39749
39934
|
__typename?: 'JiraConfluenceRemoteIssueLink';
|
|
39750
39935
|
href?: Maybe<Scalars['String']['output']>;
|
|
@@ -39765,7 +39950,7 @@ export declare type JiraConnectDateTimeField = JiraIssueField & JiraIssueFieldCo
|
|
|
39765
39950
|
type: Scalars['String']['output'];
|
|
39766
39951
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
39767
39952
|
};
|
|
39768
|
-
export declare type JiraConnectMultipleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
39953
|
+
export declare type JiraConnectMultipleSelectField = JiraHasMultipleSelectedValues & JiraHasSelectableValueOptions & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
39769
39954
|
__typename?: 'JiraConnectMultipleSelectField';
|
|
39770
39955
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
39771
39956
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -39776,8 +39961,10 @@ export declare type JiraConnectMultipleSelectField = JiraIssueField & JiraIssueF
|
|
|
39776
39961
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
39777
39962
|
name: Scalars['String']['output'];
|
|
39778
39963
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
39964
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
39779
39965
|
selectedFieldOptions?: Maybe<Array<Maybe<JiraOption>>>;
|
|
39780
39966
|
selectedOptions?: Maybe<JiraOptionConnection>;
|
|
39967
|
+
selectedValues?: Maybe<JiraSelectableValueConnection>;
|
|
39781
39968
|
type: Scalars['String']['output'];
|
|
39782
39969
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
39783
39970
|
};
|
|
@@ -39788,12 +39975,27 @@ export declare type JiraConnectMultipleSelectFieldFieldOptionsArgs = {
|
|
|
39788
39975
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
39789
39976
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
39790
39977
|
};
|
|
39978
|
+
export declare type JiraConnectMultipleSelectFieldSelectableValueOptionsArgs = {
|
|
39979
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39980
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
39981
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
39982
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39983
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
39984
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
39985
|
+
};
|
|
39791
39986
|
export declare type JiraConnectMultipleSelectFieldSelectedOptionsArgs = {
|
|
39792
39987
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39793
39988
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
39794
39989
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39795
39990
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
39796
39991
|
};
|
|
39992
|
+
export declare type JiraConnectMultipleSelectFieldSelectedValuesArgs = {
|
|
39993
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39994
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
39995
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39996
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
39997
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
39998
|
+
};
|
|
39797
39999
|
export declare type JiraConnectNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
39798
40000
|
__typename?: 'JiraConnectNumberField';
|
|
39799
40001
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -39913,19 +40115,6 @@ export declare type JiraContainerNavigationQueryInput = {
|
|
|
39913
40115
|
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
39914
40116
|
};
|
|
39915
40117
|
export declare type JiraContainerNavigationResult = JiraContainerNavigation | QueryError;
|
|
39916
|
-
export declare type JiraCreateAgileReleaseTrainInput = {
|
|
39917
|
-
cloudId: Scalars['ID']['input'];
|
|
39918
|
-
configurationId?: InputMaybe<Scalars['ID']['input']>;
|
|
39919
|
-
largeSolutionProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
39920
|
-
projectDetails: JiraCreateScaledConfiguratorProjectInput;
|
|
39921
|
-
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
39922
|
-
};
|
|
39923
|
-
export declare type JiraCreateAgileReleaseTrainPayload = Payload & {
|
|
39924
|
-
__typename?: 'JiraCreateAgileReleaseTrainPayload';
|
|
39925
|
-
agileReleaseTrain?: Maybe<JiraAgileReleaseTrain>;
|
|
39926
|
-
errors?: Maybe<Array<MutationError>>;
|
|
39927
|
-
success: Scalars['Boolean']['output'];
|
|
39928
|
-
};
|
|
39929
40118
|
export declare type JiraCreateAppNavigationItemInput = {
|
|
39930
40119
|
appId: Scalars['ID']['input'];
|
|
39931
40120
|
scopeId: Scalars['ID']['input'];
|
|
@@ -40019,32 +40208,12 @@ export declare type JiraCreateFormattingRulePayload = Payload & {
|
|
|
40019
40208
|
errors?: Maybe<Array<MutationError>>;
|
|
40020
40209
|
success: Scalars['Boolean']['output'];
|
|
40021
40210
|
};
|
|
40022
|
-
export declare type JiraCreateLargeSolutionInput = {
|
|
40023
|
-
cloudId: Scalars['ID']['input'];
|
|
40024
|
-
configurationId?: InputMaybe<Scalars['ID']['input']>;
|
|
40025
|
-
projectDetails: JiraCreateScaledConfiguratorProjectInput;
|
|
40026
|
-
};
|
|
40027
|
-
export declare type JiraCreateLargeSolutionPayload = Payload & {
|
|
40028
|
-
__typename?: 'JiraCreateLargeSolutionPayload';
|
|
40029
|
-
errors?: Maybe<Array<MutationError>>;
|
|
40030
|
-
largeSolution?: Maybe<JiraLargeSolution>;
|
|
40031
|
-
success: Scalars['Boolean']['output'];
|
|
40032
|
-
};
|
|
40033
40211
|
export declare type JiraCreateNavigationItemPayload = Payload & {
|
|
40034
40212
|
__typename?: 'JiraCreateNavigationItemPayload';
|
|
40035
40213
|
errors?: Maybe<Array<MutationError>>;
|
|
40036
40214
|
navigationItem?: Maybe<JiraNavigationItem>;
|
|
40037
40215
|
success: Scalars['Boolean']['output'];
|
|
40038
40216
|
};
|
|
40039
|
-
export declare type JiraCreatePlanInput = {
|
|
40040
|
-
cloudId: Scalars['ID']['input'];
|
|
40041
|
-
};
|
|
40042
|
-
export declare type JiraCreatePlanPayload = Payload & {
|
|
40043
|
-
__typename?: 'JiraCreatePlanPayload';
|
|
40044
|
-
errors?: Maybe<Array<MutationError>>;
|
|
40045
|
-
plan?: Maybe<JiraPlan>;
|
|
40046
|
-
success: Scalars['Boolean']['output'];
|
|
40047
|
-
};
|
|
40048
40217
|
export declare type JiraCreateProjectCleanupRecommendationsPayload = Payload & {
|
|
40049
40218
|
__typename?: 'JiraCreateProjectCleanupRecommendationsPayload';
|
|
40050
40219
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -40070,19 +40239,6 @@ export declare type JiraCreateReleaseNoteConfluencePagePayload = Payload & {
|
|
|
40070
40239
|
success: Scalars['Boolean']['output'];
|
|
40071
40240
|
version?: Maybe<JiraVersion>;
|
|
40072
40241
|
};
|
|
40073
|
-
export declare type JiraCreateSafeGlobalDataInput = {
|
|
40074
|
-
cloudId: Scalars['ID']['input'];
|
|
40075
|
-
};
|
|
40076
|
-
export declare type JiraCreateSafeGlobalDataPayload = Payload & {
|
|
40077
|
-
__typename?: 'JiraCreateSafeGlobalDataPayload';
|
|
40078
|
-
configuration?: Maybe<JiraSafeConfiguration>;
|
|
40079
|
-
errors?: Maybe<Array<MutationError>>;
|
|
40080
|
-
success: Scalars['Boolean']['output'];
|
|
40081
|
-
};
|
|
40082
|
-
export declare type JiraCreateScaledConfiguratorProjectInput = {
|
|
40083
|
-
projectKey: Scalars['String']['input'];
|
|
40084
|
-
projectName: Scalars['String']['input'];
|
|
40085
|
-
};
|
|
40086
40242
|
export declare type JiraCreateShortcutInput = {
|
|
40087
40243
|
projectId: Scalars['ID']['input'];
|
|
40088
40244
|
shortcutData: JiraShortcutDataInput;
|
|
@@ -41123,6 +41279,7 @@ export declare type JiraForgeExtension = {
|
|
|
41123
41279
|
appVersion: Scalars['String']['output'];
|
|
41124
41280
|
consentUrl?: Maybe<Scalars['String']['output']>;
|
|
41125
41281
|
egress: Array<Maybe<JiraForgeAppEgressDeclaration>>;
|
|
41282
|
+
environmentId: Scalars['String']['output'];
|
|
41126
41283
|
environmentKey: Scalars['String']['output'];
|
|
41127
41284
|
environmentType: JiraForgeEnvironmentType;
|
|
41128
41285
|
hiddenBy?: Maybe<JiraVisibilityControlMechanism>;
|
|
@@ -41137,6 +41294,7 @@ export declare type JiraForgeExtensionLicense = {
|
|
|
41137
41294
|
__typename?: 'JiraForgeExtensionLicense';
|
|
41138
41295
|
active: Scalars['Boolean']['output'];
|
|
41139
41296
|
billingPeriod?: Maybe<Scalars['String']['output']>;
|
|
41297
|
+
capabilitySet?: Maybe<Scalars['String']['output']>;
|
|
41140
41298
|
ccpEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
41141
41299
|
ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
|
|
41142
41300
|
isEvaluation?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -41241,7 +41399,7 @@ export declare type JiraForgeQuery = {
|
|
|
41241
41399
|
extensions?: Maybe<Array<JiraForgeExtension>>;
|
|
41242
41400
|
};
|
|
41243
41401
|
export declare type JiraForgeQueryExtensionsArgs = {
|
|
41244
|
-
cloudId
|
|
41402
|
+
cloudId: Scalars['ID']['input'];
|
|
41245
41403
|
context?: InputMaybe<JiraExtensionRenderingContextInput>;
|
|
41246
41404
|
includeHidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41247
41405
|
types: Array<Scalars['String']['input']>;
|
|
@@ -41422,6 +41580,8 @@ export declare type JiraFormattingSingleValueOperandInput = {
|
|
|
41422
41580
|
value: Scalars['String']['input'];
|
|
41423
41581
|
};
|
|
41424
41582
|
export declare enum JiraFormattingSingleValueOperator {
|
|
41583
|
+
Contains = "CONTAINS",
|
|
41584
|
+
DoesNotContain = "DOES_NOT_CONTAIN",
|
|
41425
41585
|
DoesNotEqual = "DOES_NOT_EQUAL",
|
|
41426
41586
|
Equals = "EQUALS",
|
|
41427
41587
|
GreaterThan = "GREATER_THAN",
|
|
@@ -43644,29 +43804,6 @@ export declare type JiraLabelsFieldPayload = Payload & {
|
|
|
43644
43804
|
export declare type JiraLabelsInput = {
|
|
43645
43805
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
43646
43806
|
};
|
|
43647
|
-
export declare type JiraLargeSolution = {
|
|
43648
|
-
__typename?: 'JiraLargeSolution';
|
|
43649
|
-
agileReleaseTrains?: Maybe<Array<Maybe<JiraAgileReleaseTrain>>>;
|
|
43650
|
-
id: Scalars['ID']['output'];
|
|
43651
|
-
project?: Maybe<JiraProject>;
|
|
43652
|
-
releaseTrains?: Maybe<JiraAgileReleaseTrainConnection>;
|
|
43653
|
-
};
|
|
43654
|
-
export declare type JiraLargeSolutionReleaseTrainsArgs = {
|
|
43655
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
43656
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
43657
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43658
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
43659
|
-
};
|
|
43660
|
-
export declare type JiraLargeSolutionConnection = {
|
|
43661
|
-
__typename?: 'JiraLargeSolutionConnection';
|
|
43662
|
-
edges?: Maybe<Array<Maybe<JiraLargeSolutionEdge>>>;
|
|
43663
|
-
pageInfo: PageInfo;
|
|
43664
|
-
};
|
|
43665
|
-
export declare type JiraLargeSolutionEdge = {
|
|
43666
|
-
__typename?: 'JiraLargeSolutionEdge';
|
|
43667
|
-
cursor: Scalars['String']['output'];
|
|
43668
|
-
node?: Maybe<JiraLargeSolution>;
|
|
43669
|
-
};
|
|
43670
43807
|
export declare type JiraLegacyTeamFieldOperationInput = {
|
|
43671
43808
|
operation: JiraSingleValueFieldOperations;
|
|
43672
43809
|
teamId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -44060,7 +44197,6 @@ export declare type JiraMutation = {
|
|
|
44060
44197
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
44061
44198
|
attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
|
|
44062
44199
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
44063
|
-
createAgileReleaseTrain?: Maybe<JiraCreateAgileReleaseTrainPayload>;
|
|
44064
44200
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
44065
44201
|
createAppNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
44066
44202
|
createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
|
|
@@ -44075,12 +44211,9 @@ export declare type JiraMutation = {
|
|
|
44075
44211
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
44076
44212
|
createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
44077
44213
|
createJwmOverview?: Maybe<JiraWorkManagementGiraCreateOverviewPayload>;
|
|
44078
|
-
createLargeSolution?: Maybe<JiraCreateLargeSolutionPayload>;
|
|
44079
44214
|
createProjectCleanupRecommendations?: Maybe<JiraCreateProjectCleanupRecommendationsPayload>;
|
|
44080
44215
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
44081
44216
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
44082
|
-
createSafeGlobalData?: Maybe<JiraCreateSafeGlobalDataPayload>;
|
|
44083
|
-
createSafePlan?: Maybe<JiraCreatePlanPayload>;
|
|
44084
44217
|
createSimpleNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
44085
44218
|
deleteCustomBackground?: Maybe<JiraDeleteCustomBackgroundPayload>;
|
|
44086
44219
|
deleteFormattingRule?: Maybe<JiraDeleteFormattingRulePayload>;
|
|
@@ -44136,6 +44269,7 @@ export declare type JiraMutation = {
|
|
|
44136
44269
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
44137
44270
|
unlinkIssuesFromIncident?: Maybe<JiraUnlinkIssuesFromIncidentMutationPayload>;
|
|
44138
44271
|
updateActiveBackground?: Maybe<JiraUpdateActiveBackgroundPayload>;
|
|
44272
|
+
updateAffectedServicesField?: Maybe<JiraAffectedServicesFieldPayload>;
|
|
44139
44273
|
updateAttachmentField?: Maybe<JiraAttachmentFieldPayload>;
|
|
44140
44274
|
updateCascadingSelectField?: Maybe<JiraCascadingSelectFieldPayload>;
|
|
44141
44275
|
updateCheckboxesField?: Maybe<JiraCheckboxesFieldPayload>;
|
|
@@ -44238,9 +44372,6 @@ export declare type JiraMutationAttributeUnsplashImageArgs = {
|
|
|
44238
44372
|
export declare type JiraMutationBulkCreateRequestTypeFromTemplateArgs = {
|
|
44239
44373
|
input: JiraServiceManagementBulkCreateRequestTypeFromTemplateInput;
|
|
44240
44374
|
};
|
|
44241
|
-
export declare type JiraMutationCreateAgileReleaseTrainArgs = {
|
|
44242
|
-
input: JiraCreateAgileReleaseTrainInput;
|
|
44243
|
-
};
|
|
44244
44375
|
export declare type JiraMutationCreateAndAssociateWorkflowFromJsmTemplateArgs = {
|
|
44245
44376
|
input: JiraServiceManagementCreateAndAssociateWorkflowFromTemplateInput;
|
|
44246
44377
|
};
|
|
@@ -44292,9 +44423,6 @@ export declare type JiraMutationCreateJwmOverviewArgs = {
|
|
|
44292
44423
|
cloudId: Scalars['ID']['input'];
|
|
44293
44424
|
input: JiraWorkManagementCreateOverviewInput;
|
|
44294
44425
|
};
|
|
44295
|
-
export declare type JiraMutationCreateLargeSolutionArgs = {
|
|
44296
|
-
input: JiraCreateLargeSolutionInput;
|
|
44297
|
-
};
|
|
44298
44426
|
export declare type JiraMutationCreateProjectCleanupRecommendationsArgs = {
|
|
44299
44427
|
cloudId: Scalars['ID']['input'];
|
|
44300
44428
|
};
|
|
@@ -44304,12 +44432,6 @@ export declare type JiraMutationCreateProjectShortcutArgs = {
|
|
|
44304
44432
|
export declare type JiraMutationCreateReleaseNoteConfluencePageArgs = {
|
|
44305
44433
|
input: JiraCreateReleaseNoteConfluencePageInput;
|
|
44306
44434
|
};
|
|
44307
|
-
export declare type JiraMutationCreateSafeGlobalDataArgs = {
|
|
44308
|
-
input: JiraCreateSafeGlobalDataInput;
|
|
44309
|
-
};
|
|
44310
|
-
export declare type JiraMutationCreateSafePlanArgs = {
|
|
44311
|
-
input: JiraCreatePlanInput;
|
|
44312
|
-
};
|
|
44313
44435
|
export declare type JiraMutationCreateSimpleNavigationItemArgs = {
|
|
44314
44436
|
input: JiraCreateSimpleNavigationItemInput;
|
|
44315
44437
|
};
|
|
@@ -44487,6 +44609,9 @@ export declare type JiraMutationUnlinkIssuesFromIncidentArgs = {
|
|
|
44487
44609
|
export declare type JiraMutationUpdateActiveBackgroundArgs = {
|
|
44488
44610
|
input: JiraUpdateBackgroundInput;
|
|
44489
44611
|
};
|
|
44612
|
+
export declare type JiraMutationUpdateAffectedServicesFieldArgs = {
|
|
44613
|
+
input: JiraUpdateAffectedServicesFieldInput;
|
|
44614
|
+
};
|
|
44490
44615
|
export declare type JiraMutationUpdateAttachmentFieldArgs = {
|
|
44491
44616
|
input: JiraUpdateAttachmentFieldInput;
|
|
44492
44617
|
};
|
|
@@ -46545,8 +46670,6 @@ export declare type JiraQuery = {
|
|
|
46545
46670
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
46546
46671
|
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
46547
46672
|
savedFilters?: Maybe<JiraFilterConnection>;
|
|
46548
|
-
scaledConfiguration?: Maybe<JiraSafeConfiguration>;
|
|
46549
|
-
scaledConfigurationPermissions?: Maybe<JiraScaledConfigurationPermissions>;
|
|
46550
46673
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
46551
46674
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
46552
46675
|
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
@@ -47286,13 +47409,6 @@ export declare type JiraQuerySavedFiltersArgs = {
|
|
|
47286
47409
|
keyword: Scalars['String']['input'];
|
|
47287
47410
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47288
47411
|
};
|
|
47289
|
-
export declare type JiraQueryScaledConfigurationArgs = {
|
|
47290
|
-
cloudId: Scalars['ID']['input'];
|
|
47291
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
47292
|
-
};
|
|
47293
|
-
export declare type JiraQueryScaledConfigurationPermissionsArgs = {
|
|
47294
|
-
cloudId: Scalars['ID']['input'];
|
|
47295
|
-
};
|
|
47296
47412
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
47297
47413
|
issueId: Scalars['ID']['input'];
|
|
47298
47414
|
};
|
|
@@ -47952,68 +48068,6 @@ export declare type JiraRoleEdge = {
|
|
|
47952
48068
|
cursor: Scalars['String']['output'];
|
|
47953
48069
|
node?: Maybe<JiraRole>;
|
|
47954
48070
|
};
|
|
47955
|
-
export declare type JiraSafeBoard = {
|
|
47956
|
-
__typename?: 'JiraSafeBoard';
|
|
47957
|
-
boardId?: Maybe<Scalars['ID']['output']>;
|
|
47958
|
-
boardName?: Maybe<Scalars['String']['output']>;
|
|
47959
|
-
id: Scalars['ID']['output'];
|
|
47960
|
-
team?: Maybe<JiraTeamView>;
|
|
47961
|
-
};
|
|
47962
|
-
export declare type JiraSafeConfiguration = {
|
|
47963
|
-
__typename?: 'JiraSafeConfiguration';
|
|
47964
|
-
agileReleaseTrains?: Maybe<JiraAgileReleaseTrainConnection>;
|
|
47965
|
-
artIssueTypeScheme?: Maybe<JiraConfiguratorIssueTypeScheme>;
|
|
47966
|
-
capability?: Maybe<JiraIssueType>;
|
|
47967
|
-
feature?: Maybe<JiraIssueType>;
|
|
47968
|
-
id: Scalars['ID']['output'];
|
|
47969
|
-
jobSize?: Maybe<JiraNumberField>;
|
|
47970
|
-
largeSolutionIssueTypeScheme?: Maybe<JiraConfiguratorIssueTypeScheme>;
|
|
47971
|
-
largeSolutions?: Maybe<JiraLargeSolutionConnection>;
|
|
47972
|
-
plan?: Maybe<JiraPlan>;
|
|
47973
|
-
riskReduction?: Maybe<JiraNumberField>;
|
|
47974
|
-
timeCriticality?: Maybe<JiraNumberField>;
|
|
47975
|
-
userBusinessValue?: Maybe<JiraNumberField>;
|
|
47976
|
-
weightedShortestJobFirst?: Maybe<JiraNumberField>;
|
|
47977
|
-
};
|
|
47978
|
-
export declare type JiraSafeConfigurationAgileReleaseTrainsArgs = {
|
|
47979
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
47980
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
47981
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47982
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47983
|
-
};
|
|
47984
|
-
export declare type JiraSafeConfigurationLargeSolutionsArgs = {
|
|
47985
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
47986
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
47987
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47988
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47989
|
-
};
|
|
47990
|
-
export declare type JiraSafeTeamBoard = {
|
|
47991
|
-
__typename?: 'JiraSafeTeamBoard';
|
|
47992
|
-
boardId?: Maybe<Scalars['ID']['output']>;
|
|
47993
|
-
boardName?: Maybe<Scalars['String']['output']>;
|
|
47994
|
-
id: Scalars['ID']['output'];
|
|
47995
|
-
team?: Maybe<JiraTeamView>;
|
|
47996
|
-
};
|
|
47997
|
-
export declare type JiraSafeTeamBoardConnection = {
|
|
47998
|
-
__typename?: 'JiraSafeTeamBoardConnection';
|
|
47999
|
-
edges?: Maybe<Array<Maybe<JiraSafeTeamBoardEdge>>>;
|
|
48000
|
-
pageInfo: PageInfo;
|
|
48001
|
-
};
|
|
48002
|
-
export declare type JiraSafeTeamBoardEdge = {
|
|
48003
|
-
__typename?: 'JiraSafeTeamBoardEdge';
|
|
48004
|
-
cursor: Scalars['String']['output'];
|
|
48005
|
-
node?: Maybe<JiraSafeTeamBoard>;
|
|
48006
|
-
};
|
|
48007
|
-
export declare enum JiraScaledConfigurationPermission {
|
|
48008
|
-
Edit = "EDIT",
|
|
48009
|
-
None = "NONE",
|
|
48010
|
-
View = "VIEW"
|
|
48011
|
-
}
|
|
48012
|
-
export declare type JiraScaledConfigurationPermissions = {
|
|
48013
|
-
__typename?: 'JiraScaledConfigurationPermissions';
|
|
48014
|
-
hasEntitlements?: Maybe<Scalars['Boolean']['output']>;
|
|
48015
|
-
userPermissions?: Maybe<JiraScaledConfigurationPermission>;
|
|
48016
|
-
};
|
|
48017
48071
|
export declare type JiraScenario = Node & {
|
|
48018
48072
|
__typename?: 'JiraScenario';
|
|
48019
48073
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -48040,8 +48094,16 @@ export declare type JiraScenarioIssueLikePlanScenarioValuesArgs = {
|
|
|
48040
48094
|
export declare type JiraScenarioIssueLikeConnection = {
|
|
48041
48095
|
__typename?: 'JiraScenarioIssueLikeConnection';
|
|
48042
48096
|
edges?: Maybe<Array<Maybe<JiraScenarioIssueLikeEdge>>>;
|
|
48097
|
+
isCappingIssueSearchResult?: Maybe<Scalars['Boolean']['output']>;
|
|
48098
|
+
issueNavigatorPageInfo?: Maybe<JiraIssueNavigatorPageInfo>;
|
|
48099
|
+
pageCursors?: Maybe<JiraPageCursors>;
|
|
48043
48100
|
pageInfo: PageInfo;
|
|
48044
48101
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
48102
|
+
totalIssueSearchResultCount?: Maybe<Scalars['Int']['output']>;
|
|
48103
|
+
};
|
|
48104
|
+
export declare type JiraScenarioIssueLikeConnectionPageCursorsArgs = {
|
|
48105
|
+
maxCursors: Scalars['Int']['input'];
|
|
48106
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
48045
48107
|
};
|
|
48046
48108
|
export declare type JiraScenarioIssueLikeEdge = {
|
|
48047
48109
|
__typename?: 'JiraScenarioIssueLikeEdge';
|
|
@@ -50206,6 +50268,10 @@ export declare type JiraUpdateActiveBackgroundPayload = Payload & {
|
|
|
50206
50268
|
errors?: Maybe<Array<MutationError>>;
|
|
50207
50269
|
success: Scalars['Boolean']['output'];
|
|
50208
50270
|
};
|
|
50271
|
+
export declare type JiraUpdateAffectedServicesFieldInput = {
|
|
50272
|
+
id: Scalars['ID']['input'];
|
|
50273
|
+
operation: JiraAffectedServicesFieldOperationInput;
|
|
50274
|
+
};
|
|
50209
50275
|
export declare type JiraUpdateAttachmentFieldInput = {
|
|
50210
50276
|
id: Scalars['ID']['input'];
|
|
50211
50277
|
operation: JiraAttachmentFieldOperationInput;
|
|
@@ -52972,7 +53038,8 @@ export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
|
52972
53038
|
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
52973
53039
|
NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
|
|
52974
53040
|
None = "NONE",
|
|
52975
|
-
Person = "PERSON"
|
|
53041
|
+
Person = "PERSON",
|
|
53042
|
+
Team = "TEAM"
|
|
52976
53043
|
}
|
|
52977
53044
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
52978
53045
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
@@ -53465,6 +53532,7 @@ export declare type MarketplaceConsoleAppSoftware = {
|
|
|
53465
53532
|
export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
53466
53533
|
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
53467
53534
|
appSoftwareId: Scalars['ID']['output'];
|
|
53535
|
+
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
53468
53536
|
hosting: MarketplaceConsoleHosting;
|
|
53469
53537
|
isLatestVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
53470
53538
|
};
|
|
@@ -53481,6 +53549,7 @@ export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
|
53481
53549
|
sourceCodeLicense?: Maybe<MarketplaceConsoleSourceCodeLicense>;
|
|
53482
53550
|
state: MarketplaceConsoleAppSoftwareVersionState;
|
|
53483
53551
|
supportedPaymentModel: MarketplaceConsolePaymentModel;
|
|
53552
|
+
versionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
53484
53553
|
versionNumber: Scalars['String']['output'];
|
|
53485
53554
|
};
|
|
53486
53555
|
export declare type MarketplaceConsoleAppSoftwareVersionChangelog = {
|
|
@@ -53549,10 +53618,20 @@ export declare enum MarketplaceConsoleAppSoftwareVersionState {
|
|
|
53549
53618
|
Rejected = "REJECTED",
|
|
53550
53619
|
Submitted = "SUBMITTED"
|
|
53551
53620
|
}
|
|
53621
|
+
export declare type MarketplaceConsoleAppSoftwareVersions = {
|
|
53622
|
+
__typename?: 'MarketplaceConsoleAppSoftwareVersions';
|
|
53623
|
+
appSoftwareId: Scalars['ID']['output'];
|
|
53624
|
+
versions: Array<MarketplaceConsoleAppSoftwareVersion>;
|
|
53625
|
+
};
|
|
53552
53626
|
export declare type MarketplaceConsoleAppSoftwares = {
|
|
53553
53627
|
__typename?: 'MarketplaceConsoleAppSoftwares';
|
|
53554
53628
|
appSoftwares?: Maybe<Array<MarketplaceConsoleAppSoftwareShort>>;
|
|
53555
53629
|
};
|
|
53630
|
+
export declare type MarketplaceConsoleAppVersionDeleteRequestInput = {
|
|
53631
|
+
appId?: InputMaybe<Scalars['ID']['input']>;
|
|
53632
|
+
appSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
53633
|
+
buildNumber: Scalars['ID']['input'];
|
|
53634
|
+
};
|
|
53556
53635
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
53557
53636
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
53558
53637
|
descriptorId: Scalars['ID']['output'];
|
|
@@ -53640,17 +53719,21 @@ export declare type MarketplaceConsoleEdition = {
|
|
|
53640
53719
|
features?: Maybe<Array<Maybe<MarketplaceConsoleFeature>>>;
|
|
53641
53720
|
id: Scalars['ID']['output'];
|
|
53642
53721
|
isDefault: Scalars['Boolean']['output'];
|
|
53643
|
-
name
|
|
53722
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
53644
53723
|
pricingPlan: MarketplaceConsolePricingPlan;
|
|
53645
|
-
type:
|
|
53724
|
+
type: MarketplaceConsoleEditionType;
|
|
53646
53725
|
};
|
|
53647
53726
|
export declare type MarketplaceConsoleEditionCreate = {
|
|
53648
53727
|
features?: InputMaybe<Array<InputMaybe<MarketplaceConsoleFeatureCreate>>>;
|
|
53649
53728
|
isDefault: Scalars['Boolean']['input'];
|
|
53650
53729
|
name: Scalars['String']['input'];
|
|
53651
53730
|
pricingPlan: MarketplaceConsolePricingPlanModify;
|
|
53652
|
-
type:
|
|
53731
|
+
type: MarketplaceConsoleEditionType;
|
|
53653
53732
|
};
|
|
53733
|
+
export declare enum MarketplaceConsoleEditionType {
|
|
53734
|
+
Advanced = "ADVANCED",
|
|
53735
|
+
Standard = "STANDARD"
|
|
53736
|
+
}
|
|
53654
53737
|
export declare type MarketplaceConsoleEditionUpdate = {
|
|
53655
53738
|
features?: InputMaybe<Array<InputMaybe<MarketplaceConsoleFeatureUpdate>>>;
|
|
53656
53739
|
id: Scalars['ID']['input'];
|
|
@@ -53676,6 +53759,10 @@ export declare enum MarketplaceConsoleEditionsActivationStatus {
|
|
|
53676
53759
|
Pending = "PENDING",
|
|
53677
53760
|
Rejected = "REJECTED"
|
|
53678
53761
|
}
|
|
53762
|
+
export declare type MarketplaceConsoleEditionsInput = {
|
|
53763
|
+
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
53764
|
+
productId?: InputMaybe<Scalars['String']['input']>;
|
|
53765
|
+
};
|
|
53679
53766
|
export declare type MarketplaceConsoleError = {
|
|
53680
53767
|
message: Scalars['String']['output'];
|
|
53681
53768
|
};
|
|
@@ -53741,7 +53828,8 @@ export declare type MarketplaceConsoleLegacyMongoAppDetails = {
|
|
|
53741
53828
|
__typename?: 'MarketplaceConsoleLegacyMongoAppDetails';
|
|
53742
53829
|
hiddenIn?: Maybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
53743
53830
|
hostingVisibility?: Maybe<MarketplaceConsoleLegacyMongoHostingVisibility>;
|
|
53744
|
-
|
|
53831
|
+
issueKey?: Maybe<Scalars['String']['output']>;
|
|
53832
|
+
rejectionReason?: Maybe<Scalars['String']['output']>;
|
|
53745
53833
|
status: MarketplaceConsoleLegacyMongoStatus;
|
|
53746
53834
|
statusAfterApproval?: Maybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
53747
53835
|
};
|
|
@@ -53786,26 +53874,30 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
53786
53874
|
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
53787
53875
|
createEditions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53788
53876
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
53877
|
+
deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
53789
53878
|
updateEdition?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53790
53879
|
};
|
|
53791
53880
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
53792
53881
|
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
53793
|
-
product:
|
|
53882
|
+
product: MarketplaceConsoleEditionsInput;
|
|
53794
53883
|
};
|
|
53795
53884
|
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
53796
53885
|
appSoftwareId: Scalars['String']['input'];
|
|
53797
53886
|
};
|
|
53798
53887
|
export declare type MarketplaceConsoleMutationApiCreateEditionsArgs = {
|
|
53799
53888
|
editions: Array<MarketplaceConsoleEditionCreate>;
|
|
53800
|
-
product:
|
|
53889
|
+
product: MarketplaceConsoleEditionsInput;
|
|
53801
53890
|
};
|
|
53802
53891
|
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
53803
53892
|
appSoftwareId: Scalars['String']['input'];
|
|
53804
53893
|
token: Scalars['String']['input'];
|
|
53805
53894
|
};
|
|
53895
|
+
export declare type MarketplaceConsoleMutationApiDeleteAppVersionArgs = {
|
|
53896
|
+
deleteVersion: MarketplaceConsoleAppVersionDeleteRequestInput;
|
|
53897
|
+
};
|
|
53806
53898
|
export declare type MarketplaceConsoleMutationApiUpdateEditionArgs = {
|
|
53807
53899
|
edition: MarketplaceConsoleEditionUpdate;
|
|
53808
|
-
product:
|
|
53900
|
+
product: MarketplaceConsoleEditionsInput;
|
|
53809
53901
|
};
|
|
53810
53902
|
export declare type MarketplaceConsoleMutationVoidResponse = {
|
|
53811
53903
|
__typename?: 'MarketplaceConsoleMutationVoidResponse';
|
|
@@ -53867,46 +53959,39 @@ export declare type MarketplaceConsolePluginsFrameworkAttributes = {
|
|
|
53867
53959
|
__typename?: 'MarketplaceConsolePluginsFrameworkAttributes';
|
|
53868
53960
|
artifactId: Scalars['ID']['output'];
|
|
53869
53961
|
};
|
|
53962
|
+
export declare enum MarketplaceConsolePricingCurrency {
|
|
53963
|
+
Jpy = "JPY",
|
|
53964
|
+
Usd = "USD"
|
|
53965
|
+
}
|
|
53870
53966
|
export declare type MarketplaceConsolePricingItem = {
|
|
53871
53967
|
__typename?: 'MarketplaceConsolePricingItem';
|
|
53872
53968
|
amount: Scalars['Float']['output'];
|
|
53873
|
-
|
|
53874
|
-
|
|
53875
|
-
editionId: Scalars['String']['output'];
|
|
53876
|
-
editionType: Scalars['String']['output'];
|
|
53877
|
-
licenseType: Scalars['String']['output'];
|
|
53878
|
-
localCurrency: Scalars['String']['output'];
|
|
53879
|
-
localCurrencyAmount: Scalars['Float']['output'];
|
|
53880
|
-
localCurrencyRenewalAmount: Scalars['Float']['output'];
|
|
53881
|
-
monthsValid: Scalars['Int']['output'];
|
|
53882
|
-
renewalAmount: Scalars['Float']['output'];
|
|
53883
|
-
unitCount: Scalars['Int']['output'];
|
|
53969
|
+
ceiling: Scalars['Float']['output'];
|
|
53970
|
+
floor: Scalars['Float']['output'];
|
|
53884
53971
|
};
|
|
53885
53972
|
export declare type MarketplaceConsolePricingItemModify = {
|
|
53886
53973
|
amount: Scalars['Float']['input'];
|
|
53887
|
-
|
|
53888
|
-
|
|
53889
|
-
editionId: Scalars['String']['input'];
|
|
53890
|
-
editionType: Scalars['String']['input'];
|
|
53891
|
-
licenseType: Scalars['String']['input'];
|
|
53892
|
-
localCurrency: Scalars['String']['input'];
|
|
53893
|
-
localCurrencyAmount: Scalars['Float']['input'];
|
|
53894
|
-
localCurrencyRenewalAmount: Scalars['Float']['input'];
|
|
53895
|
-
monthsValid: Scalars['Int']['input'];
|
|
53896
|
-
renewalAmount: Scalars['Float']['input'];
|
|
53897
|
-
unitCount: Scalars['Int']['input'];
|
|
53974
|
+
ceiling: Scalars['Float']['input'];
|
|
53975
|
+
floor: Scalars['Float']['input'];
|
|
53898
53976
|
};
|
|
53899
53977
|
export declare type MarketplaceConsolePricingPlan = {
|
|
53900
53978
|
__typename?: 'MarketplaceConsolePricingPlan';
|
|
53979
|
+
currency: MarketplaceConsolePricingCurrency;
|
|
53901
53980
|
expertDiscountOptOut: Scalars['Boolean']['output'];
|
|
53902
|
-
|
|
53903
|
-
|
|
53981
|
+
status: MarketplaceConsolePricingPlanStatus;
|
|
53982
|
+
tieredPricing: MarketplaceConsoleTieredPricing;
|
|
53904
53983
|
};
|
|
53905
53984
|
export declare type MarketplaceConsolePricingPlanModify = {
|
|
53985
|
+
currency: MarketplaceConsolePricingCurrency;
|
|
53906
53986
|
expertDiscountOptOut: Scalars['Boolean']['input'];
|
|
53907
|
-
|
|
53908
|
-
|
|
53987
|
+
status: MarketplaceConsolePricingPlanStatus;
|
|
53988
|
+
tieredPricing: MarketplaceConsoleTieredPricingModify;
|
|
53909
53989
|
};
|
|
53990
|
+
export declare enum MarketplaceConsolePricingPlanStatus {
|
|
53991
|
+
Draft = "DRAFT",
|
|
53992
|
+
Live = "LIVE",
|
|
53993
|
+
Pending = "PENDING"
|
|
53994
|
+
}
|
|
53910
53995
|
export declare type MarketplaceConsolePrivateListings = {
|
|
53911
53996
|
__typename?: 'MarketplaceConsolePrivateListings';
|
|
53912
53997
|
appSoftwareId: Scalars['ID']['output'];
|
|
@@ -53925,8 +54010,10 @@ export declare type MarketplaceConsolePrivateListingsTokenDetails = {
|
|
|
53925
54010
|
node: MarketplaceConsoleTokenDetails;
|
|
53926
54011
|
};
|
|
53927
54012
|
export declare type MarketplaceConsoleProduct = {
|
|
53928
|
-
|
|
53929
|
-
|
|
54013
|
+
__typename?: 'MarketplaceConsoleProduct';
|
|
54014
|
+
appKey: Scalars['ID']['output'];
|
|
54015
|
+
isPricingPlanMissing?: Maybe<Scalars['Boolean']['output']>;
|
|
54016
|
+
productId: Scalars['ID']['output'];
|
|
53930
54017
|
};
|
|
53931
54018
|
export declare type MarketplaceConsoleProductListing = {
|
|
53932
54019
|
__typename?: 'MarketplaceConsoleProductListing';
|
|
@@ -53970,6 +54057,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
53970
54057
|
appSoftware: Array<MarketplaceConsoleAppSoftware>;
|
|
53971
54058
|
appSoftwareVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
53972
54059
|
appSoftwareVersionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
54060
|
+
appSoftwareVersions?: Maybe<MarketplaceConsoleAppSoftwareVersions>;
|
|
53973
54061
|
appSoftwaresByAppId?: Maybe<MarketplaceConsoleAppSoftwares>;
|
|
53974
54062
|
currentPartnerContact?: Maybe<MarketplaceConsolePartnerContact>;
|
|
53975
54063
|
currentPartnerContactByAppId?: Maybe<MarketplaceConsolePartnerContact>;
|
|
@@ -53980,6 +54068,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
53980
54068
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53981
54069
|
editionsActivationStatus?: Maybe<MarketplaceConsoleEditionsActivationResponse>;
|
|
53982
54070
|
parentSoftwares: Array<MarketplaceConsoleParentSoftware>;
|
|
54071
|
+
product?: Maybe<MarketplaceConsoleProduct>;
|
|
53983
54072
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
53984
54073
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
53985
54074
|
};
|
|
@@ -53999,6 +54088,9 @@ export declare type MarketplaceConsoleQueryApiAppSoftwareVersionListingArgs = {
|
|
|
53999
54088
|
appId: Scalars['ID']['input'];
|
|
54000
54089
|
buildNumber: Scalars['ID']['input'];
|
|
54001
54090
|
};
|
|
54091
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionsArgs = {
|
|
54092
|
+
appSoftwareId: Scalars['ID']['input'];
|
|
54093
|
+
};
|
|
54002
54094
|
export declare type MarketplaceConsoleQueryApiAppSoftwaresByAppIdArgs = {
|
|
54003
54095
|
appId: Scalars['ID']['input'];
|
|
54004
54096
|
};
|
|
@@ -54015,10 +54107,14 @@ export declare type MarketplaceConsoleQueryApiDeveloperSpaceByAppIdArgs = {
|
|
|
54015
54107
|
appId: Scalars['ID']['input'];
|
|
54016
54108
|
};
|
|
54017
54109
|
export declare type MarketplaceConsoleQueryApiEditionsArgs = {
|
|
54018
|
-
product:
|
|
54110
|
+
product: MarketplaceConsoleEditionsInput;
|
|
54019
54111
|
};
|
|
54020
54112
|
export declare type MarketplaceConsoleQueryApiEditionsActivationStatusArgs = {
|
|
54021
|
-
product:
|
|
54113
|
+
product: MarketplaceConsoleEditionsInput;
|
|
54114
|
+
};
|
|
54115
|
+
export declare type MarketplaceConsoleQueryApiProductArgs = {
|
|
54116
|
+
appKey: Scalars['ID']['input'];
|
|
54117
|
+
productId: Scalars['ID']['input'];
|
|
54022
54118
|
};
|
|
54023
54119
|
export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
54024
54120
|
appId: Scalars['ID']['input'];
|
|
@@ -54036,6 +54132,13 @@ export declare type MarketplaceConsoleTagsContent = {
|
|
|
54036
54132
|
id: Scalars['ID']['output'];
|
|
54037
54133
|
name: Scalars['String']['output'];
|
|
54038
54134
|
};
|
|
54135
|
+
export declare type MarketplaceConsoleTieredPricing = {
|
|
54136
|
+
__typename?: 'MarketplaceConsoleTieredPricing';
|
|
54137
|
+
items: Array<MarketplaceConsolePricingItem>;
|
|
54138
|
+
};
|
|
54139
|
+
export declare type MarketplaceConsoleTieredPricingModify = {
|
|
54140
|
+
items: Array<MarketplaceConsolePricingItemModify>;
|
|
54141
|
+
};
|
|
54039
54142
|
export declare type MarketplaceConsoleTokenDetails = {
|
|
54040
54143
|
__typename?: 'MarketplaceConsoleTokenDetails';
|
|
54041
54144
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
@@ -55440,6 +55543,8 @@ export declare type MercuryQueryApi = {
|
|
|
55440
55543
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
55441
55544
|
myPreference?: Maybe<MercuryPreference>;
|
|
55442
55545
|
myPreferences?: Maybe<Array<MercuryPreference>>;
|
|
55546
|
+
providerWork?: Maybe<MercuryProviderWork>;
|
|
55547
|
+
providerWorksByAris?: Maybe<Array<MercuryProviderWork>>;
|
|
55443
55548
|
team?: Maybe<MercuryTeam>;
|
|
55444
55549
|
teams?: Maybe<MercuryTeamConnection>;
|
|
55445
55550
|
workspaceContext: MercuryWorkspaceContext;
|
|
@@ -55513,6 +55618,13 @@ export declare type MercuryQueryApiMyPreferenceArgs = {
|
|
|
55513
55618
|
export declare type MercuryQueryApiMyPreferencesArgs = {
|
|
55514
55619
|
cloudId: Scalars['ID']['input'];
|
|
55515
55620
|
};
|
|
55621
|
+
export declare type MercuryQueryApiProviderWorkArgs = {
|
|
55622
|
+
cloudId: Scalars['ID']['input'];
|
|
55623
|
+
id: Scalars['ID']['input'];
|
|
55624
|
+
};
|
|
55625
|
+
export declare type MercuryQueryApiProviderWorksByArisArgs = {
|
|
55626
|
+
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
55627
|
+
};
|
|
55516
55628
|
export declare type MercuryQueryApiTeamArgs = {
|
|
55517
55629
|
cloudId: Scalars['ID']['input'];
|
|
55518
55630
|
id: Scalars['ID']['input'];
|
|
@@ -56069,6 +56181,7 @@ export declare type Mutation = {
|
|
|
56069
56181
|
editSprint?: Maybe<SprintResponse>;
|
|
56070
56182
|
ersLifecycle?: Maybe<ErsLifecycleMutation>;
|
|
56071
56183
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
56184
|
+
growthUnifiedProfile_createUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
56072
56185
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
56073
56186
|
helpExternalResource?: Maybe<HelpExternalResourceMutationApi>;
|
|
56074
56187
|
helpLayout?: Maybe<HelpLayoutMutationApi>;
|
|
@@ -56860,6 +56973,9 @@ export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
|
56860
56973
|
export declare type MutationEditSprintArgs = {
|
|
56861
56974
|
input?: InputMaybe<EditSprintInput>;
|
|
56862
56975
|
};
|
|
56976
|
+
export declare type MutationGrowthUnifiedProfile_CreateUnifiedProfileArgs = {
|
|
56977
|
+
profile: GrowthUnifiedProfileCreateProfileInput;
|
|
56978
|
+
};
|
|
56863
56979
|
export declare type MutationHelpCenterArgs = {
|
|
56864
56980
|
cloudId: Scalars['ID']['input'];
|
|
56865
56981
|
};
|
|
@@ -59539,6 +59655,7 @@ export declare type Query = {
|
|
|
59539
59655
|
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
59540
59656
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
59541
59657
|
dataScope?: Maybe<MigrationPlanningServiceQuery>;
|
|
59658
|
+
demoMercury_getById?: Maybe<DemoMercuryFocusArea>;
|
|
59542
59659
|
devAi?: Maybe<DevAi>;
|
|
59543
59660
|
devOps?: Maybe<DevOps>;
|
|
59544
59661
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
@@ -59575,12 +59692,15 @@ export declare type Query = {
|
|
|
59575
59692
|
getKeywords?: Maybe<Array<Scalars['String']['output']>>;
|
|
59576
59693
|
graphStore?: Maybe<GraphStore>;
|
|
59577
59694
|
growthRecommendations?: Maybe<GrowthRecQuery>;
|
|
59695
|
+
growthUnifiedProfile_getUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
59578
59696
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
59579
59697
|
helpExternalResource?: Maybe<HelpExternalResourceQueryApi>;
|
|
59580
59698
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
59581
59699
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
59582
59700
|
insights?: Maybe<Insights>;
|
|
59583
59701
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
59702
|
+
ipmFlag?: Maybe<ContentPlatformIpmFlag>;
|
|
59703
|
+
ipmFlags: ContentPlatformIpmFlagSearchConnection;
|
|
59584
59704
|
ipmImageModal?: Maybe<ContentPlatformIpmImageModal>;
|
|
59585
59705
|
ipmImageModals: ContentPlatformIpmImageModalSearchConnection;
|
|
59586
59706
|
isSainSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -60742,6 +60862,10 @@ export declare type QueryCustomerStoryArgs = {
|
|
|
60742
60862
|
id: Scalars['String']['input'];
|
|
60743
60863
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60744
60864
|
};
|
|
60865
|
+
export declare type QueryDemoMercury_GetByIdArgs = {
|
|
60866
|
+
cloudId: Scalars['ID']['input'];
|
|
60867
|
+
id: Scalars['ID']['input'];
|
|
60868
|
+
};
|
|
60745
60869
|
export declare type QueryDevOpsServiceArgs = {
|
|
60746
60870
|
id: Scalars['ID']['input'];
|
|
60747
60871
|
};
|
|
@@ -60808,6 +60932,7 @@ export declare type QueryExtensionByKeyArgs = {
|
|
|
60808
60932
|
contextId: Scalars['ID']['input'];
|
|
60809
60933
|
definitionId: Scalars['ID']['input'];
|
|
60810
60934
|
extensionKey: Scalars['String']['input'];
|
|
60935
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
60811
60936
|
};
|
|
60812
60937
|
export declare type QueryExtensionContextArgs = {
|
|
60813
60938
|
contextId: Scalars['ID']['input'];
|
|
@@ -60839,6 +60964,10 @@ export declare type QueryGetKeywordsArgs = {
|
|
|
60839
60964
|
entityAri?: InputMaybe<Scalars['String']['input']>;
|
|
60840
60965
|
textInput?: InputMaybe<NlpGetKeywordsTextInput>;
|
|
60841
60966
|
};
|
|
60967
|
+
export declare type QueryGrowthUnifiedProfile_GetUnifiedProfileArgs = {
|
|
60968
|
+
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
60969
|
+
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
60970
|
+
};
|
|
60842
60971
|
export declare type QueryHelpCenterArgs = {
|
|
60843
60972
|
cloudId: Scalars['ID']['input'];
|
|
60844
60973
|
};
|
|
@@ -60854,6 +60983,13 @@ export declare type QueryHelpObjectStoreArgs = {
|
|
|
60854
60983
|
export declare type QueryInstallationContextsWithLogAccessArgs = {
|
|
60855
60984
|
appId: Scalars['ID']['input'];
|
|
60856
60985
|
};
|
|
60986
|
+
export declare type QueryIpmFlagArgs = {
|
|
60987
|
+
id: Scalars['String']['input'];
|
|
60988
|
+
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60989
|
+
};
|
|
60990
|
+
export declare type QueryIpmFlagsArgs = {
|
|
60991
|
+
search: ContentPlatformSearchApIv2Query;
|
|
60992
|
+
};
|
|
60857
60993
|
export declare type QueryIpmImageModalArgs = {
|
|
60858
60994
|
id: Scalars['String']['input'];
|
|
60859
60995
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -66608,6 +66744,7 @@ export declare type TrelloBoardViewer = {
|
|
|
66608
66744
|
calendarKey?: Maybe<Scalars['String']['output']>;
|
|
66609
66745
|
email?: Maybe<TrelloBoardViewerEmail>;
|
|
66610
66746
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
66747
|
+
showCompactMirrorCards?: Maybe<Scalars['Boolean']['output']>;
|
|
66611
66748
|
sidebar?: Maybe<TrelloBoardViewerSidebar>;
|
|
66612
66749
|
starred: Scalars['Boolean']['output'];
|
|
66613
66750
|
subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -69208,6 +69345,7 @@ export declare type WorkSuggestionsAutoDevJobTask = {
|
|
|
69208
69345
|
autoDevState?: Maybe<WorkSuggestionsAutoDevJobState>;
|
|
69209
69346
|
id: Scalars['String']['output'];
|
|
69210
69347
|
issue: WorkSuggestionsAutoDevJobJiraIssue;
|
|
69348
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69211
69349
|
repoUrl?: Maybe<Scalars['String']['output']>;
|
|
69212
69350
|
};
|
|
69213
69351
|
export declare type WorkSuggestionsAutoDevJobsPlanSuccessTask = WorkSuggestionsAutoDevJobTask & {
|
|
@@ -69217,6 +69355,7 @@ export declare type WorkSuggestionsAutoDevJobsPlanSuccessTask = WorkSuggestionsA
|
|
|
69217
69355
|
autoDevState?: Maybe<WorkSuggestionsAutoDevJobState>;
|
|
69218
69356
|
id: Scalars['String']['output'];
|
|
69219
69357
|
issue: WorkSuggestionsAutoDevJobJiraIssue;
|
|
69358
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69220
69359
|
repoUrl?: Maybe<Scalars['String']['output']>;
|
|
69221
69360
|
};
|
|
69222
69361
|
export declare type WorkSuggestionsBlockedIssue = {
|
|
@@ -69235,6 +69374,7 @@ export declare type WorkSuggestionsBlockingIssueTask = WorkSuggestionsCommon & {
|
|
|
69235
69374
|
issueIconUrl: Scalars['String']['output'];
|
|
69236
69375
|
issueId: Scalars['String']['output'];
|
|
69237
69376
|
issueKey: Scalars['String']['output'];
|
|
69377
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69238
69378
|
title: Scalars['String']['output'];
|
|
69239
69379
|
url: Scalars['String']['output'];
|
|
69240
69380
|
};
|
|
@@ -69247,6 +69387,7 @@ export declare type WorkSuggestionsBuildTask = WorkSuggestionsCommon & {
|
|
|
69247
69387
|
issueName: Scalars['String']['output'];
|
|
69248
69388
|
lastUpdated: Scalars['String']['output'];
|
|
69249
69389
|
numberOfFailedBuilds: Scalars['Int']['output'];
|
|
69390
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69250
69391
|
title: Scalars['String']['output'];
|
|
69251
69392
|
url: Scalars['String']['output'];
|
|
69252
69393
|
};
|
|
@@ -69254,6 +69395,7 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
69254
69395
|
__typename?: 'WorkSuggestionsByProjectsResponse';
|
|
69255
69396
|
autoDevJobsSuggestions?: Maybe<Array<WorkSuggestionsAutoDevJobTask>>;
|
|
69256
69397
|
commonSuggestions?: Maybe<WorkSuggestionsConnection>;
|
|
69398
|
+
compassSuggestions?: Maybe<Array<WorkSuggestionsCompassTask>>;
|
|
69257
69399
|
pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
|
|
69258
69400
|
sortOrder?: Maybe<WorkSuggestionsOrder>;
|
|
69259
69401
|
};
|
|
@@ -69264,6 +69406,9 @@ export declare type WorkSuggestionsByProjectsResponseCommonSuggestionsArgs = {
|
|
|
69264
69406
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69265
69407
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69266
69408
|
};
|
|
69409
|
+
export declare type WorkSuggestionsByProjectsResponseCompassSuggestionsArgs = {
|
|
69410
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69411
|
+
};
|
|
69267
69412
|
export declare type WorkSuggestionsCodeTabEdge = {
|
|
69268
69413
|
__typename?: 'WorkSuggestionsCodeTabEdge';
|
|
69269
69414
|
cursor: Scalars['String']['output'];
|
|
@@ -69343,9 +69488,29 @@ export declare type WorkSuggestionsCodeTabTaskConnection = {
|
|
|
69343
69488
|
};
|
|
69344
69489
|
export declare type WorkSuggestionsCommon = {
|
|
69345
69490
|
id: Scalars['String']['output'];
|
|
69491
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69346
69492
|
title: Scalars['String']['output'];
|
|
69347
69493
|
url: Scalars['String']['output'];
|
|
69348
69494
|
};
|
|
69495
|
+
export declare type WorkSuggestionsCompassAnnouncementTask = WorkSuggestionsCompassTask & WorkSuggestionsPeriscopeTask & {
|
|
69496
|
+
__typename?: 'WorkSuggestionsCompassAnnouncementTask';
|
|
69497
|
+
componentAri?: Maybe<Scalars['ID']['output']>;
|
|
69498
|
+
componentName?: Maybe<Scalars['String']['output']>;
|
|
69499
|
+
componentType?: Maybe<Scalars['String']['output']>;
|
|
69500
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
69501
|
+
id: Scalars['String']['output'];
|
|
69502
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69503
|
+
senderComponentName?: Maybe<Scalars['String']['output']>;
|
|
69504
|
+
senderComponentType?: Maybe<Scalars['String']['output']>;
|
|
69505
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
69506
|
+
title: Scalars['String']['output'];
|
|
69507
|
+
url: Scalars['String']['output'];
|
|
69508
|
+
};
|
|
69509
|
+
export declare type WorkSuggestionsCompassTask = {
|
|
69510
|
+
componentAri?: Maybe<Scalars['ID']['output']>;
|
|
69511
|
+
componentName?: Maybe<Scalars['String']['output']>;
|
|
69512
|
+
componentType?: Maybe<Scalars['String']['output']>;
|
|
69513
|
+
};
|
|
69349
69514
|
export declare type WorkSuggestionsConnection = {
|
|
69350
69515
|
__typename?: 'WorkSuggestionsConnection';
|
|
69351
69516
|
edges?: Maybe<Array<WorkSuggestionsEdge>>;
|
|
@@ -69363,6 +69528,7 @@ export declare type WorkSuggestionsCriticalVulnerabilityTask = WorkSuggestionsCo
|
|
|
69363
69528
|
introducedDate: Scalars['String']['output'];
|
|
69364
69529
|
issueId: Scalars['String']['output'];
|
|
69365
69530
|
issueKey: Scalars['String']['output'];
|
|
69531
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69366
69532
|
securityContainerName: Scalars['String']['output'];
|
|
69367
69533
|
status: WorkSuggestionsVulnerabilityStatus;
|
|
69368
69534
|
title: Scalars['String']['output'];
|
|
@@ -69378,6 +69544,7 @@ export declare type WorkSuggestionsDeploymentTask = WorkSuggestionsCommon & {
|
|
|
69378
69544
|
issueName: Scalars['String']['output'];
|
|
69379
69545
|
lastUpdated: Scalars['String']['output'];
|
|
69380
69546
|
numberOfFailedDeployments: Scalars['Int']['output'];
|
|
69547
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69381
69548
|
pipelineName: Scalars['String']['output'];
|
|
69382
69549
|
title: Scalars['String']['output'];
|
|
69383
69550
|
url: Scalars['String']['output'];
|
|
@@ -69482,6 +69649,7 @@ export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCom
|
|
|
69482
69649
|
id: Scalars['String']['output'];
|
|
69483
69650
|
lastUpdated: Scalars['String']['output'];
|
|
69484
69651
|
needsWorkCount: Scalars['Int']['output'];
|
|
69652
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69485
69653
|
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
69486
69654
|
providerName?: Maybe<Scalars['String']['output']>;
|
|
69487
69655
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
@@ -69498,6 +69666,7 @@ export declare type WorkSuggestionsPullRequestReviewTask = WorkSuggestionsCommon
|
|
|
69498
69666
|
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
69499
69667
|
id: Scalars['String']['output'];
|
|
69500
69668
|
lastUpdated: Scalars['String']['output'];
|
|
69669
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69501
69670
|
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
69502
69671
|
providerName?: Maybe<Scalars['String']['output']>;
|
|
69503
69672
|
repositoryName?: Maybe<Scalars['String']['output']>;
|